2021-01-21 17:31:28 +00:00
|
|
|
// License: LGPL-3.0-or-later
|
2021-01-21 22:15:24 +00:00
|
|
|
import type { Amount, HoudiniObject, IdType, HoudID } from "../common";
|
2021-01-21 17:31:28 +00:00
|
|
|
import type Nonprofit from './';
|
|
|
|
|
|
|
|
|
2021-01-21 22:15:24 +00:00
|
|
|
export interface Transaction extends HoudiniObject<HoudID> {
|
2021-01-21 17:31:28 +00:00
|
|
|
amount: Amount;
|
|
|
|
nonprofit: IdType | Nonprofit;
|
|
|
|
object: 'transaction';
|
|
|
|
}
|