Group
Extension

Matches 2

Tropo ( R/RE/RENEEB/Tropo-0.16.tar.gz, RENEEB, 2013; MetaCPAN )
Tropo/lib/Tropo.pm ( view source; MetaCPAN )
ict;
use warnings;

use Moo;
use Types::Standard qw(ArrayRef);
use Path::Tiny;
use JSON;

use overload '""' => \&json;

our $VERSION = 0.16;

has objects => (
    is      => 'rw',
    isa     => Array
 tropo => \@objects,
    };
    
    return $data;
}

sub json {
    my ($self) = @_;
    
    my $data   = $self->perl;
    my $string = JSON->new->encode( $data );
    
    return $string;
}

sub ad
  to => $clients_phone_number,
  );
  $tropo->say( 'hello ' . $client_name );
  $tropo->json;

Creates this JSON output:

  {
      "tropo":[
          {
              "call": {
                      
Tropo ( R/RE/RENEEB/Tropo-0.16.tar.gz, RENEEB, 2013; MetaCPAN )
Tropo/lib/Tropo/WebAPI/Call.pm ( view source; MetaCPAN )
   => Str,
    required => 1,
);

has from => (
    is  => 'ro',
    isa => Str,
    exclude_from_json => 1,
);

has ['network', 'channel'] => (
    is  => 'ro',
    isa => Str,
);

has 'answer_on_med

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.