Class: Google::Apis::YoutubeV3::MembershipsDurationAtLevel

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MembershipsDurationAtLevel

Returns a new instance of MembershipsDurationAtLevel.



5526
5527
5528
# File 'lib/google/apis/youtube_v3/classes.rb', line 5526

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

Instance Attribute Details

#levelString

Pricing level ID. Corresponds to the JSON property level

Returns:

  • (String)


5513
5514
5515
# File 'lib/google/apis/youtube_v3/classes.rb', line 5513

def level
  @level
end

#member_sinceString

The date and time when the user became a continuous member for the given level. Corresponds to the JSON property memberSince

Returns:

  • (String)


5518
5519
5520
# File 'lib/google/apis/youtube_v3/classes.rb', line 5518

def member_since
  @member_since
end

#member_total_duration_monthsFixnum

The cumulative time the user has been a member for the given level in complete months (the time is rounded down to the nearest integer). Corresponds to the JSON property memberTotalDurationMonths

Returns:

  • (Fixnum)


5524
5525
5526
# File 'lib/google/apis/youtube_v3/classes.rb', line 5524

def member_total_duration_months
  @member_total_duration_months
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5531
5532
5533
5534
5535
# File 'lib/google/apis/youtube_v3/classes.rb', line 5531

def update!(**args)
  @level = args[:level] if args.key?(:level)
  @member_since = args[:member_since] if args.key?(:member_since)
  @member_total_duration_months = args[:member_total_duration_months] if args.key?(:member_total_duration_months)
end