/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface PDPConfig */ export interface PDPConfig { /** * * @type {{ [key: string]: any; }} * @memberof PDPConfig */ opalCommon?: { [key: string]: any; }; /** * * @type {{ [key: string]: any; }} * @memberof PDPConfig */ opalClient?: { [key: string]: any; }; /** * * @type {{ [key: string]: any; }} * @memberof PDPConfig */ pdp?: { [key: string]: any; }; /** * * @type {{ [key: string]: any; }} * @memberof PDPConfig */ context?: { [key: string]: any; }; } /** * Check if a given object implements the PDPConfig interface. */ export declare function instanceOfPDPConfig(value: object): value is PDPConfig; export declare function PDPConfigFromJSON(json: any): PDPConfig; export declare function PDPConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): PDPConfig; export declare function PDPConfigToJSON(json: any): PDPConfig; export declare function PDPConfigToJSONTyped(value?: PDPConfig | null, ignoreDiscriminator?: boolean): any;