create-integration.dto.d.ts 311 B

1234567
  1. import { IConstructIntegrationDto } from './construct-integration.interface';
  2. import { ChannelTypeEnum } from '../../types';
  3. export interface ICreateIntegrationBodyDto extends IConstructIntegrationDto {
  4. providerId: string;
  5. channel: ChannelTypeEnum;
  6. }
  7. //# sourceMappingURL=create-integration.dto.d.ts.map