/** * 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 { Allow } from './allow'; /** * * @export * @interface AllowedResult */ export interface AllowedResult { /** * * @type {string} * @memberof AllowedResult */ query_type: AllowedResultQueryTypeEnum; /** * * @type {Allow} * @memberof AllowedResult */ allow: Allow; /** * * @type {object} * @memberof AllowedResult */ debug: object; } export declare const AllowedResultQueryTypeEnum: { readonly PermitCheck: "permit-check"; }; export type AllowedResultQueryTypeEnum = typeof AllowedResultQueryTypeEnum[keyof typeof AllowedResultQueryTypeEnum];