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

930 B

LicenseKeyDto

Properties

Name Type Description Notes
activation_key str
license_key str

Example

from generated.immich.openapi_client.models.license_key_dto import LicenseKeyDto

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

# convert the object into a dict
license_key_dto_dict = license_key_dto_instance.to_dict()
# create an instance of LicenseKeyDto from a dict
license_key_dto_from_dict = LicenseKeyDto.from_dict(license_key_dto_dict)

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