Interface RelationUpdateBeta

Sidepane Fact Sheet Relation Update

interface RelationUpdate {
    name: string;
    value: {
        new: undefined | {
            id: string;
            toFsId: string;
        };
        old: undefined | {
            id: string;
            toFsId: string;
        };
    };
}

Properties

Properties

name: string
value: {
    new: undefined | {
        id: string;
        toFsId: string;
    };
    old: undefined | {
        id: string;
        toFsId: string;
    };
}

Type declaration

  • new: undefined | {
        id: string;
        toFsId: string;
    }
  • old: undefined | {
        id: string;
        toFsId: string;
    }

Generated using TypeDoc