UNPKG

wallee

Version:
55 lines (54 loc) 1.27 kB
declare class CustomerComment { /** * The comment's actual content. */ 'content'?: string; /** * The ID of the user the comment was created by. */ 'createdBy'?: number; /** * The date and time when the object was created. */ 'createdOn'?: Date; /** * The customer that the object belongs to. */ 'customer'?: number; /** * The ID of the user the comment was last updated by. */ 'editedBy'?: number; /** * The date and time when the comment was last updated. */ 'editedOn'?: Date; /** * A unique identifier for the object. */ 'id'?: number; /** * The ID of the space this object belongs to. */ 'linkedSpaceId'?: number; /** * Whether the comment is pinned to the top. */ 'pinned'?: boolean; /** * The version is used for optimistic locking and incremented whenever the object is updated. */ 'version'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { CustomerComment };