Shows whether a piece of content has attachments, comments, or child pages.* Note, this doesn't actually contain the child objects.

interface ContentChildType {
    _expandable: {
        all?: string;
        attachment?: string;
        comment?: string;
        page?: string;
    };
    attachment?: {
        _links: Record<string, any>;
        value: boolean;
    };
    comment?: {
        _links: Record<string, any>;
        value: boolean;
    };
    page?: {
        _links: Record<string, any>;
        value: boolean;
    };
}

Properties

_expandable: {
    all?: string;
    attachment?: string;
    comment?: string;
    page?: string;
}

Type declaration

  • Optional all?: string
  • Optional attachment?: string
  • Optional comment?: string
  • Optional page?: string
attachment?: {
    _links: Record<string, any>;
    value: boolean;
}

Type declaration

  • _links: Record<string, any>
  • value: boolean
comment?: {
    _links: Record<string, any>;
    value: boolean;
}

Type declaration

  • _links: Record<string, any>
  • value: boolean
page?: {
    _links: Record<string, any>;
    value: boolean;
}

Type declaration

  • _links: Record<string, any>
  • value: boolean

Generated using TypeDoc v0.25.12