Skip to content

Instantly share code, notes, and snippets.

@Adebayo-Adesegun
Created April 22, 2019 19:05
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/48ad19e206a07922a93a1333e75c84ce to your computer and use it in GitHub Desktop.
Save Adebayo-Adesegun/48ad19e206a07922a93a1333e75c84ce to your computer and use it in GitHub Desktop.
Request model voice end point
using System.Text;
namespace KonnectAPIC
{
public class RequestVoice
{
// Unique transaction id for the request
public string id { get; set; }
public List<string> recipient { get; set; }
public string caller_id { get; set; }
public string direction { get; set; }
public string media_url { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment