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