forked from Yara724/api
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
|
|
|
|
export class ClaimListItemV2Dto {
|
|
@ApiProperty({ description: 'Claim case ID' })
|
|
claimRequestId: string;
|
|
|
|
@ApiProperty({ description: 'Public ID shared across blame+claim', example: 'A14235' })
|
|
publicId: string;
|
|
|
|
@ApiProperty({ description: 'Overall case status', example: 'WAITING_FOR_DAMAGE_EXPERT' })
|
|
status: string;
|
|
|
|
@ApiProperty({ description: 'Workflow step', example: 'USER_SUBMISSION_COMPLETE' })
|
|
currentStep: string;
|
|
|
|
@ApiProperty({ description: 'Whether the claim is locked by another expert', example: false })
|
|
locked: boolean;
|
|
|
|
@ApiPropertyOptional({ description: 'Actor who locked this claim' })
|
|
lockedBy?: {
|
|
actorId: string;
|
|
actorName: string;
|
|
};
|
|
|
|
@ApiPropertyOptional({ description: 'Vehicle info from snapshot' })
|
|
vehicle?: {
|
|
carName?: string;
|
|
carModel?: string;
|
|
carType?: string;
|
|
};
|
|
|
|
@ApiProperty({ description: 'Submission date', example: '2026-02-22T10:00:00.000Z' })
|
|
createdAt: string;
|
|
}
|
|
|
|
export class GetClaimListV2ResponseDto {
|
|
@ApiProperty({ type: [ClaimListItemV2Dto] })
|
|
list: ClaimListItemV2Dto[];
|
|
|
|
@ApiProperty({ description: 'Total count' })
|
|
total: number;
|
|
}
|