MDFormSubmissionResult
@objcMembers
public class MDFormSubmissionResult : NSObject
An object that represents the result of a form submission.
-
Returns
true
if the form was submitted successfully.Declaration
Swift
public let isSuccess: Bool
-
If the submission failed, this property contains a message describing the reason for the failure.
Declaration
Swift
public let errorMessage: String?
-
Internal initializer for the result object.
Declaration
Swift
init(isSuccess: Bool, errorMessage: String?)