Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.13 KB

File metadata and controls

28 lines (20 loc) · 1.13 KB

SenderRequestNatural201Response

Properties

Name Type Description Notes
data SenderRequestNaturalSchema [optional]

Example

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)

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