logos-storage-py-api-client/docs/HasBlock200Response.md
2026-01-22 10:54:08 +00:00

1014 B

HasBlock200Response

Properties

Name Type Description Notes
has bool Indicates whether the block exists in the local node [optional]

Example

from codex_api_client.models.has_block200_response import HasBlock200Response

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

# convert the object into a dict
has_block200_response_dict = has_block200_response_instance.to_dict()
# create an instance of HasBlock200Response from a dict
has_block200_response_from_dict = HasBlock200Response.from_dict(has_block200_response_dict)

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