PartidaConfig
Objeto contendo as configurações de partida semanal.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| tipo_encadeamento_semanal | str | Tipo de execução. | |
| mes_final_semanal | int | Mês final do encadeamento semanal. | |
| ano_final_semanal | int | Ano final do encadeamento semanal. | |
| revisao_final_semanal | int | Revisão final do encadeamento semanal. |
Example
from pldpro_sdk.api_client.models.partida_config import PartidaConfig
# TODO update the JSON string below
json = "{}"
# create an instance of PartidaConfig from a JSON string
partida_config_instance = PartidaConfig.from_json(json)
# print the JSON string representation of the object
print(PartidaConfig.to_json())
# convert the object into a dict
partida_config_dict = partida_config_instance.to_dict()
# create an instance of PartidaConfig from a dict
partida_config_from_dict = PartidaConfig.from_dict(partida_config_dict)