14 lines
321 B
TypeScript
14 lines
321 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Data transfer object containing courier information
|
|
*/
|
|
export type courierInfoDto = {
|
|
courierId?: string | null;
|
|
name?: string | null;
|
|
phoneNumber?: string | null;
|
|
};
|
|
|