Class: Google::Apis::AndroidpublisherV3::MonthDay
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::MonthDay
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/representations.rb
Instance Attribute Summary collapse
-
#day ⇒ Fixnum
Day of a month, value in [1, 31] range.
-
#month ⇒ Fixnum
Month of a year.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MonthDay
constructor
A new instance of MonthDay.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MonthDay
Returns a new instance of MonthDay
974 975 976 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 974 def initialize(**args) update!(**args) end |
Instance Attribute Details
#day ⇒ Fixnum
Day of a month, value in [1, 31] range. Valid range depends on the specified
month.
Corresponds to the JSON property day
967 968 969 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 967 def day @day end |
#month ⇒ Fixnum
Month of a year. e.g. 1 = JAN, 2 = FEB etc.
Corresponds to the JSON property month
972 973 974 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 972 def month @month end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
979 980 981 982 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 979 def update!(**args) @day = args[:day] if args.key?(:day) @month = args[:month] if args.key?(:month) end |