forked from Yara724/api
blame and claim refactored
This commit is contained in:
26
src/claim-request-management/dto/create-claim-v2.dto.ts
Normal file
26
src/claim-request-management/dto/create-claim-v2.dto.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
import { ApiProperty } from "@nestjs/swagger";
|
||||
|
||||
export class CreateClaimFromBlameResponseDto {
|
||||
@ApiProperty({
|
||||
example: "67fa10c259e15f231a2d1aae",
|
||||
description: "Created claim request ID",
|
||||
})
|
||||
claimRequestId: string;
|
||||
|
||||
@ApiProperty({
|
||||
example: "A14235",
|
||||
description: "Shared public ID from blame case",
|
||||
})
|
||||
publicId: string;
|
||||
|
||||
@ApiProperty({
|
||||
example: "SELECTING_OUTER_PARTS",
|
||||
description: "Current status after creation",
|
||||
})
|
||||
status: string;
|
||||
|
||||
@ApiProperty({
|
||||
example: "Claim request created successfully",
|
||||
})
|
||||
message: string;
|
||||
}
|
||||
Reference in New Issue
Block a user