1.0 KiB
1.0 KiB
OAuthConfigDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| code_challenge | str | OAuth code challenge (PKCE) | [optional] |
| redirect_uri | str | OAuth redirect URI | |
| state | str | OAuth state parameter | [optional] |
Example
from generated.immich.openapi_client.models.o_auth_config_dto import OAuthConfigDto
# TODO update the JSON string below
json = "{}"
# create an instance of OAuthConfigDto from a JSON string
o_auth_config_dto_instance = OAuthConfigDto.from_json(json)
# print the JSON string representation of the object
print(OAuthConfigDto.to_json())
# convert the object into a dict
o_auth_config_dto_dict = o_auth_config_dto_instance.to_dict()
# create an instance of OAuthConfigDto from a dict
o_auth_config_dto_from_dict = OAuthConfigDto.from_dict(o_auth_config_dto_dict)