Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.58 KB

File metadata and controls

32 lines (24 loc) · 1.58 KB

CampaignPriceRequest

Properties

Name Type Description Notes
sender str Sender’s name: from 3 to 11 characters for the sender’s alphanumeric name (Latin letters, symbols, numbers, spaces); 3 to 15 characters for the sender’s numeric name. To setup senders visit the account
text str Message text to send
tariff_code int Tariff code null by default. Your can pass specified one if you have several. For more information please visit the account prices [optional]
groups List[int] [optional]
messages List[CampaignPriceRequestMessagesItem] [optional]

Example

from bsg_api.models.campaign_price_request import CampaignPriceRequest

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

# convert the object into a dict
campaign_price_request_dict = campaign_price_request_instance.to_dict()
# create an instance of CampaignPriceRequest from a dict
campaign_price_request_from_dict = CampaignPriceRequest.from_dict(campaign_price_request_dict)

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