Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 970 Bytes

File metadata and controls

30 lines (21 loc) · 970 Bytes

BlockSuccess

Properties

Name Type Description Notes
status APIStatus
comment_statuses Dict[str, bool] Construct a type with a set of properties K of type T

Example

from client.models.block_success import BlockSuccess

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

# convert the object into a dict
block_success_dict = block_success_instance.to_dict()
# create an instance of BlockSuccess from a dict
block_success_from_dict = BlockSuccess.from_dict(block_success_dict)

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