re-uploading work
This commit is contained in:
39
web/src/api/models/EnforcementSummary.ts
Normal file
39
web/src/api/models/EnforcementSummary.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { EnforcementCondition } from './EnforcementCondition';
|
||||
import type { EnforcementStatus } from './EnforcementStatus';
|
||||
import type { i64 } from './i64';
|
||||
/**
|
||||
* Summary enforcement response for list views
|
||||
*/
|
||||
export type EnforcementSummary = {
|
||||
/**
|
||||
* Enforcement condition
|
||||
*/
|
||||
condition: EnforcementCondition;
|
||||
/**
|
||||
* Creation timestamp
|
||||
*/
|
||||
created: string;
|
||||
event?: (null | i64);
|
||||
/**
|
||||
* Enforcement ID
|
||||
*/
|
||||
id: i64;
|
||||
rule?: (null | i64);
|
||||
/**
|
||||
* Rule reference
|
||||
*/
|
||||
rule_ref: string;
|
||||
/**
|
||||
* Enforcement status
|
||||
*/
|
||||
status: EnforcementStatus;
|
||||
/**
|
||||
* Trigger reference
|
||||
*/
|
||||
trigger_ref: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user