/** * This file was automatically generated. DO NOT MODIFY IT BY HAND. */ export interface Scenario { /** * The scenario ID */ id?: string; /** * The scenario name */ name?: string; possibleStates?: string[]; /** * The current state of this scenario */ state?: string; [k: string]: any; }