package Google::Ads::AdWords::v201309::AdGroupCriterionService::AdGroupCriterionServiceInterfacePort; use strict; use warnings; use Class::Std::Fast::Storable; use Scalar::Util qw(blessed); use base qw(SOAP::WSDL::Client::Base); # only load if it hasn't been loaded before require Google::Ads::AdWords::v201309::TypeMaps::AdGroupCriterionService if not Google::Ads::AdWords::v201309::TypeMaps::AdGroupCriterionService->can('get_class'); sub START { $_[0]->set_proxy('https://adwords.google.com/api/adwords/cm/v201309/AdGroupCriterionService') if not $_[2]->{proxy}; $_[0]->set_class_resolver('Google::Ads::AdWords::v201309::TypeMaps::AdGroupCriterionService') if not $_[2]->{class_resolver}; $_[0]->set_prefix($_[2]->{use_prefix}) if exists $_[2]->{use_prefix}; } sub get { my ($self, $body, $header) = @_; die "get must be called as object method (\$self is <$self>)" if not blessed($self); return $self->SUPER::call({ operation => 'get', soap_action => '', style => 'document', body => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::AdGroupCriterionService::get )], }, header => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::AdGroupCriterionService::RequestHeader )], }, headerfault => { } }, $body, $header); } sub mutate { my ($self, $body, $header) = @_; die "mutate must be called as object method (\$self is <$self>)" if not blessed($self); return $self->SUPER::call({ operation => 'mutate', soap_action => '', style => 'document', body => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::AdGroupCriterionService::mutate )], }, header => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::AdGroupCriterionService::RequestHeader )], }, headerfault => { } }, $body, $header); } sub query { my ($self, $body, $header) = @_; die "query must be called as object method (\$self is <$self>)" if not blessed($self); return $self->SUPER::call({ operation => 'query', soap_action => '', style => 'document', body => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::AdGroupCriterionService::query )], }, header => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::AdGroupCriterionService::RequestHeader )], }, headerfault => { } }, $body, $header); } 1; __END__ =pod =head1 NAME Google::Ads::AdWords::v201309::AdGroupCriterionService::AdGroupCriterionServiceInterfacePort - SOAP Interface for the AdGroupCriterionService Web Service =head1 SYNOPSIS use Google::Ads::AdWords::v201309::AdGroupCriterionService::AdGroupCriterionServiceInterfacePort; my $interface = Google::Ads::AdWords::v201309::AdGroupCriterionService::AdGroupCriterionServiceInterfacePort->new(); my $response; $response = $interface->get(); $response = $interface->mutate(); $response = $interface->query(); =head1 DESCRIPTION SOAP Interface for the AdGroupCriterionService web service located at https://adwords.google.com/api/adwords/cm/v201309/AdGroupCriterionService. =head1 SERVICE AdGroupCriterionService =head2 Port AdGroupCriterionServiceInterfacePort =head1 METHODS =head2 General methods =head3 new Constructor. All arguments are forwarded to L. =head2 SOAP Service methods Method synopsis is displayed with hash refs as parameters. The commented class names in the method's parameters denote that objects of the corresponding class can be passed instead of the marked hash ref. You may pass any combination of objects, hash and list refs to these methods, as long as you meet the structure. List items (i.e. multiple occurences) are not displayed in the synopsis. You may generally pass a list ref of hash refs (or objects) instead of a hash ref - this may result in invalid XML if used improperly, though. Note that SOAP::WSDL always expects list references at maximum depth position. XML attributes are not displayed in this synopsis and cannot be set using hash refs. See the respective class' documentation for additional information. =head3 get Gets adgroup criteria. @param serviceSelector filters the adgroup criteria to be returned. @return a page (subset) view of the criteria selected @throws ApiException when there is at least one error with the request Returns a L object. $response = $interface->get( { serviceSelector => $a_reference_to, # see Google::Ads::AdWords::v201309::Selector },, ); =head3 mutate Adds, removes or updates adgroup criteria. @param operations operations to do during checks on keywords to be added. @return added and updated adgroup criteria (without optional parts) @throws ApiException when there is at least one error with the request Returns a L object. $response = $interface->mutate( { operations => $a_reference_to, # see Google::Ads::AdWords::v201309::AdGroupCriterionOperation },, ); =head3 query Returns the list of AdGroupCriterion that match the query. @param query The SQL-like AWQL query string @returns A list of AdGroupCriterion @throws ApiException when the query is invalid or there are errors processing the request. Returns a L object. $response = $interface->query( { query => $some_value, # string },, ); =head1 AUTHOR Generated by SOAP::WSDL on Fri Oct 4 12:03:10 2013 =cut