@regacy-innovation/shared-services
Version:
Shared services for NestJS microservices
42 lines • 942 B
TypeScript
import { StartupDto } from './startup.dto';
declare class ClientDto {
name: string;
description?: string;
}
declare class IntroducedByDto {
name: string;
}
declare class ProjectDto {
name: string;
description: string;
descriptionLinks: any[];
}
declare class DescriptionLinkDto {
name: string;
link: string;
}
declare class TeamDto {
name: string;
description: string;
descriptionLinks: DescriptionLinkDto[];
}
declare class UserDto {
firstName: string;
lastName: string;
}
export declare class GenerateMessageDto {
client: ClientDto;
startup: StartupDto;
introducedBy: IntroducedByDto;
useProjectIntro: boolean;
project: ProjectDto;
useTeamIntro: boolean;
team: TeamDto;
useTimeWindows: boolean;
timeWindows: string[];
timeWindowsUrl: string;
user: UserDto;
inEnglish: boolean;
}
export {};
//# sourceMappingURL=generate-message.dto.d.ts.map