Class: Google::Apis::YoutubePartnerV1::Date

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

Instance Method Summary collapse

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

#dayFixnum

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

Returns:

  • (Fixnum)


1551
1552
1553
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1551

def day
  @day
end

#monthFixnum

The date's month. The value should be an integer between 1 and 12. Corresponds to the JSON property month

Returns:

  • (Fixnum)


1556
1557
1558
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1556

def month
  @month
end

#yearFixnum

The date's year in the Gregorian Calendar. Assumed to be A.D. Corresponds to the JSON property year

Returns:

  • (Fixnum)


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