NAME
Google::Ads::AdWords::v201406::MediaService::MediaServiceInterfacePort - SOAP Interface for the MediaService Web Service
SYNOPSIS
use Google::Ads::AdWords::v201406::MediaService::MediaServiceInterfacePort;
my $interface = Google::Ads::AdWords::v201406::MediaService::MediaServiceInterfacePort->new();
my $response;
$response = $interface->get();
$response = $interface->query();
$response = $interface->upload();
DESCRIPTION
SOAP Interface for the MediaService web service located at https://adwords.google.com/api/adwords/cm/v201406/MediaService.
SERVICE MediaService
Port MediaServiceInterfacePort
METHODS
General methods
new
Constructor.
All arguments are forwarded to SOAP::WSDL::Client.
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.
get
Returns a list of media that meet the criteria specified by the selector. <p class="note"><b>Note:</b> {@code MediaService} will not return any {@link ImageAd} image files.</p> @param serviceSelector Selects which media objects to return. @return A list of {@code Media} objects.
Returns a Google::Ads::AdWords::v201406::MediaService::getResponse object.
$response = $interface->get( {
serviceSelector => $a_reference_to, # see Google::Ads::AdWords::v201406::Selector
},,
);
query
Returns the list of {@link Media} objects that match the query. @param query The SQL-like AWQL query string @returns A list of {@code Media} objects. @throws ApiException when the query is invalid or there are errors processing the request.
Returns a Google::Ads::AdWords::v201406::MediaService::queryResponse object.
$response = $interface->query( {
query => $some_value, # string
},,
);
upload
Uploads new media. Currently, you can only upload {@link Image} files. @param media A list of {@code Media} objects, each containing the data to be uploaded. @return A list of uploaded media in the same order as the argument list.
Returns a Google::Ads::AdWords::v201406::MediaService::uploadResponse object.
$response = $interface->upload( {
media => $a_reference_to, # see Google::Ads::AdWords::v201406::Media
},,
);
AUTHOR
Generated by SOAP::WSDL on Mon Jun 30 09:53:05 2014