logos-storage-py-api-client/docs/StorageRequest.md
Adam Uhlíř 3b3b8b3ba3
tweaking
2024-12-18 14:22:21 +01:00

1.3 KiB

StorageRequest

Properties

Name Type Description Notes
id str Request ID [optional]
client str Address of Ethereum address [optional]
ask StorageAsk [optional]
content Content [optional]
expiry str A timestamp as seconds since unix epoch at which this request expires if the Request does not find requested amount of nodes to host the data. [optional] [default to '10 minutes']
nonce str Random data [optional]

Example

from codex_api_client.models.storage_request import StorageRequest

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

# convert the object into a dict
storage_request_dict = storage_request_instance.to_dict()
# create an instance of StorageRequest from a dict
storage_request_from_dict = StorageRequest.from_dict(storage_request_dict)

[Back to Model list] [Back to API list] [Back to README]