/** * Permit.io API * Authorization as a service * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { OPALHttpFetcherConfig } from './opalhttp-fetcher-config'; import { OPALUpdateCallback } from './opalupdate-callback'; /** * * @export * @interface OPALClient */ export interface OPALClient { /** * * @type {Array} * @memberof OPALClient */ DATA_TOPICS: Array; /** * * @type {string} * @memberof OPALClient */ CLIENT_TOKEN: string; /** * * @type {string} * @memberof OPALClient */ SERVER_URL: string; /** * * @type {string} * @memberof OPALClient */ SERVER_WS_URL: string; /** * * @type {string} * @memberof OPALClient */ SERVER_PUBSUB_URL: string; /** * * @type {string} * @memberof OPALClient */ DEFAULT_DATA_SOURCES_CONFIG_URL: string; /** * * @type {string} * @memberof OPALClient */ SCOPE_ID?: string; /** * * @type {boolean} * @memberof OPALClient */ SHOULD_REPORT_ON_DATA_UPDATES?: boolean; /** * * @type {OPALUpdateCallback} * @memberof OPALClient */ DEFAULT_UPDATE_CALLBACKS?: OPALUpdateCallback; /** * * @type {OPALHttpFetcherConfig} * @memberof OPALClient */ DEFAULT_UPDATE_CALLBACK_CONFIG?: OPALHttpFetcherConfig; }