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

Ids of all levels that the user has access to. This includes the currently active 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

HighestAccessibleLevel

Id of the highest level that the user has access to at the moment.

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

HighestAccessibleLevelDisplayName

Display name for the highest level that the user has access to at the moment.

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

MembershipsDuration

Data about memberships duration without taking into consideration pricing levels.

Declaration
[JsonProperty("membershipsDuration")]
public virtual MembershipsDuration MembershipsDuration { get; set; }
Property Value
Type Description
MembershipsDuration

MembershipsDurationAtLevels

Data about memberships duration on particular pricing levels.

Declaration
[JsonProperty("membershipsDurationAtLevels")]
public virtual IList<MembershipsDurationAtLevel> MembershipsDurationAtLevels { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<MembershipsDurationAtLevel>

Implements

IDirectResponseSchema
Back to top