wallee
Version:
TypeScript/JavaScript client for wallee
50 lines (49 loc) • 1.18 kB
TypeScript
import { DataCollectionType } from "./DataCollectionType";
declare class PaymentMethod {
/**
* The data collection types that are supported by the payment method.
*/
'dataCollectionTypes'?: Array<DataCollectionType>;
/**
* The localized description of the object.
*/
'description'?: {
[]: string;
};
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The path to the payment method's image which is displayed to the customer.
*/
'imagePath'?: string;
/**
*
*/
'merchantDescription'?: {
[]: string;
};
/**
* The localized name of the object.
*/
'name'?: {
[]: string;
};
/**
* The currencies that are supported by the payment method.
*/
'supportedCurrencies'?: Array<string>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { PaymentMethod };