Class: Google::Apis::DfareportingV3_0::CreativeFieldValuesListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_0::CreativeFieldValuesListResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_0/classes.rb,
generated/google/apis/dfareporting_v3_0/representations.rb,
generated/google/apis/dfareporting_v3_0/representations.rb 
Overview
Creative Field Value List Response
Instance Attribute Summary collapse
- 
  
    
      #creative_field_values  ⇒ Array<Google::Apis::DfareportingV3_0::CreativeFieldValue> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Creative field value collection.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Pagination token to be used for the next list operation.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CreativeFieldValuesListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CreativeFieldValuesListResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreativeFieldValuesListResponse
Returns a new instance of CreativeFieldValuesListResponse
      4174 4175 4176  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4174 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#creative_field_values ⇒ Array<Google::Apis::DfareportingV3_0::CreativeFieldValue>
Creative field value collection.
Corresponds to the JSON property creativeFieldValues
      4161 4162 4163  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4161 def creative_field_values @creative_field_values end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#creativeFieldValuesListResponse".
Corresponds to the JSON property kind
      4167 4168 4169  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4167 def kind @kind end  | 
  
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
      4172 4173 4174  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4172 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4179 4180 4181 4182 4183  | 
    
      # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 4179 def update!(**args) @creative_field_values = args[:creative_field_values] if args.key?(:creative_field_values) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |