Optional viewer: AtlasViewerProtected _attrProtected attributeOptional description?: stringDescription
A description of your project.
Optional is_Is Public
Is the project public?
false
Optional is_Is Public To Org
Is the project public to the organization?
Optional modality?: null | stringModality
The data modality of this project. DEPRECATED.
Organization Id
Unique organization id
Optional privacy?: null | "public" | "with_link" | "private" | "restricted"Privacy
The privacy of the project
Project Name
The name of the project
Optional slug?: null | stringSlug
The desired url slug for the project
Optional unique_Unique Id Field
DEPRECATED: The unique ID field of the project.
Protected endpointFetches basic information about the object.
By default, this caches the call; if you want to
bust the cache, pass true as the first argument.
This immediately.
Whether to refetch the relevant information
A promise that resolves to the organization info.
Loads the information associated with the class, removing any existing caches.
a LoadedObject instance of the class that is guaranteed to
have its attr slot populated with appropriate information.
const loadedProject = await (new AtlasProject(projectId)).withLoadedAttributes()
// OR, in cases where we want to do stuff immediately with the project and ensure
// that later calls there don't double-fetch information.
const project = new AtlasProject(projectId)
// do stuff right away.
const projection = new AtlasProjection(projectionId, {project: project})
const loadedProjection = await projection.withLoadedAttributes()
// do stuff with loadedProjection
returns the object's information; this may be undefined