2.1 KiB
2.1 KiB
SystemConfigOAuthDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| allow_insecure_requests | bool | Allow insecure requests | |
| auto_launch | bool | Auto launch | |
| auto_register | bool | Auto register | |
| button_text | str | Button text | |
| client_id | str | Client ID | |
| client_secret | str | Client secret | |
| default_storage_quota | int | Default storage quota | |
| enabled | bool | Enabled | |
| end_session_endpoint | str | End session endpoint | |
| issuer_url | str | Issuer URL | |
| mobile_override_enabled | bool | Mobile override enabled | |
| mobile_redirect_uri | str | Mobile redirect URI (set to empty string to disable) | |
| profile_signing_algorithm | str | Profile signing algorithm | |
| prompt | str | OAuth prompt parameter (e.g. select_account, login, consent) | |
| role_claim | str | Role claim | |
| scope | str | Scope | |
| signing_algorithm | str | Signing algorithm | |
| storage_label_claim | str | Storage label claim | |
| storage_quota_claim | str | Storage quota claim | |
| timeout | int | Timeout | |
| token_endpoint_auth_method | OAuthTokenEndpointAuthMethod |
Example
from generated.immich.openapi_client.models.system_config_o_auth_dto import SystemConfigOAuthDto
# TODO update the JSON string below
json = "{}"
# create an instance of SystemConfigOAuthDto from a JSON string
system_config_o_auth_dto_instance = SystemConfigOAuthDto.from_json(json)
# print the JSON string representation of the object
print(SystemConfigOAuthDto.to_json())
# convert the object into a dict
system_config_o_auth_dto_dict = system_config_o_auth_dto_instance.to_dict()
# create an instance of SystemConfigOAuthDto from a dict
system_config_o_auth_dto_from_dict = SystemConfigOAuthDto.from_dict(system_config_o_auth_dto_dict)