@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
63 lines (62 loc) • 1.34 kB
TypeScript
/**
* 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 { ProjectRelation } from './project-relation';
import { UserRelation } from './user-relation';
/**
*
* @export
* @interface Team
*/
export interface Team {
/**
* The unique ID of the given team
* @type {number}
* @memberof Team
*/
id: number;
/**
* The name of the given team
* @type {string}
* @memberof Team
*/
name: string;
/**
* The URL to team\'s image
* @type {string}
* @memberof Team
*/
photo_url: string | null;
/**
*
* @type {ProjectRelation}
* @memberof Team
*/
project: ProjectRelation | null;
/**
* The list of users
* @type {Array<UserRelation>}
* @memberof Team
*/
users: Array<UserRelation>;
/**
* The date and time when the record was created
* @type {string}
* @memberof Team
*/
created_at: string;
/**
* The date and time when the record was last updated
* @type {string}
* @memberof Team
*/
updated_at: string;
}