UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

45 lines (44 loc) 1.06 kB
export declare class AlmaDetails { /** * The checkout attempt identifier. */ "checkoutAttemptId"?: string; /** * **Alma payment request fee type** */ "feeType"?: AlmaDetails.FeeTypeEnum; /** * Base64-encoded JSON object containing SDK related parameters required by the SDK */ "sdkData"?: string; /** * The payment method type. */ "type"?: AlmaDetails.TypeEnum; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare namespace AlmaDetails { enum FeeTypeEnum { MerchantPays = "merchantPays", ShopperPays = "shopperPays" } enum TypeEnum { Alma = "alma" } }