forked from Yara724/api
Added Field Expert flows, and deactivated inquiry
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { ApiProperty } from "@nestjs/swagger";
|
||||
|
||||
/**
|
||||
* Body for field expert uploading a party's signature for expert-initiated IN_PERSON blame.
|
||||
*/
|
||||
export class ExpertUploadPartySignatureDto {
|
||||
@ApiProperty({
|
||||
enum: ["FIRST", "SECOND"],
|
||||
description: "Which party's signature is being uploaded. CAR_BODY: use FIRST only. THIRD_PARTY: FIRST and SECOND.",
|
||||
})
|
||||
partyRole: "FIRST" | "SECOND";
|
||||
|
||||
@ApiProperty({
|
||||
default: true,
|
||||
description: "Party accepts the blame agreement (true). Set false if party rejects.",
|
||||
})
|
||||
isAccept: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user