@shopify/shopify-api
Version:
Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks
34 lines (31 loc) • 1.16 kB
JavaScript
import { Base } from '../../base.mjs';
import { ApiVersion } from '../../../lib/types.mjs';
/***********************************************************************************************************************
* This file is auto-generated. If you have an issue, please create a GitHub issue. *
***********************************************************************************************************************/
class Currency extends Base {
static apiVersion = ApiVersion.January24;
static hasOne = {};
static hasMany = {};
static paths = [
{ "http_method": "get", "operation": "get", "ids": [], "path": "currencies.json" }
];
static resourceNames = [
{
"singular": "currency",
"plural": "currencies"
}
];
static async all({ session, ...otherArgs }) {
const response = await this.baseFind({
session: session,
urlIds: {},
params: { ...otherArgs },
});
return response;
}
currency;
rate_updated_at;
}
export { Currency };
//# sourceMappingURL=currency.mjs.map