package Google::Ads::AdWords::v201309::CampaignCriterionService::CampaignCriterionServiceInterfacePort; 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::CampaignCriterionService if not Google::Ads::AdWords::v201309::TypeMaps::CampaignCriterionService->can('get_class'); sub START { $_[0]->set_proxy('https://adwords.google.com/api/adwords/cm/v201309/CampaignCriterionService') if not $_[2]->{proxy}; $_[0]->set_class_resolver('Google::Ads::AdWords::v201309::TypeMaps::CampaignCriterionService') 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::CampaignCriterionService::get )], }, header => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::CampaignCriterionService::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::CampaignCriterionService::mutate )], }, header => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::CampaignCriterionService::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::CampaignCriterionService::query )], }, header => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::CampaignCriterionService::RequestHeader )], }, headerfault => { } }, $body, $header); } 1; __END__ =pod =head1 NAME Google::Ads::AdWords::v201309::CampaignCriterionService::CampaignCriterionServiceInterfacePort - SOAP Interface for the CampaignCriterionService Web Service =head1 SYNOPSIS use Google::Ads::AdWords::v201309::CampaignCriterionService::CampaignCriterionServiceInterfacePort; my $interface = Google::Ads::AdWords::v201309::CampaignCriterionService::CampaignCriterionServiceInterfacePort->new(); my $response; $response = $interface->get(); $response = $interface->mutate(); $response = $interface->query(); =head1 DESCRIPTION SOAP Interface for the CampaignCriterionService web service located at https://adwords.google.com/api/adwords/cm/v201309/CampaignCriterionService. =head1 SERVICE CampaignCriterionService =head2 Port CampaignCriterionServiceInterfacePort =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 campaign criteria. @param serviceSelector The selector specifying the {@link CampaignCriterion}s to return. @return A list of campaign criteria. @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 campaign criteria. @param operations The operations to apply. @return The added campaign criteria (without any 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::CampaignCriterionOperation },, ); =head3 query Returns the list of campaign criteria that match the query. @param query The SQL-like AWQL query string. @return A list of campaign criteria. @throws ApiException if problems occur while parsing the query or fetching campaign criteria. Returns a L object. $response = $interface->query( { query => $some_value, # string },, ); =head1 AUTHOR Generated by SOAP::WSDL on Fri Oct 4 12:03:44 2013 =cut