@shopify/shopify-api
Version:
Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks
36 lines (32 loc) • 1.18 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 Currency extends base.Base {
static apiVersion = types.ApiVersion.April24;
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;
}
exports.Currency = Currency;
//# sourceMappingURL=currency.js.map