/** * Model: Project * * THIS FILE HAS BEEN AUTOMATICALLY GENERATED. DO NOT EDIT. * */ /** * A Project can be identified by both the Project name, and the Project ID. */ export interface Project { /** The ID of the project. */ id: string; /** The name of the project. */ name: string; } //# sourceMappingURL=project.d.ts.map