Better tests (check that response match the structure) (#52)
Trailing zeros were removed from time in responses because of json marshaling features
This commit is contained in:
@@ -666,3 +666,16 @@ const (
|
||||
// FBS
|
||||
GiveoutDeliverySchemaFBS GiveoutDeliverySchema = "GIVEOUT_DELIVERY_SCHEMA_FBS"
|
||||
)
|
||||
|
||||
type MandatoryMarkStatus string
|
||||
|
||||
const (
|
||||
// Labeling is processed
|
||||
MandatoryMarkStatusProcessing MandatoryMarkStatus = "processing"
|
||||
|
||||
// Check is passed
|
||||
MandatoryMarkStatusPassed MandatoryMarkStatus = "passed"
|
||||
|
||||
// Check is failed
|
||||
MandatoryMarkStatusFailed MandatoryMarkStatus = "failed"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user