wallee
Version:
TypeScript/JavaScript client for wallee
53 lines (52 loc) • 1.13 kB
TypeScript
declare class PaymentProcessor {
/**
* The name of the company to which the processor belongs.
*/
'companyName'?: {
[]: string;
};
/**
* The localized description of the object.
*/
'description'?: {
[]: string;
};
/**
* Where the processor's headquarters are located.
*/
'headquartersLocation'?: {
[]: string;
};
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The path to the logo image of the processor.
*/
'logoPath'?: string;
/**
* The localized name of the object.
*/
'name'?: {
[]: string;
};
/**
* The name of the processor's product.
*/
'productName'?: {
[]: string;
};
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { PaymentProcessor };