SCPEmailResult

Objective-C


@interface SCPEmailResult : SCPCollectInputsResult

Swift

class EmailResult : CollectInputsResult

Contains data collected from a Email form

  • Represents the collected email. This value is nil if the form was skipped.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *email;

    Swift

    var email: String? { get }
  • Represents a list of SCPToggleResult. The values are SCPToggleResultSkipped if the form was skipped.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSArray<NSNumber *> *_Nonnull toggles;

    Swift

    var toggles: [NSNumber] { get }
  • Unavailable

    You cannot directly instantiate this class.

    Declaration

    Objective-C

    - (nonnull instancetype)init;
  • Unavailable

    You cannot directly instantiate this class.

    Declaration

    Objective-C

    + (nonnull instancetype)new;