/** * 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 { ResourceRead } from './ResourceRead.js'; import type { Conditions } from './Conditions.js'; /** * * @export * @interface ConditionSetRead */ export interface ConditionSetRead { /** * * @type {string} * @memberof ConditionSetRead */ id?: string; /** * * @type {string} * @memberof ConditionSetRead */ key?: string; /** * * @type {string} * @memberof ConditionSetRead */ name?: string; /** * * @type {string} * @memberof ConditionSetRead */ description?: string; /** * * @type {string} * @memberof ConditionSetRead */ type?: ConditionSetReadTypeEnum; /** * * @type {boolean} * @memberof ConditionSetRead */ autogenerated?: boolean; /** * * @type {string} * @memberof ConditionSetRead */ resourceId?: string; /** * * @type {ResourceRead} * @memberof ConditionSetRead */ resource?: ResourceRead; /** * * @type {Conditions} * @memberof ConditionSetRead */ conditions?: Conditions; /** * * @type {string} * @memberof ConditionSetRead */ organizationId?: string; /** * * @type {string} * @memberof ConditionSetRead */ projectId?: string; /** * * @type {string} * @memberof ConditionSetRead */ environmentId?: string; /** * * @type {string} * @memberof ConditionSetRead */ createdAt?: string; /** * * @type {string} * @memberof ConditionSetRead */ updatedAt?: string; } /** * @export */ export declare const ConditionSetReadTypeEnum: { readonly Userset: "userset"; readonly Resourceset: "resourceset"; }; export type ConditionSetReadTypeEnum = typeof ConditionSetReadTypeEnum[keyof typeof ConditionSetReadTypeEnum]; /** * Check if a given object implements the ConditionSetRead interface. */ export declare function instanceOfConditionSetRead(value: object): value is ConditionSetRead; export declare function ConditionSetReadFromJSON(json: any): ConditionSetRead; export declare function ConditionSetReadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConditionSetRead; export declare function ConditionSetReadToJSON(json: any): ConditionSetRead; export declare function ConditionSetReadToJSONTyped(value?: ConditionSetRead | null, ignoreDiscriminator?: boolean): any;