package SMS::Send::VoIP::MS;
use strict;
use warnings;
use URI;
use JSON::XS qw{decode_json};
use base qw{SMS::Send::Driver::WebService};
our $VERSION = '0.04';
=head1 NAME
SMS::Send::VoIP::MS - SM
:VoIP::MS->new;
my $success = $sms->send_sms(text=> 'Hello World!', to =>'+17035550123');
my $json = $sms->{__content};
my $href = $sms->{__data};
=head1 DESCRIPTION
SMS::Send driver for
= $response->{'content'};
#{"status":"success","sms":40702183}
my $data = decode_json($response->{'content'});
$self->{'__data'} = $data;
return $data->{'status'} eq 'success'