export declare class MasterpassDetails { /** * The checkout attempt identifier. */ "checkoutAttemptId"?: string; /** * The funding source that should be used when multiple sources are available. For Brazilian combo cards, by default the funding source is credit. To use debit, set this value to **debit**. */ "fundingSource"?: MasterpassDetails.FundingSourceEnum; /** * The Masterpass transaction ID. */ "masterpassTransactionId": string; /** * Base64-encoded JSON object containing SDK related parameters required by the SDK */ "sdkData"?: string; /** * **masterpass** */ "type"?: MasterpassDetails.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 MasterpassDetails { enum FundingSourceEnum { Credit = "credit", Debit = "debit", Prepaid = "prepaid" } enum TypeEnum { Masterpass = "masterpass" } }