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 = {}, extensions: dict = {}, id: Annotated[UUID, UuidVersion(uuid_version=4)] | None = None, status: SupplyDeliveryOrderStatusOptions, name: str, note: str | None = None)

Bases: ExtensionValidator, EMRResource

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

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

class SupplyDeliveryOrderWriteSpec(*, meta: dict = {}, extensions: dict = {}, id: Annotated[UUID, UuidVersion(uuid_version=4)] | None = None, status: SupplyDeliveryOrderStatusOptions, name: str, note: str | None = None, 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 = {}, extensions: dict = {}, id: Annotated[UUID, UuidVersion(uuid_version=4)] | None = None, status: SupplyDeliveryOrderStatusOptions, name: str, note: str | None = None, 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].