Class: Google::Apis::DfareportingV3_2::DateRange
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DfareportingV3_2::DateRange
 
 
- 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
Represents a date range.
Instance Attribute Summary collapse
- 
  
    
      #end_date  ⇒ Date 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The end date of the date range, inclusive.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The kind of resource this is, in this case dfareporting#dateRange.
 - 
  
    
      #relative_date_range  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date range relative to the date of when the report is run.
 - 
  
    
      #start_date  ⇒ Date 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The start date of the date range, inclusive.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DateRange 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of DateRange.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DateRange
Returns a new instance of DateRange
      4662 4663 4664  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4662 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#end_date ⇒ Date
The end date of the date range, inclusive. A string of the format: "yyyy-MM-dd"
.
Corresponds to the JSON property endDate
      4644 4645 4646  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4644 def end_date @end_date end  | 
  
#kind ⇒ String
The kind of resource this is, in this case dfareporting#dateRange.
Corresponds to the JSON property kind
      4649 4650 4651  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4649 def kind @kind end  | 
  
#relative_date_range ⇒ String
The date range relative to the date of when the report is run.
Corresponds to the JSON property relativeDateRange
      4654 4655 4656  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4654 def relative_date_range @relative_date_range end  | 
  
#start_date ⇒ Date
The start date of the date range, inclusive. A string of the format: "yyyy-MM-
dd".
Corresponds to the JSON property startDate
      4660 4661 4662  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4660 def start_date @start_date end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4667 4668 4669 4670 4671 4672  | 
    
      # File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 4667 def update!(**args) @end_date = args[:end_date] if args.key?(:end_date) @kind = args[:kind] if args.key?(:kind) @relative_date_range = args[:relative_date_range] if args.key?(:relative_date_range) @start_date = args[:start_date] if args.key?(:start_date) end  |