Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 873 Bytes

File metadata and controls

32 lines (23 loc) · 873 Bytes

Blocks

Properties

Name Type Description Notes
code int
message str [optional]
total int
blocks List[Block]

Example

from lighter.models.blocks import Blocks

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

# convert the object into a dict
blocks_dict = blocks_instance.to_dict()
# create an instance of Blocks from a dict
blocks_from_dict = Blocks.from_dict(blocks_dict)

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