Class: Google::Apis::AndroidpublisherV3::MonthDay

Inherits:
Object
  • Object
show all
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

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



974
975
976
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 974

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)


967
968
969
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 967

def day
  @day
end

#monthFixnum

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

Returns:

  • (Fixnum)


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