interface IworkspaceBuilder {
    endpoint: string;
    error: { [key: string]: Error };
    workspaceId: string;
    validateWorkspaceId(): Promise<void>;
}

Implemented by

Properties

endpoint: string
error: { [key: string]: Error }
workspaceId: string

Methods