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
Date when the item was created in the system ― set by the system automatically. Display format ― Y-m-d H:i:s
[optional]
country_code
str
Country code according to ISO 3166-1 alpha-2 standard
[optional]
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
[optional]
code_of_company
str
National registration code of Company (ЄДРПОУ for Ukraine)
[optional]
site_url
str
Website URL of your service
[optional]
informing_purpose
str
Purpose of informing
[optional]
comment
str
any additional information
[optional]
description
str
Service description
[optional]
Example
frombsg_api.models.sender_request_natural_schemaimportSenderRequestNaturalSchema# TODO update the JSON string belowjson="{}"# create an instance of SenderRequestNaturalSchema from a JSON stringsender_request_natural_schema_instance=SenderRequestNaturalSchema.from_json(json)
# print the JSON string representation of the objectprint(SenderRequestNaturalSchema.to_json())
# convert the object into a dictsender_request_natural_schema_dict=sender_request_natural_schema_instance.to_dict()
# create an instance of SenderRequestNaturalSchema from a dictsender_request_natural_schema_from_dict=SenderRequestNaturalSchema.from_dict(sender_request_natural_schema_dict)