@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.
32 lines (31 loc) • 681 B
TypeScript
import { DocumentMetadata } from "./document-metadata.model";
import { PageInfo } from "./page-info.model";
import { User } from "./user.data.model";
export declare class OrganizationMetadata {
/**
* Unique organization id generated from client organization id
*/
organizationId?: string;
/**
* API key
*/
apiKey?: string;
/**
* Document id provided by client
*/
clientOrganizationId?: string | number;
/**
* Page metadata
*/
pageInfo?: PageInfo;
/**
*
*/
documents?: {
[documentId: number]: DocumentMetadata;
};
/**
* Organization creator
*/
creator?: User;
}