Show / Hide Table of Contents

Class MembershipsDetails

Inheritance
System.Object
MembershipsDetails
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.YouTube.v3.Data
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class MembershipsDetails : IDirectResponseSchema

Properties

AccessibleLevels

All levels that the user has access to. This includes the purchased level and all other levels that are included because of a higher purchase.

Declaration
[JsonProperty("accessibleLevels")]
public virtual IList<string> AccessibleLevels { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

MemberSince

The date and time when the user became a continuous member across all levels.

Declaration
[JsonProperty("memberSince")]
public virtual string MemberSince { get; set; }
Property Value
Type Description
System.String

MemberSinceCurrentLevel

The date and time when the user started to continuously have access to the currently highest level.

Declaration
[JsonProperty("memberSinceCurrentLevel")]
public virtual string MemberSinceCurrentLevel { get; set; }
Property Value
Type Description
System.String

MemberTotalDuration

The cumulative time the user has been a member across all levels in complete months (the time is rounded down to the nearest integer).

Declaration
[JsonProperty("memberTotalDuration")]
public virtual int? MemberTotalDuration { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MemberTotalDurationCurrentLevel

The cumulative time the user has had access to the currently highest level in complete months (the time is rounded down to the nearest integer).

Declaration
[JsonProperty("memberTotalDurationCurrentLevel")]
public virtual int? MemberTotalDurationCurrentLevel { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PurchasedLevel

The highest level the user has access to at the moment.

Declaration
[JsonProperty("purchasedLevel")]
public virtual string PurchasedLevel { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top