Files
board-mate/rpi/api-resources/board_mate_client/docs/ResponseBodyString.md
2025-12-27 17:45:08 +01:00

1.0 KiB

ResponseBodyString

Properties

Name Type Description Notes
data str [optional]
message str [optional]
success bool [optional]

Example

from board_mate_client.models.response_body_string import ResponseBodyString

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

# convert the object into a dict
response_body_string_dict = response_body_string_instance.to_dict()
# create an instance of ResponseBodyString from a dict
response_body_string_from_dict = ResponseBodyString.from_dict(response_body_string_dict)

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