wallee
Version:
TypeScript/JavaScript client for wallee
50 lines (49 loc) • 1.22 kB
TypeScript
import { BankTransaction } from "./BankTransaction";
import { Transaction } from "./Transaction";
import { TransactionAwareEntity } from "./TransactionAwareEntity";
declare class ChargeBankTransaction extends TransactionAwareEntity {
/**
*
*/
'bankTransaction'?: BankTransaction;
/**
*
*/
'completion'?: number;
/**
* The language that is linked to the object.
*/
'language'?: string;
/**
* The ID of the space view this object is linked to.
*/
'spaceViewId'?: number;
/**
*
*/
'transaction'?: Transaction;
/**
* Specify the posting amount in the transaction's currency.
*/
'transactionCurrencyAmount'?: number;
/**
*
*/
'transactionCurrencyValueAmount'?: 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 { ChargeBankTransaction };