CasoUpdateRequest
Properties
| Name |
Type |
Description |
Notes |
| uuid_auth_host |
UUID |
UUID do host associado ao caso |
|
| path_remote |
str |
Caminho remoto a ser associado ao caso |
|
Example
from pldpro_sdk.api_client.models.caso_update_request import CasoUpdateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CasoUpdateRequest from a JSON string
caso_update_request_instance = CasoUpdateRequest.from_json(json)
# print the JSON string representation of the object
print(CasoUpdateRequest.to_json())
# convert the object into a dict
caso_update_request_dict = caso_update_request_instance.to_dict()
# create an instance of CasoUpdateRequest from a dict
caso_update_request_from_dict = CasoUpdateRequest.from_dict(caso_update_request_dict)
[Back to Model list] [Back to API list] [Back to README]