Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.87 KB

File metadata and controls

38 lines (30 loc) · 1.87 KB

SenderRequestLegalRequest

Properties

Name Type Description Notes
country_code str Country code according to ISO 3166-1 alpha-2 standard
type SenderRequestType [default to SenderRequestType.SMS]
sender str 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

from bsg_api.models.sender_request_legal_request import SenderRequestLegalRequest

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

# convert the object into a dict
sender_request_legal_request_dict = sender_request_legal_request_instance.to_dict()
# create an instance of SenderRequestLegalRequest from a dict
sender_request_legal_request_from_dict = SenderRequestLegalRequest.from_dict(sender_request_legal_request_dict)

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