VolumeResponse
Properties
| Name |
Type |
Description |
Notes |
| uuid |
UUID |
Identificador único do volume cadastrado. |
|
| path |
str |
Caminho do volume no sistema. |
|
| created_at |
datetime |
Data e hora em que o volume foi criado. |
|
| updated_at |
datetime |
Data e hora da última atualização do volume. |
|
Example
from pldpro_sdk.api_client.models.volume_response import VolumeResponse
# TODO update the JSON string below
json = "{}"
# create an instance of VolumeResponse from a JSON string
volume_response_instance = VolumeResponse.from_json(json)
# print the JSON string representation of the object
print(VolumeResponse.to_json())
# convert the object into a dict
volume_response_dict = volume_response_instance.to_dict()
# create an instance of VolumeResponse from a dict
volume_response_from_dict = VolumeResponse.from_dict(volume_response_dict)
[Back to Model list] [Back to API list] [Back to README]