interface DataPolicySpace {
    _links?: SpaceLinks;
    dataPolicy?: {
        anyContentBlocked?: boolean;
    } & {
        [key: string]: unknown;
    };
    description?: SpaceDescription;
    icon?: SpaceIcon;
    id?: string;
    key?: string;
    name?: string;
}

Hierarchy

  • Record<string, unknown>
    • DataPolicySpace

Properties

_links?: SpaceLinks
dataPolicy?: {
    anyContentBlocked?: boolean;
} & {
    [key: string]: unknown;
}

Type declaration

  • OptionalanyContentBlocked?: boolean

    Whether the space contains any content blocked for (inaccessible to) the requesting client application.

description?: SpaceDescription

Contains fields for each representation type requested.

icon?: SpaceIcon

The icon of the space

id?: string

ID of the space.

key?: string

Key of the space.

name?: string

Name of the space.