Pular para conteúdo

NumeroProcessadoresResponse

Properties

Name Type Description Notes
tipo str Modelo atualizado.
quantidade_processadores int Quantidade de processadores persistida para o modelo.
entrada_atualizada bool Indica se o entrada.txt local foi atualizado.

Example

from pldpro_sdk.api_client.models.numero_processadores_response import NumeroProcessadoresResponse

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

# convert the object into a dict
numero_processadores_response_dict = numero_processadores_response_instance.to_dict()
# create an instance of NumeroProcessadoresResponse from a dict
numero_processadores_response_from_dict = NumeroProcessadoresResponse.from_dict(numero_processadores_response_dict)
[Back to Model list] [Back to API list] [Back to README]