Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.93 KB

File metadata and controls

39 lines (30 loc) · 1.93 KB

GetLicenseAsyncOperationResult200Response

Properties

Name Type Description Notes
activation_code str The activation code that uniquely identifies the license
days_left_to_expire int Days left to expire, value is negative if expired.
expiry_date str Expiry date of the license
features List[Feature] Features of the activation code
is_expired bool Expired flag.
links List[Link] Hypermedia links.
maintenance_date str Maintenance date of the license
part_number_description str Part number description
part_number_id str Part number id.
product str The product for which the license was generated
quantity int Quantity installed of the license

Example

from cyperf.models.get_license_async_operation_result200_response import GetLicenseAsyncOperationResult200Response

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

# convert the object into a dict
get_license_async_operation_result200_response_dict = get_license_async_operation_result200_response_instance.to_dict()
# create an instance of GetLicenseAsyncOperationResult200Response from a dict
get_license_async_operation_result200_response_from_dict = GetLicenseAsyncOperationResult200Response.from_dict(get_license_async_operation_result200_response_dict)

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