@shopify/shopify-api
Version:
Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks
42 lines (38 loc) • 1.49 kB
JavaScript
'use strict';
var base = require('../../base.js');
var types = require('../../../lib/types.js');
/***********************************************************************************************************************
* This file is auto-generated. If you have an issue, please create a GitHub issue. *
***********************************************************************************************************************/
class AssignedFulfillmentOrder extends base.Base {
static apiVersion = types.ApiVersion.January23;
static hasOne = {};
static hasMany = {};
static paths = [
{ "http_method": "get", "operation": "get", "ids": [], "path": "assigned_fulfillment_orders.json" }
];
static resourceNames = [
{
"singular": "fulfillment_order",
"plural": "fulfillment_orders"
}
];
static async all({ session, assignment_status = null, location_ids = null, ...otherArgs }) {
const response = await this.baseFind({
session: session,
urlIds: {},
params: { "assignment_status": assignment_status, "location_ids": location_ids, ...otherArgs },
});
return response;
}
assigned_location_id;
destination;
id;
line_items;
order_id;
request_status;
shop_id;
status;
}
exports.AssignedFulfillmentOrder = AssignedFulfillmentOrder;
//# sourceMappingURL=assigned_fulfillment_order.js.map