Files
immich-to-cloud-exporter/generated/immich/openapi_client/docs/OAuthConfigDto.md

915 B

OAuthConfigDto

Properties

Name Type Description Notes
redirect_uri str

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)

[Back to Model list] [Back to API list] [Back to README]