# OAuthAuthorizeResponseDto ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **url** | **str** | | ## Example ```python 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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)