forked from Yara724/api
31 lines
776 B
TypeScript
31 lines
776 B
TypeScript
import { ApiProperty } from "@nestjs/swagger";
|
|
import { AddPlateDto } from "src/profile/dto/user/AddPlateDto";
|
|
import {
|
|
CarBodyFormDto,
|
|
DescriptionDto,
|
|
InitialFormDto,
|
|
} from "./create-request-management.dto";
|
|
|
|
/**
|
|
* V2 (IN_PERSON): single expert description/location for the scene.
|
|
*/
|
|
export class ExpertCompleteCarBodyFormV2Dto {
|
|
@ApiProperty({
|
|
description: "First party phone number",
|
|
example: "09123456789",
|
|
})
|
|
firstPartyPhoneNumber: string;
|
|
|
|
@ApiProperty({ type: InitialFormDto })
|
|
firstPartyInitialForm: InitialFormDto;
|
|
|
|
@ApiProperty({ type: CarBodyFormDto })
|
|
carBodyForm: CarBodyFormDto;
|
|
|
|
@ApiProperty({ type: AddPlateDto })
|
|
firstPartyPlate: AddPlateDto;
|
|
|
|
@ApiProperty({ type: DescriptionDto })
|
|
expertDescription: DescriptionDto;
|
|
}
|