logos-storage-py-api-client/docs/SalesAvailability.md
2024-08-23 16:22:29 +02:00

1.4 KiB

SalesAvailability

Properties

Name Type Description Notes
id str 32bits identifier encoded in hex-decimal string. [optional]
total_size str Total size of availability's storage in bytes as decimal string [optional]
duration str The duration of the request in seconds as decimal string [optional]
min_price str Minimum price to be paid (in amount of tokens) as decimal string [optional]
max_collateral str Maximum collateral user is willing to pay per filled Slot (in amount of tokens) as decimal string [optional]

Example

from codex_client.models.sales_availability import SalesAvailability

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

# convert the object into a dict
sales_availability_dict = sales_availability_instance.to_dict()
# create an instance of SalesAvailability from a dict
sales_availability_from_dict = SalesAvailability.from_dict(sales_availability_dict)

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