Skip to content

Instantly share code, notes, and snippets.

@Adebayo-Adesegun
Created April 22, 2019 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Adebayo-Adesegun/eba239d4da9c94ef944f3bc684725dfd to your computer and use it in GitHub Desktop.
Save Adebayo-Adesegun/eba239d4da9c94ef944f3bc684725dfd to your computer and use it in GitHub Desktop.
RequestSMS model class for Kirusa API
using System;
using System.Collections.Generic;
using System.Text;
namespace KonnectAPIC
{
public class RequestSMS
{
// Unique transaction id for the request
public string Id { get; set; }
//The sender phone number. If not specified, the default sender id is used.
public string From { get; set; }
// The destination phone number, multiple phone numbers should be passed as a JSON array separated by comma.
public List<string> To { get; set; }
// The string to mask the sender.
public string Sender_mask { get; set; }
// The full text of the message
public string Body { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment