2021-02-04 17:09:02 +00:00
|
|
|
// License: LGPL-3.0-or-later
|
|
|
|
|
|
|
|
import type { HoudiniEvent, HoudiniObject, IdType } from "../common";
|
|
|
|
import type Nonprofit from '.';
|
|
|
|
|
|
|
|
export interface CustomFieldDefinition extends HoudiniObject {
|
|
|
|
deleted: boolean;
|
|
|
|
name: string;
|
|
|
|
nonprofit: IdType | Nonprofit;
|
|
|
|
object: 'custom_field_definition';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-02-05 23:28:59 +00:00
|
|
|
export type CustomFieldDefinitionCreated = HoudiniEvent<'custom_field_definition.created', CustomFieldDefinition>;
|
2021-02-04 17:09:02 +00:00
|
|
|
|
2021-02-05 23:28:59 +00:00
|
|
|
export type CustomFieldDefinitionDeleted = HoudiniEvent<'custom_field_definition.deleted', CustomFieldDefinition>;
|