18 lines
383 B
JavaScript
18 lines
383 B
JavaScript
const coverageStatuses = Object.freeze({
|
|
/**
|
|
* We have not yet attempted claim registration
|
|
*/
|
|
PENDING: 0,
|
|
|
|
/**
|
|
* We have attempted claim registration, and we got a failure response
|
|
*/
|
|
NO_COVERAGE: 1,
|
|
|
|
/**
|
|
* We have attempted claim registration, and we got a success response
|
|
*/
|
|
VERIFIED: 2
|
|
});
|
|
|
|
export default coverageStatuses;
|