Skip to content

Storage Locations

albert.resources.storage_locations

StorageLocation

Bases: BaseResource

A storage location entity. For example, a specific flammables cabinet or a storage room.

Attributes:

Name Type Description
name str

The name of the storage location.

id str | None

The Albert ID of the storage location. Set when the storage location is retrieved from Albert.

location Location

The location entity link of the storage location.

name

name: str = Field(
    alias="name", min_length=2, max_length=255
)

id

id: str | None = Field(alias='albertId', default=None)

location

location: SerializeAsEntityLink[Location] = Field(
    alias="Location"
)