/** * 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 { PDPInfo } from './pdpinfo'; import { PDPOPAInfo } from './pdpopainfo'; /** * * @export * @interface PDPState */ export interface PDPState { /** * * @type {number} * @memberof PDPState */ api_version: number; /** * * @type {PDPInfo} * @memberof PDPState */ pdp?: PDPInfo; /** * * @type {PDPOPAInfo} * @memberof PDPState */ opa?: PDPOPAInfo; /** * * @type {string} * @memberof PDPState */ current_policy_hash?: string; /** * * @type {number} * @memberof PDPState */ most_recent_data?: number; /** * * @type {Array} * @memberof PDPState */ seen_sdks?: Array; }