care.emr.resources.inventory.supply_delivery.delivery_order module

class SupplyDeliveryOrderStatusOptions(*values)

Bases: str, Enum

draft = 'draft'
pending = 'pending'
in_progress = 'in_progress'
completed = 'completed'
abandoned = 'abandoned'
entered_in_error = 'entered_in_error'
class BaseSupplyDeliveryOrderSpec(*, meta: dict = {}, id: Annotated[UUID, UuidVersion(uuid_version=4)] | None = None, status: SupplyDeliveryOrderStatusOptions, name: str, note: str | None = None, extensions: dict)

Bases: EMRResource

id: Annotated[UUID, UuidVersion(uuid_version=4)] | None
status: SupplyDeliveryOrderStatusOptions
name: str
note: str | None
extensions: dict
classmethod validate_extensions(v)
model_config: ClassVar[ConfigDict] = {}

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

class SupplyDeliveryOrderWriteSpec(*, meta: dict = {}, id: Annotated[UUID, UuidVersion(uuid_version=4)] | None = None, status: SupplyDeliveryOrderStatusOptions, name: str, note: str | None = None, extensions: dict, supplier: Annotated[UUID, UuidVersion(uuid_version=4)] | None = None, origin: Annotated[UUID, UuidVersion(uuid_version=4)] | None = None, destination: Annotated[UUID, UuidVersion(uuid_version=4)])

Bases: BaseSupplyDeliveryOrderSpec

supplier: Annotated[UUID, UuidVersion(uuid_version=4)] | None
origin: Annotated[UUID, UuidVersion(uuid_version=4)] | None
destination: Annotated[UUID, UuidVersion(uuid_version=4)]
perform_extra_deserialization(is_update, obj)
model_config: ClassVar[ConfigDict] = {}

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

class SupplyDeliveryOrderReadSpec(*, meta: dict = {}, id: Annotated[UUID, UuidVersion(uuid_version=4)] | None = None, status: SupplyDeliveryOrderStatusOptions, name: str, note: str | None = None, extensions: dict, origin: dict | None = None, destination: dict, supplier: dict | None = None, tags: list[dict] = [])

Bases: BaseSupplyDeliveryOrderSpec

origin: dict | None
destination: dict
supplier: dict | None
tags: list[dict]
classmethod perform_extra_serialization(mapping, obj)
model_config: ClassVar[ConfigDict] = {}

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].