24 lines
513 B
TypeScript
24 lines
513 B
TypeScript
/**
|
|
* PyroFetes
|
|
*
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
export interface GetCommunicationDto {
|
|
id?: number;
|
|
calling?: string | null;
|
|
email?: string | null;
|
|
meeting?: string | null;
|
|
contactId?: number;
|
|
contactFirstName?: string | null;
|
|
contactLastName?: string | null;
|
|
contactEmail?: string | null;
|
|
contactPhoneNumber?: string | null;
|
|
}
|
|
|