class Google::Apis::ApigeeV1::GoogleCloudApigeeV1DateRange

Date range of the data to export.

Attributes

end[RW]

Required. End date (exclusive) of the data to export in the format `yyyy-mm-dd` . The date range ends at 00:00:00 UTC on the end date- which will not be in the output. Corresponds to the JSON property `end` @return [String]

start[RW]

Required. Start date of the data to export in the format `yyyy-mm-dd`. The date range begins at 00:00:00 UTC on the start date. Corresponds to the JSON property `start` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 1938
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 1943
def update!(**args)
  @end = args[:end] if args.key?(:end)
  @start = args[:start] if args.key?(:start)
end