@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
14 lines • 359 B
TypeScript
/** Robot */
export interface Robot {
/** The criticity of this robot */
criticity: string;
/** Description of this robot */
description?: string;
/** Is this robot enabled */
enabled: boolean;
/** The name of this robot */
name: string;
/** The type of this robot */
type: string;
}
//# sourceMappingURL=Robot.d.ts.map