<?phpnamespaceMeibuyu\Micro\Shoplazza\lib;/** * Class FulfillmentOrder * @package Meibuyu\Micro\Shoplazza\lib * * @property-read Event $Event * * @method array cancel() Cancel a fulfillment order * @method array close() Marks a fulfillment order as incomplete * @method array move() Moves a fulfillment order to a new location */classFulfillmentOrderextendsAbstractShopify{protected$resourceKey='fulfillment_order';protected$customPostActions=['cancel','close','move',];}