Enumeration ValidationStatus
ValidationStatus describes the outcome of a validation process on a field.
- Objective-C
- Swift
typedef NS_ENUM(NSInteger, DSValidationStatus) { /** The field has no validation specified. */ DSValidationStatusNone = 0, /** The validation for the field has been succeeded. */ DSValidationStatusSucceeded = 1, /** The validation for the field has been failed. */ DSValidationStatusFailed = 2 };public enum ValidationStatus : Int { /** The field has no validation specified. */ none = 0 /** The validation for the field has been succeeded. */ succeeded = 1 /** The validation for the field has been failed. */ failed = 2 }