Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.5 KB

File metadata and controls

33 lines (25 loc) · 1.5 KB

SmsAltChannel

The object contains information about the message for alternative delivery via SMS

Properties

Name Type Description Notes
text str SMS text, max length is 765 chars for GSM 7-bit encoding (Latin), and 355 for UCS-2
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
validity_seconds int Validity period in seconds. If not set, validity field is used [optional]
validity int validity time in hours. The default is 72 hours. Integer from 1 to 72 [optional] [default to 72]
check_stop_list bool [optional] [default to True]

Example

from bsg_api.models.sms_alt_channel import SmsAltChannel

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

# convert the object into a dict
sms_alt_channel_dict = sms_alt_channel_instance.to_dict()
# create an instance of SmsAltChannel from a dict
sms_alt_channel_from_dict = SmsAltChannel.from_dict(sms_alt_channel_dict)

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