Class to hold data on user permissions for playlists.

PlaylistUserPermissions

interface PlaylistUserPermissions {
    CanEdit?: boolean;
    UserId?: string;
}

Properties

Properties

CanEdit?: boolean

Gets or sets a value indicating whether the user has edit permissions.

PlaylistUserPermissions

UserId?: string

Gets or sets the user id.

PlaylistUserPermissions