Geo::WebService::OpenCellID::Response - Perl API for the opencellid.org database


Geo-WebService-OpenCellID documentation Contained in the Geo-WebService-OpenCellID distribution.

Index


Code Index:

NAME

Top

Geo::WebService::OpenCellID::Response - Perl API for the opencellid.org database

SYNOPSIS

Top

  use base qw{Geo::WebService::OpenCellID::Response};

DESCRIPTION

Top

USAGE

Top

CONSTRUCTOR

Top

new

METHODS

Top

stat

Returns the status from rsp->stat in the xml

content

Returns the entire XML document.

url

Returns the url of the web service as called

BUGS

Top

Submit to RT and email the Author

SUPPORT

Top

Try the Author or Try 8motions.com

AUTHOR

Top

    Michael R. Davis
    CPAN ID: MRDVT
    STOP, LLC
    domain=>michaelrdavis,tld=>com,account=>perl
    http://www.stopllc.com/

COPYRIGHT

Top

SEE ALSO

Top


Geo-WebService-OpenCellID documentation Contained in the Geo-WebService-OpenCellID distribution.
package Geo::WebService::OpenCellID::Response;
use base qw{Geo::WebService::OpenCellID::Base};
use warnings;
use strict;
our $VERSION = '0.04';

sub stat {
  my $self=shift;
  return $self->{"data"}->{"stat"};
}

sub content {
  my $self=shift;
  return $self->{"content"};
}

sub url {
  my $self=shift;
  return $self->{"url"};
}

1;