UNPKG

wallee

Version:
78 lines (77 loc) 2.77 kB
import type { BankTransaction } from './BankTransaction'; import type { Refund } from './Refund'; /** * * @export * @interface RefundBankTransaction */ export interface RefundBankTransaction { /** * The ID of the space this object belongs to. * @type {number} * @memberof RefundBankTransaction */ readonly linkedSpaceId?: number; /** * The value amount represents the net monetary value of the bank transaction, recorded in the refund's currency, after applicable deductions. * @type {number} * @memberof RefundBankTransaction */ readonly refundCurrencyValueAmount?: number; /** * The posting amount represents the monetary value of the bank transaction, recorded in the refund's currency, before applying any adjustments. * @type {number} * @memberof RefundBankTransaction */ readonly refundCurrencyAmount?: number; /** * The language that is linked to the object. * @type {string} * @memberof RefundBankTransaction */ readonly language?: string; /** * A unique identifier for the object. * @type {number} * @memberof RefundBankTransaction */ readonly id?: number; /** * The ID of the space view this object is linked to. * @type {number} * @memberof RefundBankTransaction */ readonly spaceViewId?: number; /** * The payment transaction this object is linked to. * @type {number} * @memberof RefundBankTransaction */ readonly linkedTransaction?: number; /** * * @type {BankTransaction} * @memberof RefundBankTransaction */ bankTransaction?: BankTransaction; /** * The version is used for optimistic locking and incremented whenever the object is updated. * @type {number} * @memberof RefundBankTransaction */ readonly version?: number; /** * * @type {Refund} * @memberof RefundBankTransaction */ refund?: Refund; } /** * Check if a given object implements the RefundBankTransaction interface. */ export declare function instanceOfRefundBankTransaction(value: object): value is RefundBankTransaction; export declare function RefundBankTransactionFromJSON(json: any): RefundBankTransaction; export declare function RefundBankTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RefundBankTransaction; export declare function RefundBankTransactionToJSON(json: any): RefundBankTransaction; export declare function RefundBankTransactionToJSONTyped(value?: Omit<RefundBankTransaction, 'linkedSpaceId' | 'refundCurrencyValueAmount' | 'refundCurrencyAmount' | 'language' | 'id' | 'spaceViewId' | 'linkedTransaction' | 'version'> | null, ignoreDiscriminator?: boolean): any;