ChangeCredentialOperationResult

public struct ChangeCredentialOperationResult : OpenSettingsOperationResult

The new credentials used to identify a user for a specific authenticator.

  • The current value, before updating the credential to the new value.

    Declaration

    Swift

    public let oldValue: String
  • The new value entered by the user. The format must match the properties given in ChangeCredentialAction.format.

    Declaration

    Swift

    public let newValue: String
  • A confirmation of the new value.

    Declaration

    Swift

    public let confirmationValue: String
  • Creates a new ChangeCredentialActionResult object.

    Declaration

    Swift

    public init(oldValue: String, newValue: String, confirmationValue: String)

    Parameters

    oldValue

    The current value.

    newValue

    The new value entered by the user.

    confirmationValue

    A confirmation of the new value.