Main > Free Download Search >

Free google adwords clientusagerecord 0.6.0 software for linux

google adwords clientusagerecord 0.6.0

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 500
Google::Adwords::ClientUsageRecord 0.6.0

Google::Adwords::ClientUsageRecord 0.6.0


Google::Adwords::ClientUsageRecord is a Google Adwords ClientUsageRecord object. more>>
Google::Adwords::ClientUsageRecord is a Google Adwords ClientUsageRecord object.
SYNOPSIS
use Google::Adwords::InfoService;
my $ginfo = Google::Adwords::InfoService->new();
$ginfo->email(email@domain.com)
->password(password)
->developerToken(developer_token)
->applicationToken(application_token);
# If you use a MCC
$ginfo->clientEmail(clientemail@domain.com);
my @usage_records = $ginfo->getUnitCountForClients({
clientEmails => [ $email1, $email2 ],
startdate => $start_date,
endDate => $end_date,
});
print "Quota Units for client "
. $usage_records[0]->clientEmail
. is
. $usage_records[0]->quotaUnits
. "n";
This object should be used with the InfoService::getUnitCountForClients API call
METHODS
Accessors (read only)
- clientEmail - The login for identifying this client account
- quotaUnits - The number of quota units recorded for this client
Enhancements:
- Perl
<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1065 downloads
Google::Adwords::StatsRecord 0.6.0

Google::Adwords::StatsRecord 0.6.0


Google::Adwords::StatsRecord is a Google Adwords StatsRecord Object. more>>
Google::Adwords::StatsRecord is a Google Adwords StatsRecord Object.

This object is a read-only object used in returned calls from Google Adwords API.

More info is available here -
http://www.google.com/apis/adwords/developer/StatsRecord.html

METHODS

Accessors (read only)

* averagePosition - The average position of impressions that were shown for this records entity
* clicks - The number of clicks collected by this records entity.
* conversionRate - The ratio of conversions over convertible clicks for this records entity.
* conversions - The number of clicks that were actually converted for this records entity.
* cost - The total cost incurred (in micro-units of currency) by this records entity.
* id - The Id of this records entity
* impressions - The number of impressions shown on behalf of this records entity

<<less
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::CreditCard 0.6.0

Google::Adwords::CreditCard 0.6.0


Google::Adwords::CreditCard is a Google Adwords CreditCard object. more>>
Google::Adwords::CreditCard is a Google Adwords CreditCard object.
This object should be used with the AccountService API calls.
METHODS
Mutators (read/write)
- cardNumber
- cardType
- cardVerificationNumber
- expirationMonth
- expirationYear
- issueNumber
- startMonth
- startYear
- status
- taxNumber
<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1065 downloads
Google::Adwords::CoverageType 0.6.0

Google::Adwords::CoverageType 0.6.0


Google::Adwords::CoverageType is a Google Adwords CoverageType object. more>>
Google::Adwords::CoverageType is a Google Adwords CoverageType object.

SYNOPSIS

use Google::Adwords::CoverageType;

my $coveragetype = Google::Adwords::CoverageType->new
->optInContentNetwork(1)
->optInSearchNetwork(0);

This object should be used with the AccountService API calls

<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::Image 0.6.0

Google::Adwords::Image 0.6.0


Google::Adwords::Image is a Google Adwords Image object. more>>
Google::Adwords::Image is a Google Adwords Image object.

SYNOPSIS

use Google::Adwords::CreativeService;
use Google::Adwords::Creative;
use Google::Adwords::Image;

use File::Slurp;

# create the CreativeService object
my $creative_service = Google::Adwords::CreativeService->new();

# need to login to the Adwords service
$creative_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($app_token);

# if you have a MCC
$creative_service->clientEmail($client_email);

# Lets add an image creative
my $data_blurb = read_file(image.gif);

