wallee
Version:
TypeScript/JavaScript client for wallee
51 lines (50 loc) • 1.31 kB
TypeScript
import { BankTransaction } from "./BankTransaction";
import { LineItem } from "./LineItem";
import { Refund } from "./Refund";
import { TransactionAwareEntity } from "./TransactionAwareEntity";
declare class RefundRecoveryBankTransaction extends TransactionAwareEntity {
/**
*
*/
'bankTransaction'?: BankTransaction;
/**
* The language that is linked to the object.
*/
'language'?: string;
/**
* The line items contain the items which could be recovered.
*/
'lineItems'?: Array<LineItem>;
/**
*
*/
'refund'?: Refund;
/**
* Specify the posting amount in the refund's currency.
*/
'refundCurrencyAmount'?: number;
/**
*
*/
'refundCurrencyValueAmount'?: number;
/**
* The ID of the space view this object is linked to.
*/
'spaceViewId'?: number;
/**
* The version is used for optimistic locking and incremented whenever the object is updated.
*/
'version'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { RefundRecoveryBankTransaction };