Interface SetResponseData

Response data returned from making a successful set/update call

interface SetResponseData {
    accountId: string;
    created: any;
    destroyed: {
        [key: string]: null;
    };
    newState: string;
    notDestroyed?: {
        [key: string]: {
            description: string;
            subType: string;
            type: string;
        };
    };
    oldState: string;
    updated: {
        [key: string]: null;
    };
}

Properties

accountId: string
created: any
destroyed: {
    [key: string]: null;
}

Type declaration

  • [key: string]: null
newState: string
notDestroyed?: {
    [key: string]: {
        description: string;
        subType: string;
        type: string;
    };
}

Type declaration

  • [key: string]: {
        description: string;
        subType: string;
        type: string;
    }
    • description: string
    • subType: string
    • type: string
oldState: string
updated: {
    [key: string]: null;
}

Type declaration

  • [key: string]: null