export type internal_notes_Note = { /** * Content is the body of the note. */ content?: string; createdAt?: string; /** * CreatorId is the ID of the internal user who created the note. * TODO(@foley): Let's remove this and use CreatedBy from Model, we'll need * to do some backward compatibility work for the platform API. */ creatorId?: string; data?: string; /** * ForeignKeyId is the ID of the client or company the note is attached to. */ entityId?: string; /** * ForeignKeyType is the kind of entity the note is attached to. */ entityType?: internal_notes_Note.entityType; id?: string; identityId?: string; object?: string; /** * PortalID is the workspace the note belongs to. */ portalId?: string; previousAttributes?: Record; ref?: string; /** * Title is the short heading of the note. */ title?: string; updatedAt?: string; }; export declare namespace internal_notes_Note { /** * ForeignKeyType is the kind of entity the note is attached to. */ enum entityType { CLIENT = "client", COMPANY = "company" } }