interface Relation {
    _expandable?: {
        relationData?: string;
        source?: string;
        target?: string;
    } & {
        [key: string]: unknown;
    };
    _links: GenericLinks;
    name: string;
    relationData?: RelationData;
    source?:
        | null
        | UserV1
        | Content
        | Space;
    target?:
        | null
        | UserV1
        | Content
        | Space;
}

Hierarchy

  • Record<string, unknown>
    • Relation

Properties

_expandable?: {
    relationData?: string;
    source?: string;
    target?: string;
} & {
    [key: string]: unknown;
}
_links: GenericLinks
name: string
relationData?: RelationData
source?:
    | null
    | UserV1
    | Content
    | Space
target?:
    | null
    | UserV1
    | Content
    | Space