import { Client } from './../client'; /** * DTO for engaging new clients to the platform. * * @interface RegisterClientDTO * @extends Client */ export interface RegisterClientDTO extends Client { text: string; userId: string; clientId: string; twilioNumber: string; }