Decode enrollment status JSON response

This commit is contained in:
2024-08-18 20:33:26 +02:00
parent 3b5d2abcc0
commit 38197afd79
4 changed files with 40 additions and 9 deletions

View File

@ -15,13 +15,13 @@ extern "C"
enum DevEnrollmentStatus
{
/** An error occurred while retrieving device status */
DevEnrollError,
DevEnrollError = 0,
/** Device is unknown by the backend */
DevEnrollUnknown,
DevEnrollUnknown = 1,
/** Device hasn't been validated yet */
DevEnrollPending,
DevEnrollPending = 2,
/** Device has been validated by the backend */
DevEnrollValidated,
DevEnrollValidated = 3,
};
/**