benchling_api_client.models.container_transfer module

class ContainerTransfer

Bases: object

__init__(destination_contents: Union[benchling_api_client.types.Unset, List[ContainerTransferDestinationContentsItem]] = attr_dict['_destination_contents'].default, destination_quantity: Union[benchling_api_client.types.Unset, ContainerQuantity] = attr_dict['_destination_quantity'].default, destination_volume: Union[benchling_api_client.types.Unset, DeprecatedContainerVolumeForInput] = attr_dict['_destination_volume'].default, source_batch_id: Union[benchling_api_client.types.Unset, str] = attr_dict['_source_batch_id'].default, source_container_id: Union[benchling_api_client.types.Unset, str] = attr_dict['_source_container_id'].default, source_entity_id: Union[benchling_api_client.types.Unset, str] = attr_dict['_source_entity_id'].default, transfer_quantity: Union[benchling_api_client.types.Unset, ContainerQuantity] = attr_dict['_transfer_quantity'].default, transfer_volume: Union[benchling_api_client.types.Unset, DeprecatedContainerVolumeForInput] = attr_dict['_transfer_volume'].default) None

Method generated by attrs for class ContainerTransfer.

property destination_contents: List[ContainerTransferDestinationContentsItem]
property destination_quantity: ContainerQuantity

Quantity of a container, well, or transfer. Supports mass, volume, and other quantities.

property destination_volume: DeprecatedContainerVolumeForInput

Desired volume for a container, well, or transfer. “volume” type keys are deprecated in API requests; use the more permissive “quantity” type key instead.

classmethod from_dict(src_dict: Dict[str, Any]) benchling_api_client.models.container_transfer.T
property source_batch_id: str

ID of the batch that will be transferred in. Must specify one of sourceEntityId, sourceBatchId, or sourceContainerId.

property source_container_id: str

ID of the container that will be transferred in. Must specify one of sourceEntityId, sourceBatchId, or sourceContainerId.

property source_entity_id: str

ID of the entity that will be transferred in. Must specify one of sourceEntityId, sourceBatchId, or sourceContainerId.

to_dict() Dict[str, Any]
property transfer_quantity: ContainerQuantity

Quantity of a container, well, or transfer. Supports mass, volume, and other quantities.

property transfer_volume: DeprecatedContainerVolumeForInput

Desired volume for a container, well, or transfer. “volume” type keys are deprecated in API requests; use the more permissive “quantity” type key instead.