my $image = Google::Adwords::Image->new
->name(Image #1)
->data($data_blurb)
->type(image);

my $creative_image = Google::Adwords::Creative->new
->adGroupId($adgroupid)
->destinationUrl(http://www.example.com)
->displayUrl(http://www.example.com)
->image( $image );

my $addcreative = $creative_service->addCreative($creative_image);
print "Added Creative ID: " . $addcreative->id . "n";
print "Image Height: " . $addcreative->image->height . "n";

This object should be used with the CreativeService API calls

<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1065 downloads
Google::Adwords::Service 0.6.0

Google::Adwords::Service 0.6.0


Google::Adwords::Service is base class for the Service modules. more>>
Google::Adwords::Service is base class for the Service modules.

This module is not supposed to be used directly. Use the child Service modules.

METHODS

These accessors are available across all the child Service modules

new()

Creates a new Google::Adwords::Service object

Usage

my $service = Google::Adwords::CampaignService->new();

Parameters

NONE

Returns

A Google::Adwords::Service object

email()

Set/Get your Google Adwords account name (your email address). This value should be set before calling any other API methods

password()

Set/Get your Google Adwords account password. This value should be set before calling any other API methods

token()

Set/Get your Google Adwords developer token. This value should be set before calling any other API methods

clientEmail()

Use this if you have a MCC (My Client Center) account. Set/Get the actual client email which will be used for the API calls.

useragent()

Set this to an arbitrary string that identifies the customer sending the request. Default value is "Google::Adwords $VERSION"

use_sandbox()

If you do $obj->use_sandbox(1), then this module will use the sandbox for all API calls.

timeout()

Set the SOAP timeout value in seconds. Default value is 20.

debug()

Use $obj->debug(1) if you want to see the request/response XML

The following accessors are available after an API call is done. These give information about the response.

requestId()

Get the unique ID that identifies this request.

operations()

number of operations in the request

units()

number of quota units the request used

responseTime()

elapsed time between the web service receiving the request and sending the response

<<less
Download (0.041MB)
Added: 2006-11-24 License: Perl Artistic License Price:
1065 downloads
Google::Adwords::ReportJob 0.6.0

Google::Adwords::ReportJob 0.6.0


Google::Adwords::ReportJob is a Google Adwords ReportJob Object. more>>
Google::Adwords::ReportJob is a Google Adwords ReportJob Object.
This object is used with the ReportService module
METHODS
Mutators (read/write)
- adGroups
- adGroupStatuses
- adWordsType
- aggregationType
- campaigns
- clientEmails
- crossClient
- customOptions
- endDay
- id
- includeZeroImpression
- keywords
- keywordStatuses
- keywordType
- name
- startDay
- status
<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1065 downloads
Google::Adwords::Address 0.6.0

Google::Adwords::Address 0.6.0


Google::Adwords::Address is a Google Adwords Address object. more>>
Google::Adwords::Address is a Google Adwords Address object.
SYNOPSIS
use Google::Adwords::Address;
my $address = Google::Adwords::Address->new
->addressLine1(first street)
->city(Paris)
->companyName(My company)
->countryCode(FR)
->emailAddress(my@example.com);
This object should be used with the AccountService API calls
METHODS
Mutators (read/write)
- addressLine1
- addressLine2
- city
- companyName
- countryCode
- emailAddress
- faxNumber
- name
- phoneNumber
- postalCode
- state
<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1067 downloads
Google::Adwords::AdGroupService 0.6.0

Google::Adwords::AdGroupService 0.6.0


Google::Adwords::AdGroupService is a Perl module to interact with the Google Adwords AdGroupService API calls. more>>
Google::Adwords::AdGroupService is a Perl module to interact with the Google Adwords AdGroupService API calls.

SYNOPSIS

use Google::Adwords::AdGroup;
use Google::Adwords::AdGroupService;

# create a new adgroup object
my $adgroup = Google::Adwords::AdGroup->new;

# set values for the adgroup object
$adgroup->name(My Final Try);
$adgroup->maxCpc(500000);

# create the adgroup service object
my $adgroup_service = Google::Adwords::AdGroupService->new();

# need to login to the Adwords service
$adgroup_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($application_token);

# if you use a MCC
#$adgroup_service->clientEmail($client_email);

# now create the adgroup
my $campaignId = 1234; # within this campaign
my $adgroup_response = $adgroup_service->addAdGroup($campaignId, $adgroup);

print "New adgroup ID is :" . $adgroup_response->id;

<<less
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::Campaign 0.6.0

Google::Adwords::Campaign 0.6.0


Google::Adwords::Campaign is a Google Adwords Campaign Object. more>>
Google::Adwords::Campaign is a Google Adwords Campaign Object.

SYNOPSIS

use Google::Adwords::Campaign;
use Google::Adwords::CampaignService;

# create a new campaign object
my $campaign = Google::Adwords::Campaign;

# set values for the campaign object
$campaign->name(My Final Try);
$campaign->dailyBudget(10000000);

# target a certain city in US
$campaign->geoTargeting({
cities => [ Pelican, AK US ],
});

# create the campaign service object
my $campaign_service = Google::Adwords::CampaignService->new();

# need to login to the Adwords service
$campaign_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($application_token);

# if you use a MCC
$campaign_service->clientEmail($client_email);

# now create the campaign
my $campaign_response = $campaign_service->addCampaign($campaign);

print "New campaign ID is :" . $campaign_response->id;

This object should be used with the CampaignService API calls

<<less
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::Creative 0.6.0

Google::Adwords::Creative 0.6.0


Google::Adwords::Creative is a Google Adwords Creative object. more>>
Google::Adwords::Creative is a Google Adwords Creative object.

SYNOPSIS

use Google::Adwords::CreativeService;
use Google::Adwords::Creative;

# create the CreativeService object
my $creative_service = Google::Adwords::CreativeService->new();

# need to login to the Adwords service
$creative_service->email($email_address)
->password($password)
->developerToken($developer_token)
->applicationToken($app_token);

# if you have a MCC
$creative_service->clientEmail($client_email);

# get a specific creative from an AdGroup
my $adgroupid = 1123
my $creativeid = 7819;

my $creative = $creative_service->getCreative($adgroupid, $creativeid);
print "Creative Info: n"
. " ID: " . $creative->id . "n"
. " Dest URL: " . $creative->destinationUrl . "n"
. " Display URL: " . $creative->displayUrl . "n"
;

This object should be used with the CreativeService API calls

<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::CampaignRequest 0.6.0

Google::Adwords::CampaignRequest 0.6.0


Google::Adwords::CampaignRequest is a Google Adwords CampaignRequest Object. more>>
Google::Adwords::CampaignRequest is a Google Adwords CampaignRequest Object.
This object is a read/write object used in calls from Google Adwords API.
More info is available here -
http://www.google.com/apis/adwords/developer/CampaignRequest.html
METHODS
Mutators (read/write)
- id - The id of the campaign to be estimated. Optional - if omitted, indicates a new campaign.
- adGroupRequests - The adgroups to be estimated. You must set at least one ad group whether the campaign exists already or is new. Its a list of Google::Adwords::AdGroupRequest objects.
- geoTargeting - The geographic targeting rules for this campaign. Optional - if omitted, targeting will be inherited from the existing campaign if specified or else global targeting will be used.
- languageTargeting - The languages targeted by this campaign.
- networkTargeting - The advertising networks targeted by this campaign.
<<less
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::Data 0.6.0

Google::Adwords::Data 0.6.0


Google::Adwords::Data is base class for the Data modules. more>>
Google::Adwords::Data is base class for the Data modules.

This module is not supposed to be used directly. Use the child data modules.

<<less
Download (0.041MB)
Added: 2006-11-28 License: Perl Artistic License Price:
1060 downloads
Google::Adwords::CampaignEstimate 0.6.0

Google::Adwords::CampaignEstimate 0.6.0


Google::Adwords::CampaignEstimate is a Google Adwords CampaignEstimate Object. more>>
Google::Adwords::CampaignEstimate is a Google Adwords CampaignEstimate Object.

This object is a read-only object used in calls from Google Adwords API.

More info is available here -

http://www.google.com/apis/adwords/developer/CampaignEstimate.html

METHODS

Accessors (read-only)

* id - The existing campaign id, if any, to which this estimate corresponds. If the campaign is new, the id is -1.
* adGroupEstimates - The ad group estimates for this campaign. Each Google::Adwords::AdGroupEstimate contains Google::Adwords::KeywordEstimate objects.

<<less
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
Google::Adwords::AccountInfo 0.6.0

Google::Adwords::AccountInfo 0.6.0


Google::Adwords::AccountInfo is a Google Adwords AccountInfo object. more>>
Google::Adwords::AccountInfo is a Google Adwords AccountInfo object.

SYNOPSIS

use Google::Adwords::AccountInfo;

my $accountinfo = Google::Adwords::AccountInfo->new
->currencyCode(EUR)
->descriptiveName(My Account);

This object should be used with the AccountService API calls

<<less
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1066 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5