domain module

class vdx_helper.domain.JobStatus(value)

Bases: Enum

A representation of all possible status of a Job.

failed = 'failed'
finished = 'finished'
pending = 'pending'
scheduled = 'scheduled'
started = 'started'
unconfirmed = 'unconfirmed'
class vdx_helper.domain.StepStatus(value)

Bases: Enum

A representation of all status of a verification step.

error = 'error'
failed = 'failed'
not_started = 'not_started'
passed = 'passed'
pending = 'pending'
class vdx_helper.domain.VerificationStatus(value)

Bases: Enum

A representation of all possible verification status

error = 'error'
expired = 'expired'
failed = 'failed'
ok = 'ok'
pending = 'pending'
revoked = 'revoked'