class Google::Apis::DfareportingV2_1::Project
Contains properties of a DoubleClick Planning project.
Attributes
Account ID of this project. Corresponds to the JSON property `accountId` @return [String]
Advertiser ID of this project. Corresponds to the JSON property `advertiserId` @return [String]
Audience age group of this project. Corresponds to the JSON property `audienceAgeGroup` @return [String]
Audience gender of this project. Corresponds to the JSON property `audienceGender` @return [String]
Budget of this project in the currency specified by the current account. The value stored in this field represents only the non-fractional amount. For example, for USD, the smallest value that can be represented by this field is 1 US dollar. Corresponds to the JSON property `budget` @return [String]
Client billing code of this project. Corresponds to the JSON property `clientBillingCode` @return [String]
Name of the project client. Corresponds to the JSON property `clientName` @return [String]
End date of the project. Corresponds to the JSON property `endDate` @return [Date]
ID of this project. This is a read-only, auto-generated field. Corresponds to the JSON property `id` @return [String]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#project”. Corresponds to the JSON property `kind` @return [String]
Modification timestamp. Corresponds to the JSON property `lastModifiedInfo` @return [Google::Apis::DfareportingV2_1::LastModifiedInfo]
Name of this project. Corresponds to the JSON property `name` @return [String]
Overview of this project. Corresponds to the JSON property `overview` @return [String]
Start date of the project. Corresponds to the JSON property `startDate` @return [Date]
Subaccount ID of this project. Corresponds to the JSON property `subaccountId` @return [String]
Number of clicks that the advertiser is targeting. Corresponds to the JSON property `targetClicks` @return [String]
Number of conversions that the advertiser is targeting. Corresponds to the JSON property `targetConversions` @return [String]
CPA that the advertiser is targeting. Corresponds to the JSON property `targetCpaNanos` @return [String]
CPC that the advertiser is targeting. Corresponds to the JSON property `targetCpcNanos` @return [String]
CPM that the advertiser is targeting. Corresponds to the JSON property `targetCpmNanos` @return [String]
Number of impressions that the advertiser is targeting. Corresponds to the JSON property `targetImpressions` @return [String]
Public Class Methods
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 8411 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/dfareporting_v2_1/classes.rb, line 8416 def update!(**args) @account_id = args[:account_id] unless args[:account_id].nil? @advertiser_id = args[:advertiser_id] unless args[:advertiser_id].nil? @audience_age_group = args[:audience_age_group] unless args[:audience_age_group].nil? @audience_gender = args[:audience_gender] unless args[:audience_gender].nil? @budget = args[:budget] unless args[:budget].nil? @client_billing_code = args[:client_billing_code] unless args[:client_billing_code].nil? @client_name = args[:client_name] unless args[:client_name].nil? @end_date = args[:end_date] unless args[:end_date].nil? @id = args[:id] unless args[:id].nil? @kind = args[:kind] unless args[:kind].nil? @last_modified_info = args[:last_modified_info] unless args[:last_modified_info].nil? @name = args[:name] unless args[:name].nil? @overview = args[:overview] unless args[:overview].nil? @start_date = args[:start_date] unless args[:start_date].nil? @subaccount_id = args[:subaccount_id] unless args[:subaccount_id].nil? @target_clicks = args[:target_clicks] unless args[:target_clicks].nil? @target_conversions = args[:target_conversions] unless args[:target_conversions].nil? @target_cpa_nanos = args[:target_cpa_nanos] unless args[:target_cpa_nanos].nil? @target_cpc_nanos = args[:target_cpc_nanos] unless args[:target_cpc_nanos].nil? @target_cpm_nanos = args[:target_cpm_nanos] unless args[:target_cpm_nanos].nil? @target_impressions = args[:target_impressions] unless args[:target_impressions].nil? end