/** * 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. */ import type { Input } from './Input.js'; import type { DecisionLogCreate } from './DecisionLogCreate.js'; /** * * @export * @interface DecisionLogDetailRead */ export interface DecisionLogDetailRead { /** * * @type {string} * @memberof DecisionLogDetailRead */ id?: string; /** * * @type {string} * @memberof DecisionLogDetailRead */ user?: string; /** * * @type {string} * @memberof DecisionLogDetailRead */ resource?: string; /** * * @type {string} * @memberof DecisionLogDetailRead */ tenant?: string; /** * * @type {string} * @memberof DecisionLogDetailRead */ action?: string; /** * * @type {Input} * @memberof DecisionLogDetailRead */ input?: Input; /** * * @type {{ [key: string]: any; }} * @memberof DecisionLogDetailRead */ context?: { [key: string]: any; }; /** * * @type {{ [key: string]: any; }} * @memberof DecisionLogDetailRead */ result?: { [key: string]: any; }; /** * * @type {boolean} * @memberof DecisionLogDetailRead */ decision?: boolean; /** * * @type {DecisionLogCreate} * @memberof DecisionLogDetailRead */ rawData?: DecisionLogCreate; /** * * @type {string} * @memberof DecisionLogDetailRead */ timestamp?: string; /** * * @type {string} * @memberof DecisionLogDetailRead */ organizationId?: string; /** * * @type {string} * @memberof DecisionLogDetailRead */ projectId?: string; /** * * @type {string} * @memberof DecisionLogDetailRead */ environmentId?: string; } /** * Check if a given object implements the DecisionLogDetailRead interface. */ export declare function instanceOfDecisionLogDetailRead(value: object): value is DecisionLogDetailRead; export declare function DecisionLogDetailReadFromJSON(json: any): DecisionLogDetailRead; export declare function DecisionLogDetailReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): DecisionLogDetailRead; export declare function DecisionLogDetailReadToJSON(json: any): DecisionLogDetailRead; export declare function DecisionLogDetailReadToJSONTyped(value?: DecisionLogDetailRead | null, ignoreDiscriminator?: boolean): any;