import { PaginationLinks } from './paginationLinks';
import { PaymentMethod } from './paymentMethod';
export declare class PaymentMethodResponse {
    '_links'?: PaginationLinks;
    /**
    * Payment methods details.
    */
    'data'?: Array<PaymentMethod>;
    /**
    * Total number of items.
    */
    'itemsTotal': number;
    /**
    * Total number of pages.
    */
    'pagesTotal': number;
    /**
    * Payment method types with errors.
    */
    'typesWithErrors'?: Array<PaymentMethodResponse.TypesWithErrorsEnum>;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export declare namespace PaymentMethodResponse {
    enum TypesWithErrorsEnum {
        Afterpaytouch = "afterpaytouch",
        Alipay = "alipay",
        AlipayHk = "alipay_hk",
        Amex = "amex",
        Applepay = "applepay",
        Bcmc = "bcmc",
        Blik = "blik",
        Cartebancaire = "cartebancaire",
        Clearpay = "clearpay",
        Cup = "cup",
        Diners = "diners",
        DirectEbanking = "directEbanking",
        DirectdebitGb = "directdebit_GB",
        Discover = "discover",
        EbankingFi = "ebanking_FI",
        EftposAustralia = "eftpos_australia",
        Elo = "elo",
        Elocredit = "elocredit",
        Elodebit = "elodebit",
        Girocard = "girocard",
        Giropay = "giropay",
        Googlepay = "googlepay",
        Hiper = "hiper",
        Hipercard = "hipercard",
        Ideal = "ideal",
        InteracCard = "interac_card",
        Jcb = "jcb",
        Klarna = "klarna",
        KlarnaAccount = "klarna_account",
        KlarnaPaynow = "klarna_paynow",
        Maestro = "maestro",
        Mbway = "mbway",
        Mc = "mc",
        Mcdebit = "mcdebit",
        MealVoucherFr = "mealVoucher_FR",
        Mobilepay = "mobilepay",
        Multibanco = "multibanco",
        OnlineBankingPl = "onlineBanking_PL",
        Paypal = "paypal",
        Payshop = "payshop",
        Swish = "swish",
        Trustly = "trustly",
        Vipps = "vipps",
        Visa = "visa",
        Visadebit = "visadebit",
        Vpay = "vpay",
        Wechatpay = "wechatpay",
        WechatpayPos = "wechatpay_pos"
    }
}
