/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetGatewayErrorResponse } from './getGatewayErrorResponse'; /** The Transaction Gateway Response */ export interface GetGatewayResponseResponse { /** The error code */ code?: string | null; /** The gateway response errors list */ errors?: GetGatewayErrorResponse[] | null; } export declare const getGatewayResponseResponseSchema: Schema;