UNPKG

wallee

Version:
43 lines (42 loc) 919 B
declare class PaymentMethodBrand { /** * The localized description of the object. */ 'description'?: { [key: string]: 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'?: { [key: string]: 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 };