Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
409 Bytes
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;
}