Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 2.9 KB

File metadata and controls

47 lines (38 loc) · 2.9 KB

MetrcCreateTransferInputsResponse

Properties

Name Type Description Notes
adding bool Indicates if the entity is being added. [optional]
days_wholesale_price_can_edit int Number of days the wholesale price can be edited. [optional]
default_phone_number_for_questions str Default phone number for questions. [optional]
destination_facilities List[object] List of destination facilities. [optional]
details object Additional details. [optional]
drivers List[MetrcDriver] List of drivers associated with the entity. [optional]
edit_delivery_details_only bool Indicates if only delivery details can be edited. [optional]
edit_wholesale_price_only bool Indicates if only the wholesale price can be edited. [optional]
facilities object Details of the facilities. [optional]
is_outgoing_inactive bool Indicates if the outgoing status is inactive. [optional]
items object List of items. [optional]
packages List[object] List of packages. [optional]
selected_delivery_ids List[int] List of selected delivery IDs. [optional]
selected_transfer_ids List[int] List of selected transfer IDs. [optional]
selected_transfer_template_ids object List of selected transfer template IDs. [optional]
transfer_types List[V2TransfersCreateInputsGet200ResponseTransferTypesInner] List of transfer types. [optional]
transporter_facilities List[object] List of transporter facilities. [optional]
units_of_measure List[UnitOfMeasure] List of units of measure. [optional]
vehicles List[MetrcVehicle] List of vehicles associated with the facility. [optional]

Example

from t3api.models.metrc_create_transfer_inputs_response import MetrcCreateTransferInputsResponse

# TODO update the JSON string below
json = "{}"
# create an instance of MetrcCreateTransferInputsResponse from a JSON string
metrc_create_transfer_inputs_response_instance = MetrcCreateTransferInputsResponse.from_json(json)
# print the JSON string representation of the object
print(MetrcCreateTransferInputsResponse.to_json())

# convert the object into a dict
metrc_create_transfer_inputs_response_dict = metrc_create_transfer_inputs_response_instance.to_dict()
# create an instance of MetrcCreateTransferInputsResponse from a dict
metrc_create_transfer_inputs_response_from_dict = MetrcCreateTransferInputsResponse.from_dict(metrc_create_transfer_inputs_response_dict)

[Back to Model list] [Back to API list] [Back to README]