Class VerificationCreateParams.Options.AppRealm.Builder
-
- All Implemented Interfaces:
public final class VerificationCreateParams.Options.AppRealm.Builder
A builder for AppRealm.
-
-
Method Summary
-
-
Method Detail
-
platform
final VerificationCreateParams.Options.AppRealm.Builder platform(VerificationCreateParams.Options.AppRealm.Platform platform)
The platform the SMS will be sent to. We are currently only supporting "android".
-
platform
final VerificationCreateParams.Options.AppRealm.Builder platform(JsonField<VerificationCreateParams.Options.AppRealm.Platform> platform)
Sets Builder.platform to an arbitrary JSON value.
You should usually call Builder.platform with a well-typed Platform value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
value
final VerificationCreateParams.Options.AppRealm.Builder value(String value)
The Android SMS Retriever API hash code that identifies your app.
-
value
final VerificationCreateParams.Options.AppRealm.Builder value(JsonField<String> value)
Sets Builder.value to an arbitrary JSON value.
You should usually call Builder.value with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final VerificationCreateParams.Options.AppRealm.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final VerificationCreateParams.Options.AppRealm.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final VerificationCreateParams.Options.AppRealm.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final VerificationCreateParams.Options.AppRealm.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final VerificationCreateParams.Options.AppRealm.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final VerificationCreateParams.Options.AppRealm build()
Returns an immutable instance of AppRealm.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.platform() .value()
-
-
-
-