OBJECT

ChannelRestriction

A restriction for a specific channel.

link GraphQL Schema definition

1type ChannelRestriction {
2
3# The time that the restriction is no longer active.
4endsAt: Time
5
6# Information about being exempt from the restriction.
7exemptionInfo: ChannelRestrictionExemptionInfo! @deprecated( reason: "Use resourceRestriction.exemptions instead." )
8
9# The ID of the channel restriction.
10id: ID!
11
12# The time that the restriction becomes active.
13startsAt: Time
14
15# The type of restriction on this channel.
16type: ChannelRestrictionType!
17
18}

link Required by

This element is not required by anyone