import { i32, Option, Vec } from "./_commons"; export interface PageCheckError { /** * Id of the Check * Renamed to check_id in metroplex */ checkId: i32; /** * Check Version * Renamed to version in metroplex */ version?: Option; /** * Id of the Trigger * Renamed to trigger_id in metroplex */ triggerId?: Option; /** * Id of the Assertion * Renamed to assertion_id in metroplex */ assertionId?: Option; /** Specific check logs */ log: Vec; }