wallee
Version:
TypeScript/JavaScript client for wallee
20 lines (19 loc) • 539 B
TypeScript
import { InvoiceReimbursement } from "./InvoiceReimbursement";
declare class InvoiceReimbursementWithRefundReference extends InvoiceReimbursement {
/**
*
*/
'refundMerchantReference'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { InvoiceReimbursementWithRefundReference };