932 B
932 B
OAuthCallbackDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| url | str |
Example
from generated.immich.openapi_client.models.o_auth_callback_dto import OAuthCallbackDto
# TODO update the JSON string below
json = "{}"
# create an instance of OAuthCallbackDto from a JSON string
o_auth_callback_dto_instance = OAuthCallbackDto.from_json(json)
# print the JSON string representation of the object
print(OAuthCallbackDto.to_json())
# convert the object into a dict
o_auth_callback_dto_dict = o_auth_callback_dto_instance.to_dict()
# create an instance of OAuthCallbackDto from a dict
o_auth_callback_dto_from_dict = OAuthCallbackDto.from_dict(o_auth_callback_dto_dict)