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

1020 B

UserLicense

Properties

Name Type Description Notes
activated_at datetime Activation date
activation_key str Activation key
license_key str License key (format: /^IM(SV CL)(-[\dA-Za-z]{4}){8}$/)

Example

from generated.immich.openapi_client.models.user_license import UserLicense

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

# convert the object into a dict
user_license_dict = user_license_instance.to_dict()
# create an instance of UserLicense from a dict
user_license_from_dict = UserLicense.from_dict(user_license_dict)

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