/** * 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 { OPALClient } from './opalclient'; import { OpalCommon } from './opal-common'; import { PDPContext } from './pdpcontext'; import { Pdp } from './pdp'; /** * * @export * @interface RemoteConfig */ export interface RemoteConfig { /** * * @type {OpalCommon} * @memberof RemoteConfig */ opal_common?: OpalCommon; /** * * @type {OPALClient} * @memberof RemoteConfig */ opal_client: OPALClient; /** * * @type {Pdp} * @memberof RemoteConfig */ pdp?: Pdp; /** * * @type {PDPContext} * @memberof RemoteConfig */ context: PDPContext; }