class Google::Apis::SheetsV4::DataSourceRefreshMonthlySchedule
A monthly schedule for data to refresh on specific days in the month in a given time interval.
Attributes
days_of_month[RW]
Days of the month to refresh. Only 1-28 are supported, mapping to the 1st to the 28th day. At lesat one day must be specified. Corresponds to the JSON property `daysOfMonth` @return [Array<Fixnum>]
start_time[RW]
Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`. Corresponds to the JSON property `startTime` @return [Google::Apis::SheetsV4::TimeOfDay]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 4059 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/sheets_v4/classes.rb, line 4064 def update!(**args) @days_of_month = args[:days_of_month] if args.key?(:days_of_month) @start_time = args[:start_time] if args.key?(:start_time) end