Pular para conteúdo

TrocaVersaoRequest

Properties

Name Type Description Notes
items List[TrocaVersaoItemRequest] Lista completa das trocas de versão a serem registradas para o modelo. Pode ser vazia para remover trocas existentes e gerar o card com indicativo `n`.

Example

from pldpro_sdk.api_client.models.troca_versao_request import TrocaVersaoRequest

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

# convert the object into a dict
troca_versao_request_dict = troca_versao_request_instance.to_dict()
# create an instance of TrocaVersaoRequest from a dict
troca_versao_request_from_dict = TrocaVersaoRequest.from_dict(troca_versao_request_dict)
[Back to Model list] [Back to API list] [Back to README]