@veltdev/sdk
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.
41 lines (40 loc) • 680 B
TypeScript
export declare class FolderMetadata {
folderId?: string;
/**
* Velt folder id
*/
veltFolderId?: string;
/**
* Parent folder id
*/
parentFolderId?: string;
/**
* Velt parent folder id
*/
veltParentFolderId?: string;
/**
* Created at
*/
createdAt?: number;
/**
* Last updated
*/
lastUpdated?: number;
/**
* API key
*/
apiKey?: string;
/**
* Organization id
*/
organizationId?: string;
/**
* Client organization id
*/
clientOrganizationId?: string;
/**
* Folder name
*/
folderName?: string;
[key: string]: any;
}