936 B
936 B
UserLicense
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| activated_at | datetime | ||
| activation_key | str | ||
| license_key | str |
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)