idea-toolbox
Version:
IDEA's utility functions
27 lines (26 loc) • 581 B
TypeScript
import { Resource } from './resource.model';
import { epochDateTime } from './epoch';
/**
* Table: `idea_teams`.
*/
export declare class Team extends Resource {
/**
* The id of the team
*/
teamId: string;
/**
* The team name.
*/
name: string;
/**
* Timestamp of creation.
*/
createdAt: epochDateTime;
/**
* The list of projects (codes) in which the team is currently active.
*/
activeInProjects: string[];
load(x: any): void;
safeLoad(newData: any, safeData: any): void;
validate(): string[];
}