MSALNativeAuthSignInParameters

@objcMembers
public class MSALNativeAuthSignInParameters : NSObject

Encapsulates the parameters passed to the signIn method of MSALNativeAuthPublicClientApplication

  • username of the account to sign in.

    Declaration

    Swift

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

    Declaration

    Swift

    public var password: String?
  • Permissions you want included in the access token received. Not all scopes are guaranteed to be included in the access token returned.

    Declaration

    Swift

    public var scopes: [String]?
  • The claims parameter that needs to be sent to the service.

    Declaration

    Swift

    public var claimsRequest: MSALClaimsRequest?
  • UUID to correlate this request with the server for debugging.

    Declaration

    Swift

    public var correlationId: UUID?
  • Undocumented

    Declaration

    Swift

    public init(username: String)