/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.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 type { RuleElementPropertyDto } from './RuleElementPropertyDto'; /** * * @export * @interface RuleElementDto */ export interface RuleElementDto { /** * Describes the action or trigger type. * @type {string} * @memberof RuleElementDto */ description: string; /** * The label for the action or trigger type. * @type {string} * @memberof RuleElementDto */ display: string; /** * Optional title. * @type {string} * @memberof RuleElementDto */ title?: string | null; /** * The color for the icon. * @type {string} * @memberof RuleElementDto */ iconColor?: string | null; /** * The image for the icon. * @type {string} * @memberof RuleElementDto */ iconImage?: string | null; /** * The optional link to the product that is integrated. * @type {string} * @memberof RuleElementDto */ readMore?: string | null; /** * The properties. * @type {Array} * @memberof RuleElementDto */ properties: Array; } /** * Check if a given object implements the RuleElementDto interface. */ export declare function instanceOfRuleElementDto(value: any): value is RuleElementDto; export declare function RuleElementDtoFromJSON(json: any): RuleElementDto; export declare function RuleElementDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): RuleElementDto; export declare function RuleElementDtoToJSON(value?: RuleElementDto | null, _ignoreDiscriminator?: boolean): any;