UNPKG

@adyen/api-library

Version:

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

34 lines (33 loc) 1.18 kB
import { TransactionDescriptionResponseInfo } from "./transactionDescriptionResponseInfo"; export declare class DinersResponseInfo { /** * MID (Merchant ID) number. */ "midNumber"?: string; /** * Indicates whether the JCB Merchant ID is reused from a previously configured JCB payment method. */ "reuseMidNumber"?: boolean; /** * The service level (settlement type) of this payment method. Possible values: * **noContract**: Adyen holds the contract with JCB. * **gatewayContract**: JCB receives the settlement and handles disputes, then pays out to you or your sub-merchant directly. */ "serviceLevel"?: string; "transactionDescription"?: TransactionDescriptionResponseInfo | null; 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(); }