UNPKG

@thlmenezes/sdk-js

Version:

Devopness API JS/TS SDK - Painless essential DevOps to everyone

89 lines (88 loc) 2.02 kB
/** * devopness API * Devopness API - Painless essential DevOps to everyone * * The version of the OpenAPI document: latest * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { EnvironmentRelation } from './environment-relation'; import { RoleRelation } from './role-relation'; import { TeamRelation } from './team-relation'; import { UserRelation } from './user-relation'; /** * * @export * @interface Project */ export interface Project { /** * The Id of the project * @type {number} * @memberof Project */ id: number; /** * The id of the user that own the project * @type {number} * @memberof Project */ user_id: number; /** * The project\'s name * @type {string} * @memberof Project */ name: string; /** * A URL path to the project\'s logo image * @type {string} * @memberof Project */ logo_url: string | null; /** * The list of the operating system users found in all the servers linked to a project * @type {Array<object>} * @memberof Project */ os_users: Array<object>; /** * * @type {UserRelation} * @memberof Project */ created_by_user: UserRelation; /** * * @type {Array<EnvironmentRelation>} * @memberof Project */ environments: Array<EnvironmentRelation>; /** * * @type {Array<TeamRelation>} * @memberof Project */ teams: Array<TeamRelation>; /** * * @type {Array<RoleRelation>} * @memberof Project */ roles: Array<RoleRelation>; /** * The date and time when the record was created * @type {string} * @memberof Project */ created_at: string; /** * The date and time when the record was last updated * @type {string} * @memberof Project */ updated_at: string; }