Class: Google::Apis::DoubleclickbidmanagerV1::DownloadRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DoubleclickbidmanagerV1::DownloadRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/doubleclickbidmanager_v1/classes.rb,
 generated/google/apis/doubleclickbidmanager_v1/representations.rb,
 generated/google/apis/doubleclickbidmanager_v1/representations.rb
Overview
Request to fetch stored insertion orders, line items, TrueView ad groups and ads.
Instance Attribute Summary collapse
- 
  
    
      #file_types  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    File types that will be returned. 
- 
  
    
      #filter_ids  ⇒ Array<Fixnum> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The IDs of the specified filter type. 
- 
  
    
      #filter_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Filter type used to filter line items to fetch. 
- 
  
    
      #version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    SDF Version (column names, types, order) in which the entities will be returned. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DownloadRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DownloadRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DownloadRequest
Returns a new instance of DownloadRequest
| 113 114 115 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 113 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#file_types ⇒ Array<String>
File types that will be returned.
Corresponds to the JSON property fileTypes
| 92 93 94 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 92 def file_types @file_types end | 
#filter_ids ⇒ Array<Fixnum>
The IDs of the specified filter type. This is used to filter entities to fetch.
At least one ID must be specified. Only one ID is allowed for the
ADVERTISER_ID filter type. For INSERTION_ORDER_ID or LINE_ITEM_ID filter types,
all IDs must be from the same Advertiser.
Corresponds to the JSON property filterIds
| 100 101 102 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 100 def filter_ids @filter_ids end | 
#filter_type ⇒ String
Filter type used to filter line items to fetch.
Corresponds to the JSON property filterType
| 105 106 107 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 105 def filter_type @filter_type end | 
#version ⇒ String
SDF Version (column names, types, order) in which the entities will be
returned. Default to 3.
Corresponds to the JSON property version
| 111 112 113 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 111 def version @version end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 118 119 120 121 122 123 | # File 'generated/google/apis/doubleclickbidmanager_v1/classes.rb', line 118 def update!(**args) @file_types = args[:file_types] if args.key?(:file_types) @filter_ids = args[:filter_ids] if args.key?(:filter_ids) @filter_type = args[:filter_type] if args.key?(:filter_type) @version = args[:version] if args.key?(:version) end |