File size: 199 Bytes
a271c58
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { IsDefined, IsString } from 'class-validator';

export class IntegrationFunctionDto {
  @IsString()
  @IsDefined()
  name: string;

  @IsString()
  @IsDefined()
  id: string;

  data: any;
}