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

1.0 KiB

OAuthAuthorizeResponseDto

Properties

Name Type Description Notes
url str

Example

from generated.immich.openapi_client.models.o_auth_authorize_response_dto import OAuthAuthorizeResponseDto

# TODO update the JSON string below
json = "{}"
# create an instance of OAuthAuthorizeResponseDto from a JSON string
o_auth_authorize_response_dto_instance = OAuthAuthorizeResponseDto.from_json(json)
# print the JSON string representation of the object
print(OAuthAuthorizeResponseDto.to_json())

# convert the object into a dict
o_auth_authorize_response_dto_dict = o_auth_authorize_response_dto_instance.to_dict()
# create an instance of OAuthAuthorizeResponseDto from a dict
o_auth_authorize_response_dto_from_dict = OAuthAuthorizeResponseDto.from_dict(o_auth_authorize_response_dto_dict)

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