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