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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Date

Returns a new instance of Date.



1703
1704
1705
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1703

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)


1691
1692
1693
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1691

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)


1696
1697
1698
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1696

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)


1701
1702
1703
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1701

def year
  @year
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1708
1709
1710
1711
1712
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1708

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