package Google::Ads::AdWords::v201309::DataService::DataServiceInterfacePort; 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::DataService if not Google::Ads::AdWords::v201309::TypeMaps::DataService->can('get_class'); sub START { $_[0]->set_proxy('https://adwords.google.com/api/adwords/cm/v201309/DataService') if not $_[2]->{proxy}; $_[0]->set_class_resolver('Google::Ads::AdWords::v201309::TypeMaps::DataService') if not $_[2]->{class_resolver}; $_[0]->set_prefix($_[2]->{use_prefix}) if exists $_[2]->{use_prefix}; } sub getAdGroupBidLandscape { my ($self, $body, $header) = @_; die "getAdGroupBidLandscape must be called as object method (\$self is <$self>)" if not blessed($self); return $self->SUPER::call({ operation => 'getAdGroupBidLandscape', soap_action => '', style => 'document', body => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::DataService::getAdGroupBidLandscape )], }, header => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::DataService::RequestHeader )], }, headerfault => { } }, $body, $header); } sub getCriterionBidLandscape { my ($self, $body, $header) = @_; die "getCriterionBidLandscape must be called as object method (\$self is <$self>)" if not blessed($self); return $self->SUPER::call({ operation => 'getCriterionBidLandscape', soap_action => '', style => 'document', body => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::DataService::getCriterionBidLandscape )], }, header => { 'use' => 'literal', namespace => 'http://schemas.xmlsoap.org/wsdl/soap/', encodingStyle => '', parts => [qw( Google::Ads::AdWords::v201309::DataService::RequestHeader )], }, headerfault => { } }, $body, $header); } 1; __END__ =pod =head1 NAME Google::Ads::AdWords::v201309::DataService::DataServiceInterfacePort - SOAP Interface for the DataService Web Service =head1 SYNOPSIS use Google::Ads::AdWords::v201309::DataService::DataServiceInterfacePort; my $interface = Google::Ads::AdWords::v201309::DataService::DataServiceInterfacePort->new(); my $response; $response = $interface->getAdGroupBidLandscape(); $response = $interface->getCriterionBidLandscape(); =head1 DESCRIPTION SOAP Interface for the DataService web service located at https://adwords.google.com/api/adwords/cm/v201309/DataService. =head1 SERVICE DataService =head2 Port DataServiceInterfacePort =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 getAdGroupBidLandscape Returns a list of bid landscapes for the ad groups specified in the selector. @param serviceSelector Selects the entities to return bid landscapes for. @return A list of bid landscapes. @throws ApiException when there is at least one error with the request. Returns a L object. $response = $interface->getAdGroupBidLandscape( { serviceSelector => $a_reference_to, # see Google::Ads::AdWords::v201309::Selector },, ); =head3 getCriterionBidLandscape Returns a list of bid landscapes for the criteria specified in the selector. @param serviceSelector Selects the entities to return bid landscapes for. @return A list of bid landscapes. @throws ApiException when there is at least one error with the request. Returns a L object. $response = $interface->getCriterionBidLandscape( { serviceSelector => $a_reference_to, # see Google::Ads::AdWords::v201309::Selector },, ); =head1 AUTHOR Generated by SOAP::WSDL on Fri Oct 4 12:04:10 2013 =cut