| Name | Type | Description | Notes |
|---|---|---|---|
| data | SenderRequestNaturalSchema | [optional] |
from bsg_api.models.sender_request_natural201_response import SenderRequestNatural201Response
# TODO update the JSON string below
json = "{}"
# create an instance of SenderRequestNatural201Response from a JSON string
sender_request_natural201_response_instance = SenderRequestNatural201Response.from_json(json)
# print the JSON string representation of the object
print(SenderRequestNatural201Response.to_json())
# convert the object into a dict
sender_request_natural201_response_dict = sender_request_natural201_response_instance.to_dict()
# create an instance of SenderRequestNatural201Response from a dict
sender_request_natural201_response_from_dict = SenderRequestNatural201Response.from_dict(sender_request_natural201_response_dict)