Source

service/entitlements/index.js

/**
 * Class that provides named access to OSDU Entitlements endpoints
 * - Not yet supported
 * - [Service Documentation]{@link https://community.opengroup.org/osdu/documentation/-/wikis/Releases/R2.0/Services/Entitlements/Tutorial}
 * - [API Documentation]{@link https://community.opengroup.org/osdu/documentation/-/wikis/Releases/R2.0/Services/Entitlements/Swagger}
 * @class
 * @category Services
 * @subcategory Entitlements
 */
class OsduEntitlementsService {
    /**
     * @constructor
     * @param {BaseOsduClient} osdu_client - An implementation of the OSDU client class to broker communication with the OSDU API
     * @param {string} data_partition - The data partition against which requests will be made
     */
    constructor(osdu_client, data_partition) {
    }
}

module.exports = OsduEntitlementsService;