$username = 'username';
$password = 'password';
$api = new MelipayamakApi($username,$password);
$sms = $api->sms('soap');
$sms->sendWithSpeech($to,$from,$text,$speech);
const username = 'username';
const password = 'password';
const api = new MelipayamakApi(username,password);
const sms = api.sms('soap');
sms.sendWithSpeech(to,from,text,speech);
final String username = "username";
final String password = "password";
SoapClient soapClient = new SoapClient(username, password);
soapClient.SendSMSWithSpeechText(smsBody, speechBody, from, to);
const string username = "username";
const string password = "password";
VoiceSoapClient soapClient = new VoiceSoapClient();
soapClient.SendSMSWithSpeechText(username, password, smsBody, speechBody, from, to);
Const username As String = "username"
Const password As String = "password"
Dim soapClient As New VoiceSoapClient()
soapClient.SendSMSWithSpeechText(username, password, smsBody, speechBody, from, toNum)
let username: String = "username"
let password: String = "password"
var soapClient = SoapClient(user: username, pass: password)
soapClient.SendSMSWithSpeechText(body: smsBody, spch: speechBody, from: from, to: to)
NSString *username = @"username";
NSString *password = @"password";
SoapClient *soapClient = [[SoapClient alloc] initCred:username password:password];
[soapClient SendSMSWithSpeechText:smsBody spch:speechBody from:from to:to];
username = 'username'
password = 'password'
api = Api(username,password)
sms = api.sms('soap')
sms.send_with_speech(to,from,text,speech)
final String username = "username";
final String password = "password";
SoapClient soapClient = new SoapClient(username, password);
soapClient.SendSMSWithSpeechText(smsBody, speechBody, from, to);
username = 'username'
password = 'password'
api = Melipayamakapi.new(username,password)
sms = api.sms('soap')
sms.send_with_speech(to,from,text,speech)
my $username = "username";
my $password = "password";
my $soapClient = new SoapClient($username, $password);
$soapClient->SendSMSWithSpeechText($smsBody, $speechBody, $from, $to);
local username = "username";
local password = "password";
SendSMSWithSpeechText(username, password, smsBody, speechBody, from, to);
username := "username";
password := "password";
SendSMSWithSpeechText(username, password, smsBody, speechBody, from, to);
val username = "username"
val password = "password"
val soapClient = SoapClient(username, password)
soapClient.SendSMSWithSpeechText(smsBody, speechBody, from, to)
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SendSMSWithSpeechTextResponse xmlns="http://tempuri.org/">
<SendSMSWithSpeechTextResult>string</SendSMSWithSpeechTextResult>
</SendSMSWithSpeechTextResponse>
</soap:Body>
</soap:Envelope>