1020 B
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)