wallee
Version:
TypeScript/JavaScript client for wallee
43 lines (42 loc) • 919 B
TypeScript
declare class PaymentMethodBrand {
/**
* The localized description of the object.
*/
'description'?: {
[]: string;
};
/**
*
*/
'grayImagePath'?: string;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The path to the payment brand's image which is displayed to the customer.
*/
'imagePath'?: string;
/**
* The localized name of the object.
*/
'name'?: {
[]: string;
};
/**
* The payment method that the brand belongs to.
*/
'paymentMethod'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { PaymentMethodBrand };