care.emr.resources.inventory.supply_delivery.delivery_order module¶
- class SupplyDeliveryOrderStatusOptions(*values)¶
-
- 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- 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- 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- classmethod perform_extra_serialization(mapping, obj)¶
- model_config: ClassVar[ConfigDict] = {}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].