Interface RelationUpdateBeta

Sidepane Fact Sheet Relation Update

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

Properties

Properties

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

Type declaration

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

Generated using TypeDoc