UNPKG

@lineai/bluebeam-api

Version:

Your unofficial library for Bluebeam API for human and AI developers. Provides TypeScript support, entity classes, and developer-friendly features. Perfect for AI coders, construction professionals, and document management tasks. Includes comprehensive JS

25 lines (24 loc) 611 B
export type MarkupDto = { readonly Created: string; readonly DisplayName: string; readonly DocumentId: number; readonly Email: string; readonly MarkupId: number; readonly Modified: string; readonly Name: string; readonly PageNumber: number; readonly SessionId: string; readonly Type: string; }; export type StatusDto = { readonly Model: string; readonly State: string; }; export type UpdateStatusRequest = { readonly Model: string; readonly State: string; }; export type UpdateStatusResponse = { readonly Model: string; readonly State: string; };