Skip to content

Commit 50047b5

Browse files
committed
clean inline doc
1 parent 46c756f commit 50047b5

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

auth/src/main/java/com/firebase/ui/auth/compose/mfa/MfaEnrollmentContentState.kt

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -87,62 +87,62 @@ data class MfaEnrollmentContentState(
8787
val onBackClick: () -> Unit = {},
8888

8989
// SelectFactor step
90-
/** (SelectFactor) List of MFA factors the user can choose from. */
90+
/** List of MFA factors the user can choose from. */
9191
val availableFactors: List<MfaFactor> = emptyList(),
9292

93-
/** (SelectFactor) Callback when user selects an MFA factor. */
93+
/** Callback when user selects an MFA factor. */
9494
val onFactorSelected: (MfaFactor) -> Unit = {},
9595

96-
/** (SelectFactor) Skip callback. `null` if enrollment is required. */
96+
/** Skip callback. `null` if enrollment is required. */
9797
val onSkipClick: (() -> Unit)? = null,
9898

9999
// ConfigureSms step
100-
/** (ConfigureSms) Current phone number value (without country code prefix). */
100+
/** Current phone number value (without country code prefix). */
101101
val phoneNumber: String = "",
102102

103-
/** (ConfigureSms) Callback when phone number changes. */
103+
/** Callback when phone number changes. */
104104
val onPhoneNumberChange: (String) -> Unit = {},
105105

106-
/** (ConfigureSms) Currently selected country (dial code, country code, flag). */
106+
/** Currently selected country (dial code, country code, flag). */
107107
val selectedCountry: CountryData? = null,
108108

109-
/** (ConfigureSms) Callback when user selects a different country. */
109+
/** Callback when user selects a different country. */
110110
val onCountrySelected: (CountryData) -> Unit = {},
111111

112-
/** (ConfigureSms) Callback to send SMS verification code. */
112+
/** Callback to send SMS verification code. */
113113
val onSendSmsCodeClick: () -> Unit = {},
114114

115115
// ConfigureTotp step
116-
/** (ConfigureTotp) TOTP secret containing shared key. Use to display or access Firebase secret. */
116+
/** TOTP secret containing shared key. Use to display or access Firebase secret. */
117117
val totpSecret: TotpSecret? = null,
118118

119-
/** (ConfigureTotp) QR code URI for authenticator apps. */
119+
/** QR code URI for authenticator apps. */
120120
val totpQrCodeUrl: String? = null,
121121

122-
/** (ConfigureTotp) Callback to proceed to verification after QR scan. */
122+
/** Callback to proceed to verification after QR scan. */
123123
val onContinueToVerifyClick: () -> Unit = {},
124124

125125
// VerifyFactor step
126-
/** (VerifyFactor) Current verification code value (6 digits). */
126+
/** Current verification code value (6 digits). */
127127
val verificationCode: String = "",
128128

129-
/** (VerifyFactor) Callback when verification code changes. */
129+
/** Callback when verification code changes. */
130130
val onVerificationCodeChange: (String) -> Unit = {},
131131

132-
/** (VerifyFactor) Callback to verify code and finalize enrollment. */
132+
/** Callback to verify code and finalize enrollment. */
133133
val onVerifyClick: () -> Unit = {},
134134

135-
/** (VerifyFactor) The factor being verified (SMS or TOTP). Use to customize messages. */
135+
/** The factor being verified (SMS or TOTP). Use to customize messages. */
136136
val selectedFactor: MfaFactor? = null,
137137

138-
/** (VerifyFactor, SMS only) Callback to resend SMS code. `null` for TOTP. */
138+
/** Callback to resend SMS code. `null` for TOTP. */
139139
val onResendCodeClick: (() -> Unit)? = null,
140140

141141
// ShowRecoveryCodes step
142-
/** (ShowRecoveryCodes) One-time backup codes to save. Only if recovery codes are enabled. */
142+
/** One-time backup codes to save. Only if recovery codes are enabled. */
143143
val recoveryCodes: List<String>? = null,
144144

145-
/** (ShowRecoveryCodes) Callback when user confirms codes are saved. Completes enrollment. */
145+
/** Callback when user confirms codes are saved. Completes enrollment. */
146146
val onCodesSavedClick: () -> Unit = {}
147147
) {
148148
/**

0 commit comments

Comments
 (0)