SMIFormRecordResult

Objective-C

@protocol SMIFormRecordResult <NSObject>

Swift

protocol FormRecordResult : NSObjectProtocol

Represents a record that has been updated or created as a result of a SMIFormResponseInputs submission.

  • Indicates whether a record has been created as a result of form submission.

    Declaration

    Objective-C

    @property (nonatomic, readonly) BOOL isCreated;

    Swift

    var isCreated: Bool { get }
  • The ID for the relevant record.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSString *_Nonnull recordReferenceId;

    Swift

    var recordReferenceId: String { get }
  • A message generated as a result of the creation of the record.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) NSString *resultMessage;

    Swift

    var resultMessage: String? { get }