Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.13 KB

File metadata and controls

28 lines (20 loc) · 1.13 KB

freeclimb.Model.SMSTollFreeCampaign

Properties

Name Type Description Notes
AccountId string ID of the account that created this toll-free campaign
CampaignId string Alphanumeric identifier used by the platform to identify this toll-free campaign
UseCase string
RegistrationStatus SMSTollFreeCampaignRegistrationStatus
DateCreated string
DateUpdated string
Revision int

Example

using Newtonsoft.Json;
using freeclimb.Model;

string json = "{\"accountId\":\"string\",\"campaignId\":\"string\",\"useCase\":\"string\",\"registrationStatus\":\"UNREGISTERED\",\"dateCreated\":\"string\",\"dateUpdated\":\"string\",\"revision\":0}";

// create an instance of SMSTollFreeCampaign from a JSON string
SMSTollFreeCampaign sMSTollFreeCampaign = JsonConvert.DeserializeObject<SMSTollFreeCampaign>(json);

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