/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.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. */ /** * * @export * @interface EventContext */ export interface EventContext { /** * ID of the user who triggered the event * @type {string} * @memberof EventContext */ userId?: string; /** * Event schema version for backward-compatible payload parsing * @type {string} * @memberof EventContext */ version?: string; } export declare function EventContextFromJSON(json: any): EventContext; export declare function EventContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventContext; export declare function EventContextToJSON(value?: EventContext | null): any;