mirror of
https://github.com/logos-storage/logos-storage-py-api-client.git
synced 2026-02-17 11:53:18 +00:00
30 lines
1014 B
Markdown
30 lines
1014 B
Markdown
# 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)
|
|
|
|
|