File size: 409 Bytes
d9494a5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { Field, HideField, ObjectType } from '@nestjs/graphql';

@ObjectType('LogicFunctionLogs')
export class LogicFunctionLogsDTO {
  @Field({ description: 'Execution Logs' })
  logs: string;

  @HideField()
  applicationUniversalIdentifier?: string;

  @HideField()
  applicationId?: string;

  @HideField()
  name?: string;

  @HideField()
  id?: string;

  @HideField()
  universalIdentifier?: string;
}