Pular para conteúdo

CortesRequest

Properties

Name Type Description Notes
cortes_name str Nome do arquivo de cortes a ser associado ao caso.
uuid_auth_node List[UUID] Lista de identificadores únicos dos AuthNodes onde o arquivo de cortes deve existir.

Example

from pldpro_sdk.api_client.models.cortes_request import CortesRequest

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

# convert the object into a dict
cortes_request_dict = cortes_request_instance.to_dict()
# create an instance of CortesRequest from a dict
cortes_request_from_dict = CortesRequest.from_dict(cortes_request_dict)
[Back to Model list] [Back to API list] [Back to README]