| Name |
Type |
Description |
Notes |
| id |
int |
Number of the application for Sender registration |
[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] |
| status |
SenderRequestStatus |
|
[optional] |
| created_at |
datetime |
Date when the item was created in the system ― set by the system automatically. Display format ― Y-m-d H:i:s |
[optional] |
| registered_at |
datetime |
Sender registration date |
[optional] |
| status_changed_at |
datetime |
Date and time when the status of the application for Sender registration changed. Format ISO 8601: yyyy-mm-dd hh:mm:ss |
[optional] |
| country_code |
str |
Country code according to ISO 3166-1 alpha-2 standard |
[optional] |
| code_of_company |
str |
National registration code of Company (ЄДРПОУ for Ukraine) |
[optional] |
| tax_number |
str |
Taxpayer number |
[optional] |
| type |
SenderRequestType |
|
[optional] [default to SenderRequestType.SMS] |
| site_url |
str |
Website URL of your service |
[optional] |
| name |
str |
Last name, first name, and middle name |
[optional] |
| legal_name |
str |
Legal entity name |
[optional] |
| address |
str |
Legal Address |
[optional] |
| informing_purpose |
str |
Purpose of informing |
[optional] |
| comment |
str |
any additional information |
[optional] |
| rejection_reason |
str |
Reason for rejecting the application for Sender registration. Displayed only for the “rejected” application status |
[optional] |
| description |
str |
Service description |
[optional] |
from bsg_api.models.sender_request_schema import SenderRequestSchema
# TODO update the JSON string below
json = "{}"
# create an instance of SenderRequestSchema from a JSON string
sender_request_schema_instance = SenderRequestSchema.from_json(json)
# print the JSON string representation of the object
print(SenderRequestSchema.to_json())
# convert the object into a dict
sender_request_schema_dict = sender_request_schema_instance.to_dict()
# create an instance of SenderRequestSchema from a dict
sender_request_schema_from_dict = SenderRequestSchema.from_dict(sender_request_schema_dict)
[Back to Model list] [Back to API list] [Back to README]