@@ -1,12 +1,19 @@
|
||||
import { IsNotEmpty, IsObject } from "class-validator";
|
||||
import { RunnerTeam } from '../entities/RunnerTeam';
|
||||
import { ResponseObjectType } from '../enums/ResponseObjectType';
|
||||
import { IResponse } from './IResponse';
|
||||
import { ResponseRunnerGroup } from './ResponseRunnerGroup';
|
||||
import { ResponseRunnerOrganization } from './ResponseRunnerOrganization';
|
||||
|
||||
/**
|
||||
* Defines the runnerTeam response.
|
||||
*/
|
||||
export class ResponseRunnerTeam extends ResponseRunnerGroup {
|
||||
export class ResponseRunnerTeam extends ResponseRunnerGroup implements IResponse {
|
||||
/**
|
||||
* The responseType.
|
||||
* This contains the type of class/entity this response contains.
|
||||
*/
|
||||
responseType: ResponseObjectType = ResponseObjectType.RUNNERTEAM;
|
||||
|
||||
/**
|
||||
* The runnerTeam's parent group (organization).
|
||||
|
||||
Reference in New Issue
Block a user