/** * 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 { Engine } from './engine'; import { OPALabels } from './opalabels'; import { OPAMetrics } from './opametrics'; /** * * @export * @interface RawData */ export interface RawData { /** * * @type {Engine} * @memberof RawData */ engine?: Engine; /** * * @type {string} * @memberof RawData */ decision_id: string; /** * * @type {OPALabels} * @memberof RawData */ labels: OPALabels; /** * * @type {string} * @memberof RawData */ timestamp: string; /** * * @type {string} * @memberof RawData */ path: string; /** * * @type {object} * @memberof RawData */ input: object; /** * * @type {object} * @memberof RawData */ result: object; /** * * @type {OPAMetrics} * @memberof RawData */ metrics: OPAMetrics; /** * * @type {string} * @memberof RawData */ tenant: string; /** * * @type {number} * @memberof RawData */ process_time_ms?: number; }