Added case type for all GET APIs

This commit is contained in:
SepehrYahyaee
2026-08-19 12:30:53 +03:30
parent 26c80512ba
commit 3bd6bc6e9d
10 changed files with 95 additions and 14 deletions

View File

@@ -28,6 +28,18 @@ export class ClaimListItemV2Dto {
@ApiProperty({ description: 'Blame request ID this claim originated from' })
blameRequestId?: string;
@ApiPropertyOptional({
description: 'Blame file type: THIRD_PARTY or CAR_BODY',
example: 'THIRD_PARTY',
})
blameType?: string;
@ApiPropertyOptional({
description: 'How the blame file was initiated: IN_PERSON or LINK',
example: 'IN_PERSON',
})
creationMethod?: string;
}
export class GetMyClaimsV2ResponseDto {