Skip to content

Commit

Permalink
Fix shipment shcema and status (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
abdelmajied94abusuliman authored Oct 28, 2024
1 parent f3edffb commit 480a1e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public function __construct(
#[RuleValidator(['min:1', 'max:1024'])]
public ?string $amazon_reference_id,
public ?ContactInformationSchema $contact_information,
public DatesSchema $dates,
public ?DatesSchema $dates,
public ShipmentDestinationSchema $destination,
public ?FreightInformationSchema $freight_information,
public ?string $name,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ enum ShipmentStatus: string
case Receiving = 'RECEIVING';
case Shipped = 'SHIPPED';
case Working = 'WORKING';
case Unconfirmed = 'UNCONFIRMED';
}

0 comments on commit 480a1e2

Please sign in to comment.