re-uploading work
This commit is contained in:
38
web/src/api/models/EventSummary.ts
Normal file
38
web/src/api/models/EventSummary.ts
Normal file
@@ -0,0 +1,38 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { i64 } from './i64';
|
||||
/**
|
||||
* Summary event response for list views
|
||||
*/
|
||||
export type EventSummary = {
|
||||
/**
|
||||
* Creation timestamp
|
||||
*/
|
||||
created: string;
|
||||
/**
|
||||
* Whether event has payload data
|
||||
*/
|
||||
has_payload: boolean;
|
||||
/**
|
||||
* Event ID
|
||||
*/
|
||||
id: i64;
|
||||
rule?: (null | i64);
|
||||
/**
|
||||
* Rule reference (if event was generated by a specific rule)
|
||||
*/
|
||||
rule_ref?: string | null;
|
||||
source?: (null | i64);
|
||||
/**
|
||||
* Source reference
|
||||
*/
|
||||
source_ref?: string | null;
|
||||
trigger?: (null | i64);
|
||||
/**
|
||||
* Trigger reference
|
||||
*/
|
||||
trigger_ref: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user