UNPKG

@veltdev/types

Version:

Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.

38 lines (37 loc) 772 B
import { DocumentMetadata } from "./document-metadata.model"; import { PageInfo } from "./page-info.model"; import { User } from "./user.data.model"; export declare class UserRequest { /** * Unique id of the feedback */ id?: string; /** * apiKey of the client */ apiKey?: string | null; /** * Email id of the feedback giver */ emailId?: string; /** * Message given by the user */ message?: string; /** * User who added the feedback */ from?: User | null; /** * Date when the feedback was added */ lastUpdated?: any; /** * Document metadata */ metadata?: DocumentMetadata | null; /** * User's page info */ pageInfo?: PageInfo; }