/** * 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 { ParentId } from './parent-id'; /** * * @export * @interface ConditionSetUpdate */ export interface ConditionSetUpdate { /** * A descriptive name for the set, i.e: \'US based employees\' or \'Users behind VPN\' * @type {string} * @memberof ConditionSetUpdate */ name?: string; /** * an optional longer description of the set * @type {string} * @memberof ConditionSetUpdate */ description?: string; /** * a boolean expression that consists of multiple conditions, with and/or logic. * @type {object} * @memberof ConditionSetUpdate */ conditions?: object; /** * * @type {ParentId} * @memberof ConditionSetUpdate */ parent_id?: ParentId; }