forked from Yara724/api
33 lines
776 B
TypeScript
33 lines
776 B
TypeScript
import { ApiProperty, ApiPropertyOptional } 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;
|
|
|
|
@ApiPropertyOptional({
|
|
description:
|
|
"Best-effort Fanavaran early submit result. Claim creation still succeeds when this contains a warning.",
|
|
})
|
|
fanavaran?: unknown;
|
|
}
|