Class: Google::Apis::DfareportingV3_2::CreativeFieldValuesListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_2::CreativeFieldValuesListResponse
 
 
- 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
Creative Field Value List Response
Instance Attribute Summary collapse
- 
  
    
      #creative_field_values  ⇒ Array<Google::Apis::DfareportingV3_2::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
      4219 4220 4221  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4219 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#creative_field_values ⇒ Array<Google::Apis::DfareportingV3_2::CreativeFieldValue>
Creative field value collection.
Corresponds to the JSON property creativeFieldValues
      4206 4207 4208  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4206 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
      4212 4213 4214  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4212 def kind @kind end  | 
  
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
      4217 4218 4219  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4217 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4224 4225 4226 4227 4228  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4224 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  |