package WebService::Vtiger;
use warnings;
use strict;
use LWP::UserAgent;
use JSON;
use Digest::MD5;
=head1 NAME
Webservice::Vtiger - Interface to vtiger5.2 webservices
=head1 VERSION
Version 0
ibutes:
=over 2
=item * ua: the browser
Instance of LWP::UserAgent
=item * json: the json handler
Instance of JSON
=item * ctx: the MD5 handler
Instance of Digest::MD5
=item * url: the url o
my $self = {
'ua' => LWP::UserAgent->new, # browser
'json' => JSON->new->allow_nonref, # json handler
'ctx' => Digest::MD5->new, # MD5 handler
'