Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.72 KB

File metadata and controls

39 lines (30 loc) · 1.72 KB

GetAsyncOperationResult200Response

Properties

Name Type Description Notes
activation_codes List[ActivationCodeInfo] The list of activation codes that the entitlement code was generated with.
entitlement_code str The entitlement code
activation_code str
available_quantity int
description str
product str
total_quantity int
available_count int Available count.
consumers List[CountedFeatureConsumer] Consumed by.
feature_name str The feature name.
installed_count int Total installed count.

Example

from cyperf.models.get_async_operation_result200_response import GetAsyncOperationResult200Response

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

# convert the object into a dict
get_async_operation_result200_response_dict = get_async_operation_result200_response_instance.to_dict()
# create an instance of GetAsyncOperationResult200Response from a dict
get_async_operation_result200_response_from_dict = GetAsyncOperationResult200Response.from_dict(get_async_operation_result200_response_dict)

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