Claim History Type
object
(Claim History)
Claim History Properties
Property | Type | Required | Nullable |
---|---|---|---|
claim_type | string | Optional | can be null |
description | string | Optional | can be null |
policy_number | string | Optional | can be null |
claim_id | string | Optional | can be null |
status | string | Optional | cannot be null |
date_of_loss | string | Optional | can be null |
total_claim_paid_amount | number | Optional | can be null |
payments | array | Optional | cannot be null |
Sample JSON
{
"claim_type": "Accident",
"description": "Collision",
"policy_number": "123-245535-77",
"claim_id": "12345678",
"status": "resolved",
"date_of_loss": "2020-11-11",
"total_claim_paid_amount": 2000,
"payments": [
{
"issue_date": "2020-11-11",
"payee_name": "John",
"claim_amount": 300
}
]
}