export type internal_notes_CreateNoteHandlerInput = { /** * Content is the body of the note. Optional; a note may have a title only. */ content?: string; /** * ForeignKeyId is the ID of the client or company to attach the note to. */ entityId: string; /** * ForeignKeyType is the kind of entity to attach the note to. */ entityType: internal_notes_CreateNoteHandlerInput.entityType; /** * Title is the short heading of the note. */ title: string; }; export declare namespace internal_notes_CreateNoteHandlerInput { /** * ForeignKeyType is the kind of entity to attach the note to. */ enum entityType { CLIENT = "client", COMPANY = "company" } }