LicenseRequest
Metadados adicionais de licença enviados no upload.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| model_type | ModelTypeEnum | ||
| license_type | LicenseTypeEnum | ||
| active | bool | Indica se a licença está ativa. | |
| start_at | datetime | Data e hora de início da vigência da licença. | |
| end_at | datetime | Data e hora de fim da vigência da licença. |
Example
from pldpro_sdk.api_client.models.license_request import LicenseRequest
# TODO update the JSON string below
json = "{}"
# create an instance of LicenseRequest from a JSON string
license_request_instance = LicenseRequest.from_json(json)
# print the JSON string representation of the object
print(LicenseRequest.to_json())
# convert the object into a dict
license_request_dict = license_request_instance.to_dict()
# create an instance of LicenseRequest from a dict
license_request_from_dict = LicenseRequest.from_dict(license_request_dict)