forked from Yara724/api
28 lines
579 B
TypeScript
28 lines
579 B
TypeScript
import { ApiProperty } from "@nestjs/swagger";
|
|
|
|
export class UserSignatureResponseDto {
|
|
@ApiProperty({
|
|
example: "67fa10c259e15f231a2d1aae",
|
|
description: "Request ID",
|
|
})
|
|
requestId: string;
|
|
|
|
@ApiProperty({
|
|
example: true,
|
|
description: "Whether the user accepted the expert decision",
|
|
})
|
|
accepted: boolean;
|
|
|
|
@ApiProperty({
|
|
example: "COMPLETED",
|
|
description: "Updated request status",
|
|
})
|
|
status: string;
|
|
|
|
@ApiProperty({
|
|
example: "Both parties have signed. Case completed.",
|
|
description: "Result message",
|
|
})
|
|
message: string;
|
|
}
|