logos-storage-py-api-client/docs/HasBlock200Response.md

30 lines
1014 B
Markdown
Raw Normal View History

2026-01-22 10:54:08 +00:00
# HasBlock200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**has** | **bool** | Indicates whether the block exists in the local node | [optional]
## Example
```python
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)