Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.09 KB

File metadata and controls

29 lines (21 loc) · 1.09 KB

SenderRequests200Response

Properties

Name Type Description Notes
data List[SenderRequestSchema] [optional]
meta Meta [optional]

Example

from bsg_api.models.sender_requests200_response import SenderRequests200Response

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

# convert the object into a dict
sender_requests200_response_dict = sender_requests200_response_instance.to_dict()
# create an instance of SenderRequests200Response from a dict
sender_requests200_response_from_dict = SenderRequests200Response.from_dict(sender_requests200_response_dict)

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