AuthMethodRegistrationSubmitChallengeResult class     
Result of submitting a challenge for authentication method registration.
- Extends
Constructors
| Auth | 
Methods
| create | Creates an AuthMethodRegistrationSubmitChallengeResult with an error. | 
| is | Checks if the result indicates that registration is completed. | 
| is | Checks if the result is in a failed state. | 
Constructor Details
		AuthMethodRegistrationSubmitChallengeResult(AuthMethodRegistrationSubmitChallengeResultState, CustomAuthAccountData)
	              
	new AuthMethodRegistrationSubmitChallengeResult(state: AuthMethodRegistrationSubmitChallengeResultState, data?: CustomAuthAccountData)Parameters
Inherited Property Details
data
data?: CustomAuthAccountDataProperty Value
Inherited From AuthFlowResultBase.data
error
error?: AuthMethodRegistrationSubmitChallengeErrorProperty Value
Inherited From AuthFlowResultBase.error
state
state: AuthMethodRegistrationSubmitChallengeResultStateProperty Value
Inherited From AuthFlowResultBase.state
Method Details
		createWithError(unknown)
	  
	Creates an AuthMethodRegistrationSubmitChallengeResult with an error.
static function createWithError(error: unknown): AuthMethodRegistrationSubmitChallengeResultParameters
- error
- 
				unknown 
The error that occurred.
Returns
The AuthMethodRegistrationSubmitChallengeResult with error.
		isCompleted()
	 
	Checks if the result indicates that registration is completed.
function isCompleted(): booleanReturns
boolean
true if registration is completed, false otherwise.
		isFailed()
	 
	Checks if the result is in a failed state.
function isFailed(): booleanReturns
boolean
true if the result is failed, false otherwise.