17 lines
294 B
TypeScript
17 lines
294 B
TypeScript
import { InputType } from '@nestjs/graphql';
|
|
import { IsOptional, IsString, IsUUID } from 'class-validator';
|
|
|
|
@InputType()
|
|
export class CheckoutInput {
|
|
@IsUUID()
|
|
pipelineId: string;
|
|
|
|
@IsString()
|
|
@IsOptional()
|
|
branch?: string;
|
|
|
|
@IsString()
|
|
@IsOptional()
|
|
commitNumber?: string;
|
|
}
|