LicenseResponse
Dados de uma licença cadastrada para um tenant.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| uuid | UUID | Identificador único da licença. | |
| 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. | |
| path | str | Caminho absoluto do arquivo ou diretório associado à licença. | |
| tenant_uuid | UUID | Identificador do tenant associado à licença. | [optional] |
| created_at | datetime | Data e hora de criação do registro da licença. | |
| updated_at | datetime | Data e hora da última atualização do registro da licença. | |
| removed_at | datetime | Data e hora de remoção lógica da licença, quando aplicável. | [optional] |
| expired_at | datetime | Data e hora de expiração efetiva da licença, quando aplicável. | [optional] |
Example
from pldpro_sdk.api_client.models.license_response import LicenseResponse
# TODO update the JSON string below
json = "{}"
# create an instance of LicenseResponse from a JSON string
license_response_instance = LicenseResponse.from_json(json)
# print the JSON string representation of the object
print(LicenseResponse.to_json())
# convert the object into a dict
license_response_dict = license_response_instance.to_dict()
# create an instance of LicenseResponse from a dict
license_response_from_dict = LicenseResponse.from_dict(license_response_dict)