You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sender name. Up to 11 Latin letters or digits, up to 15 – only digits. To setup senders visit the account or use sender api
code_of_company
str
National registration code of Company (ЄДРПОУ for Ukraine)
tax_number
str
Taxpayer number
description
str
Service description
informing_purpose
str
Purpose of informing
site_url
str
Website URL of your service
[optional]
comment
str
any additional information
[optional]
legal_name
str
Legal entity name
[optional]
address
str
Legal Address
[optional]
Example
frombsg_api.models.sender_request_legal_requestimportSenderRequestLegalRequest# TODO update the JSON string belowjson="{}"# create an instance of SenderRequestLegalRequest from a JSON stringsender_request_legal_request_instance=SenderRequestLegalRequest.from_json(json)
# print the JSON string representation of the objectprint(SenderRequestLegalRequest.to_json())
# convert the object into a dictsender_request_legal_request_dict=sender_request_legal_request_instance.to_dict()
# create an instance of SenderRequestLegalRequest from a dictsender_request_legal_request_from_dict=SenderRequestLegalRequest.from_dict(sender_request_legal_request_dict)