MSALNativeAuthSignUpParameters

@objcMembers
public class MSALNativeAuthSignUpParameters : NSObject

Encapsulates the parameters passed to the signUp method of MSALNativeAuthPublicClientApplication

  • username of the account to sign up.

    Declaration

    Swift

    public var username: String
  • password of the account to sign up.

    Declaration

    Swift

    public var password: String?
  • user attributes to be used during account creation.

    Declaration

    Swift

    public var attributes: [String : Any]?
  • UUID to correlate this request with the server for debugging.

    Declaration

    Swift

    public var correlationId: UUID?
  • Undocumented

    Declaration

    Swift

    public init(username: String)