OrderNotifyRequest.php
354 字节
<?php
namespace Lackoxygen\TopWarehouse\Request\Order;
use Lackoxygen\TopWarehouse\Request\Request;
class OrderNotifyRequest extends Request
{
public $order_id;
public $status;
public $notes;
protected function initialize(): void
{
$this->contentType = 'application/json';
$this->method = 'POST';
}
}