Nexmo::SMS::Response::Message - Module that represents a single message in the
response from Nexmo SMS API!
This module represents a single message in a response from Nexmo.
use Nexmo::SMS::Response::Message;
my $nexmo = Nexmo::SMS::Response::Message->new(
json => '{
"status":"4",
"message-id":"message001",
"client-ref":"Test001 - Reference",
"remaining-balance":"20.0",
"message-price":"0.05",
"error-text":""
}',
);
print $nexmo->message_price;
create a new object
my $foo = Nexmo::SMS::Response::Message->new(
json => '
{
"status":"4",
"message-id":"message001",
"client-ref":"Test001 - Reference",
"remaining-balance":"20.0",
"message-price":"0.05",
"error-text":""
}',
);
These attributes are available for
"Nexmo::SMS::TextMessage" objects:
$nexmo->client_ref( 'client_ref' );
my $client_ref = $nexmo->client_ref;
- client_ref
- error_text
- message_price
- remaining_balance
- status_desc
- status message_id
- status_text
Copyright 2011 Renee Baecker.
This program is released under the following license:
artistic_2
Renee Baecker <module@renee-baecker.de>
This software is Copyright (c) 2011 by Renee Baecker.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)