/**
* Copyright Super iPaaS Integration LLC, an IBM Company 2024
*/
/* eslint-disable @typescript-eslint/no-explicit-any */
export type GatewayResponses = ({
    error: boolean;
    statusCode: any;
    data: any;
} | {
    error: boolean;
    message: string;
})[];