import type { constants_ApiObject } from './constants_ApiObject'; export type marketplace_application_TaskComment = { /** * AuthorID is the identifier of the user who authored the comment. */ authorId?: string; /** * Content is the body text of the comment. */ content?: string; /** * Created is the RFC 3339 timestamp at which the object was created. */ createdAt?: string; /** * Deleted is true when the object has been deleted; present only on delete responses. */ deleted?: boolean; /** * ID is the unique identifier of the object. */ id?: string; /** * Object is the type of the object (e.g. "client", "company"). */ object?: constants_ApiObject; /** * TaskID is the identifier of the task this comment belongs to. */ taskId?: string; /** * Updated is the RFC 3339 timestamp at which the object was last updated. */ updatedAt?: string; };