Class: Google::Apis::DfareportingV3_2::CreativeField
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_2::CreativeField
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/representations.rb 
Overview
Contains properties of a creative field.
Instance Attribute Summary collapse
- 
  
    
      #account_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Account ID of this creative field.
 - 
  
    
      #advertiser_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Advertiser ID of this creative field.
 - 
  
    
      #advertiser_id_dimension_value  ⇒ Google::Apis::DfareportingV3_2::DimensionValue 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Represents a DimensionValue resource.
 - 
  
    
      #id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
ID of this creative field.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of this creative field.
 - 
  
    
      #subaccount_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Subaccount ID of this creative field.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CreativeField 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CreativeField.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreativeField
Returns a new instance of CreativeField
      4125 4126 4127  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4125 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#account_id ⇒ Fixnum
Account ID of this creative field. This is a read-only field that can be left
blank.
Corresponds to the JSON property accountId
      4090 4091 4092  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4090 def account_id @account_id end  | 
  
#advertiser_id ⇒ Fixnum
Advertiser ID of this creative field. This is a required field on insertion.
Corresponds to the JSON property advertiserId
      4095 4096 4097  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4095 def advertiser_id @advertiser_id end  | 
  
#advertiser_id_dimension_value ⇒ Google::Apis::DfareportingV3_2::DimensionValue
Represents a DimensionValue resource.
Corresponds to the JSON property advertiserIdDimensionValue
      4100 4101 4102  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4100 def advertiser_id_dimension_value @advertiser_id_dimension_value end  | 
  
#id ⇒ Fixnum
ID of this creative field. This is a read-only, auto-generated field.
Corresponds to the JSON property id
      4105 4106 4107  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4105 def id @id end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#creativeField".
Corresponds to the JSON property kind
      4111 4112 4113  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4111 def kind @kind end  | 
  
#name ⇒ String
Name of this creative field. This is a required field and must be less than
256 characters long and unique among creative fields of the same advertiser.
Corresponds to the JSON property name
      4117 4118 4119  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4117 def name @name end  | 
  
#subaccount_id ⇒ Fixnum
Subaccount ID of this creative field. This is a read-only field that can be
left blank.
Corresponds to the JSON property subaccountId
      4123 4124 4125  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4123 def subaccount_id @subaccount_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4130 4131 4132 4133 4134 4135 4136 4137 4138  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4130 def update!(**args) @account_id = args[:account_id] if args.key?(:account_id) @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id) @advertiser_id_dimension_value = args[:advertiser_id_dimension_value] if args.key?(:advertiser_id_dimension_value) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @subaccount_id = args[:subaccount_id] if args.key?(:subaccount_id) end  |