ConfiguracaoExecucaoPartidaResponse
Properties
| Name |
Type |
Description |
Notes |
| executa_partida |
str |
Valor persistido para o card EXECUTAPARTIDA. |
|
| partida_mensal |
int |
Valor persistido para o card PARTMES. |
|
| modelo_partida |
ModeloPartida |
Valor persistido para o card MODELOPPQ quando aplicável. |
[optional] |
| entrada_atualizada |
bool |
Indica se o entrada.txt local foi atualizado. |
|
Example
from pldpro_sdk.api_client.models.configuracao_execucao_partida_response import ConfiguracaoExecucaoPartidaResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ConfiguracaoExecucaoPartidaResponse from a JSON string
configuracao_execucao_partida_response_instance = ConfiguracaoExecucaoPartidaResponse.from_json(json)
# print the JSON string representation of the object
print(ConfiguracaoExecucaoPartidaResponse.to_json())
# convert the object into a dict
configuracao_execucao_partida_response_dict = configuracao_execucao_partida_response_instance.to_dict()
# create an instance of ConfiguracaoExecucaoPartidaResponse from a dict
configuracao_execucao_partida_response_from_dict = ConfiguracaoExecucaoPartidaResponse.from_dict(configuracao_execucao_partida_response_dict)
[Back to Model list] [Back to API list] [Back to README]