class Google::Apis::AndroidpublisherV2::MonthDay
Attributes
day[RW]
Day of a month, value in [1, 31] range. Valid range depends on the specified month. Corresponds to the JSON property `day` @return [Fixnum]
month[RW]
Month of a year. e.g. 1 = JAN, 2 = FEB etc. Corresponds to the JSON property `month` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/androidpublisher_v2/classes.rb, line 1017 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/androidpublisher_v2/classes.rb, line 1022 def update!(**args) @day = args[:day] if args.key?(:day) @month = args[:month] if args.key?(:month) end