/** * PagarmeApiSDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { GetCustomerResponse } from './getCustomerResponse'; /** Checkout Payment Settings Response */ export interface GetCheckoutPaymentSettingsResponse { /** Success Url */ successUrl?: string | null; /** Payment Url */ paymentUrl?: string | null; /** Accepted Payment Methods */ acceptedPaymentMethods?: string[] | null; /** Status */ status?: string | null; /** Customer */ customer?: GetCustomerResponse | null; /** Payment amount */ amount?: number | null; /** Default Payment Method */ defaultPaymentMethod?: string | null; /** Gateway Affiliation Id */ gatewayAffiliationId?: string | null; } export declare const getCheckoutPaymentSettingsResponseSchema: Schema;