interface ContentRestriction {
    _expandable: {
        content?: string;
        restrictions?: string;
    };
    _links: GenericLinks;
    content?: Models.Content;
    operation: string;
    restrictions?: {
        _expandable?: {
            group?: string;
            user?: string;
        };
        group?: Models.GroupArray;
        user?: Models.UserArray;
    };
}

Properties

_expandable: {
    content?: string;
    restrictions?: string;
}

Type declaration

  • Optional content?: string
  • Optional restrictions?: string
_links: GenericLinks
content?: Models.Content
operation: string
restrictions?: {
    _expandable?: {
        group?: string;
        user?: string;
    };
    group?: Models.GroupArray;
    user?: Models.UserArray;
}

Type declaration

  • Optional _expandable?: {
        group?: string;
        user?: string;
    }
    • Optional group?: string
    • Optional user?: string
  • Optional group?: Models.GroupArray
  • Optional user?: Models.UserArray

Generated using TypeDoc v0.25.12