Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.1 KB

File metadata and controls

28 lines (20 loc) · 1.1 KB

SenderRequestLegal201Response

Properties

Name Type Description Notes
data SenderRequestLegalSchema [optional]

Example

from bsg_api.models.sender_request_legal201_response import SenderRequestLegal201Response

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

# convert the object into a dict
sender_request_legal201_response_dict = sender_request_legal201_response_instance.to_dict()
# create an instance of SenderRequestLegal201Response from a dict
sender_request_legal201_response_from_dict = SenderRequestLegal201Response.from_dict(sender_request_legal201_response_dict)

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