Create the shell of a Transaction object
This commit is contained in:
parent
69b6141652
commit
a7a4ce1f50
1 changed files with 10 additions and 0 deletions
10
docs/event_definitions/Nonprofit/Transaction.ts
Normal file
10
docs/event_definitions/Nonprofit/Transaction.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
// License: LGPL-3.0-or-later
|
||||
import type { Amount, HoudiniObject, IdType, UuidType } from "../common";
|
||||
import type Nonprofit from './';
|
||||
|
||||
|
||||
export interface Transaction extends HoudiniObject<UuidType> {
|
||||
amount: Amount;
|
||||
nonprofit: IdType | Nonprofit;
|
||||
object: 'transaction';
|
||||
}
|
Loading…
Reference in a new issue