@prefecthq/prefect-ui-library
Version:
This library is the Vue and Typescript component library for [Prefect 2](https://github.com/PrefectHQ/prefect) and [Prefect Cloud 2](https://www.prefect.io/cloud/). _The components and utilities in this project are not meant to be used independently_.
20 lines (18 loc) • 428 B
text/typescript
export interface IAutomation {
id: string,
name: string,
description: string,
enabled: boolean,
}
export class Automation {
public id: string
public name: string
public description: string
public enabled: boolean
public constructor(automation: IAutomation) {
this.id = automation.id
this.name = automation.name
this.description = automation.description
this.enabled = automation.enabled
}
}