File

src/models/events/message/simple-property.ts

Description

Message's convey these simplified properties which are id-value pairs

Index

Properties

Properties

id
id: string
Type : string

ID of the field

value
value: ISimplePropertyValueType | Array
Type : ISimplePropertyValueType | Array

Value of the field

export type ISimplePropertyValueType = string | number | boolean;

/**
 * Message's convey these simplified properties which are id-value pairs
 */
export interface ISimpleProperty {
    /** ID of the field */
    id: string;
    /** Value of the field */
    value: ISimplePropertyValueType | Array<ISimplePropertyValueType>;
}

/**
 * List of simple properties in a message
 */
export type ISimpleProperties = Array<ISimpleProperty>;

results matching ""

    No results matching ""