Class: Google::Apis::DfareportingV3_1::TargetableRemarketingListsListResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_1::TargetableRemarketingListsListResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dfareporting_v3_1/classes.rb,
generated/google/apis/dfareporting_v3_1/representations.rb,
generated/google/apis/dfareporting_v3_1/representations.rb 
Overview
Targetable remarketing list response
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Pagination token to be used for the next list operation.
 - 
  
    
      #targetable_remarketing_lists  ⇒ Array<Google::Apis::DfareportingV3_1::TargetableRemarketingList> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Targetable remarketing list collection.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TargetableRemarketingListsListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TargetableRemarketingListsListResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TargetableRemarketingListsListResponse
Returns a new instance of TargetableRemarketingListsListResponse
      11445 11446 11447  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11445 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#targetableRemarketingListsListResponse".
Corresponds to the JSON property kind
      11433 11434 11435  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11433 def kind @kind end  | 
  
#next_page_token ⇒ String
Pagination token to be used for the next list operation.
Corresponds to the JSON property nextPageToken
      11438 11439 11440  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11438 def next_page_token @next_page_token end  | 
  
#targetable_remarketing_lists ⇒ Array<Google::Apis::DfareportingV3_1::TargetableRemarketingList>
Targetable remarketing list collection.
Corresponds to the JSON property targetableRemarketingLists
      11443 11444 11445  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11443 def targetable_remarketing_lists @targetable_remarketing_lists end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      11450 11451 11452 11453 11454  | 
    
      # File 'generated/google/apis/dfareporting_v3_1/classes.rb', line 11450 def update!(**args) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @targetable_remarketing_lists = args[:targetable_remarketing_lists] if args.key?(:targetable_remarketing_lists) end  |