UNPKG

marsol

Version:
20 lines (19 loc) 309 B
/** * * @export * @interface CreateContactRequest */ export interface CreateContactRequest { /** * * @type {string} * @memberof CreateContactRequest */ name?: string; /** * * @type {string} * @memberof CreateContactRequest */ phoneNumber: string; }