Class: Google::Apis::YoutubePartnerV1::Date
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::Date
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_partner_v1/classes.rb,
generated/google/apis/youtube_partner_v1/representations.rb,
generated/google/apis/youtube_partner_v1/representations.rb
Instance Attribute Summary collapse
-
#day ⇒ Fixnum
The date's day.
-
#month ⇒ Fixnum
The date's month.
-
#year ⇒ Fixnum
The date's year in the Gregorian Calendar.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Date
constructor
A new instance of Date.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Date
Returns a new instance of Date.
1563 1564 1565 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1563 def initialize(**args) update!(**args) end |
Instance Attribute Details
#day ⇒ Fixnum
The date's day. The value should be an integer between 1 and 31. Note that
some day-month combinations are not valid.
Corresponds to the JSON property day
1551 1552 1553 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1551 def day @day end |
#month ⇒ Fixnum
The date's month. The value should be an integer between 1 and 12.
Corresponds to the JSON property month
1556 1557 1558 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1556 def month @month end |
#year ⇒ Fixnum
The date's year in the Gregorian Calendar. Assumed to be A.D.
Corresponds to the JSON property year
1561 1562 1563 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1561 def year @year end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1568 1569 1570 1571 1572 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1568 def update!(**args) @day = args[:day] if args.key?(:day) @month = args[:month] if args.key?(:month) @year = args[:year] if args.key?(:year) end |