TrocaVersaoResponse
Properties
| Name |
Type |
Description |
Notes |
| tipo |
str |
|
|
| quantidade_trocas |
int |
Quantidade de trocas efetivamente registradas. |
|
| competencias |
List[str] |
Competências processadas em ordem cronológica. |
|
| entrada_atualizada |
bool |
Indica se o entrada.txt foi atualizado. |
|
Example
from pldpro_sdk.api_client.models.troca_versao_response import TrocaVersaoResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TrocaVersaoResponse from a JSON string
troca_versao_response_instance = TrocaVersaoResponse.from_json(json)
# print the JSON string representation of the object
print(TrocaVersaoResponse.to_json())
# convert the object into a dict
troca_versao_response_dict = troca_versao_response_instance.to_dict()
# create an instance of TrocaVersaoResponse from a dict
troca_versao_response_from_dict = TrocaVersaoResponse.from_dict(troca_versao_response_dict)
[Back to Model list] [Back to API list] [Back to README]