Class: Google::Apis::AndroidpublisherV2::MonthDay

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidpublisher_v2/classes.rb,
generated/google/apis/androidpublisher_v2/representations.rb,
generated/google/apis/androidpublisher_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ MonthDay

Returns a new instance of MonthDay



1184
1185
1186
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1184

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dayFixnum

Day of a month, value in [1, 31] range. Valid range depends on the specified month. Corresponds to the JSON property day

Returns:

  • (Fixnum)


1177
1178
1179
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1177

def day
  @day
end

#monthFixnum

Month of a year. e.g. 1 = JAN, 2 = FEB etc. Corresponds to the JSON property month

Returns:

  • (Fixnum)


1182
1183
1184
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1182

def month
  @month
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1189
1190
1191
1192
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1189

def update!(**args)
  @day = args[:day] if args.key?(:day)
  @month = args[:month] if args.key?(:month)
end