/** * 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 DecisionLogRead */ export interface DecisionLogRead { /** * * @type {string} * @memberof DecisionLogRead */ id?: string; /** * * @type {string} * @memberof DecisionLogRead */ user?: string; /** * * @type {string} * @memberof DecisionLogRead */ resource?: string; /** * * @type {string} * @memberof DecisionLogRead */ resourceInstance?: string; /** * * @type {string} * @memberof DecisionLogRead */ tenant?: string; /** * * @type {string} * @memberof DecisionLogRead */ action?: string; /** * * @type {boolean} * @memberof DecisionLogRead */ decision?: boolean; /** * * @type {string} * @memberof DecisionLogRead */ timestamp?: string; /** * * @type {string} * @memberof DecisionLogRead */ organizationId?: string; /** * * @type {string} * @memberof DecisionLogRead */ projectId?: string; /** * * @type {string} * @memberof DecisionLogRead */ environmentId?: string; } /** * Check if a given object implements the DecisionLogRead interface. */ export declare function instanceOfDecisionLogRead(value: object): value is DecisionLogRead; export declare function DecisionLogReadFromJSON(json: any): DecisionLogRead; export declare function DecisionLogReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): DecisionLogRead; export declare function DecisionLogReadToJSON(json: any): DecisionLogRead; export declare function DecisionLogReadToJSONTyped(value?: DecisionLogRead | null, ignoreDiscriminator?: boolean): any;