orb-billing
Version:
The official TypeScript library for the Orb API
20 lines • 835 B
JavaScript
;
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
Object.defineProperty(exports, "__esModule", { value: true });
exports.TopLevel = void 0;
const resource_1 = require("../resource.js");
class TopLevel extends resource_1.APIResource {
/**
* This endpoint allows you to test your connection to the Orb API and check the
* validity of your API key, passed in the Authorization header. This is
* particularly useful for checking that your environment is set up properly, and
* is a great choice for connectors and integrations.
*
* This API does not have any side-effects or return any Orb resources.
*/
ping(options) {
return this._client.get('/ping', options);
}
}
exports.TopLevel = TopLevel;
//# sourceMappingURL=top-level.js.map