| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[SenderRequestSchema] | [optional] | |
| meta | Meta | [optional] |
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)