You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: t3api/models/metrc_package.py
+1-10Lines changed: 1 addition & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -106,10 +106,8 @@ class MetrcPackage(BaseModel):
106
106
sell_by_date: Optional[datetime] =Field(default=None, description="The sell-by date of the product in the package, if applicable.", alias="sellByDate")
107
107
use_by_date: Optional[datetime] =Field(default=None, description="The use-by date of the product in the package, if applicable.", alias="useByDate")
108
108
lab_test_result_document_file_id: Optional[Union[StrictFloat, StrictInt]] =Field(default=None, description="The file ID of the lab test result document, if available.", alias="labTestResultDocumentFileId")
109
-
is_on_trip: Optional[StrictBool] =Field(default=None, description="Indicates if the package is part of an ongoing trip.", alias="isOnTrip")
110
109
is_on_retailer_delivery: Optional[StrictBool] =Field(default=None, description="Indicates if the package is on a retailer delivery.", alias="isOnRetailerDelivery")
111
110
package_for_product_destruction: Optional[StrictBool] =Field(default=None, description="Indicates if the package is intended for product destruction.", alias="packageForProductDestruction")
112
-
trip: Optional[StrictStr] =Field(default=None, description="Information about the trip associated with the package, if applicable.")
113
111
has_partial: Optional[StrictBool] =Field(default=None, description="Indicates if the package has partial status.", alias="hasPartial")
114
112
is_partial: Optional[StrictBool] =Field(default=None, description="Indicates if the package is a partial package.", alias="isPartial")
115
113
in_transit_status: Optional[StrictStr] =Field(default=None, description="The current transit status of the package.", alias="inTransitStatus")
@@ -121,7 +119,7 @@ class MetrcPackage(BaseModel):
Copy file name to clipboardExpand all lines: t3api/models/metrc_plant.py
+1-3Lines changed: 1 addition & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -49,15 +49,14 @@ class MetrcPlant(BaseModel):
49
49
patient_license_number: Optional[StrictStr] =Field(default=None, description="License number of the patient, if applicable.", alias="patientLicenseNumber")
50
50
harvest_count: Optional[StrictInt] =Field(default=None, description="Number of times the plant has been harvested.", alias="harvestCount")
51
51
is_on_hold: Optional[StrictBool] =Field(default=None, description="Indicates if the plant is on hold.", alias="isOnHold")
52
-
is_on_trip: Optional[StrictBool] =Field(default=None, description="Indicates if the plant is on a trip.", alias="isOnTrip")
53
52
planted_date: Optional[date] =Field(default=None, description="Date when the plant was planted.", alias="plantedDate")
54
53
vegetative_date: Optional[date] =Field(default=None, description="Date when the plant entered the vegetative stage.", alias="vegetativeDate")
55
54
flowering_date: Optional[date] =Field(default=None, description="Date when the plant entered the flowering stage.", alias="floweringDate")
56
55
destroyed_date: Optional[date] =Field(default=None, description="Date when the plant was destroyed, if applicable.", alias="destroyedDate")
57
56
destroyed_note: Optional[StrictStr] =Field(default=None, description="Note about the destruction of the plant, if applicable.", alias="destroyedNote")
58
57
destroyed_by_user_name: Optional[StrictStr] =Field(default=None, description="Username of the person who destroyed the plant, if applicable.", alias="destroyedByUserName")
59
58
last_modified: Optional[datetime] =Field(default=None, description="The last time the plant record was modified.", alias="lastModified")
0 commit comments