postio / libraries /nestjs-libraries /src /dtos /integrations /integration.function.dto.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 10)
a271c58 verified
Raw
History Blame Contribute Delete
199 Bytes
import { IsDefined, IsString } from 'class-validator';
export class IntegrationFunctionDto {
@IsString()
@IsDefined()
name: string;
@IsString()
@IsDefined()
id: string;
data: any;
}