Class VerificationCheckResponse.Builder
-
- All Implemented Interfaces:
public final class VerificationCheckResponse.Builder
A builder for VerificationCheckResponse.
-
-
Method Summary
-
-
Method Detail
-
status
final VerificationCheckResponse.Builder status(VerificationCheckResponse.Status status)
The status of the check.
-
status
final VerificationCheckResponse.Builder status(JsonField<VerificationCheckResponse.Status> status)
Sets Builder.status to an arbitrary JSON value.
You should usually call Builder.status with a well-typed Status value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
id
final VerificationCheckResponse.Builder id(String id)
The verification identifier.
-
id
final VerificationCheckResponse.Builder id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
metadata
final VerificationCheckResponse.Builder metadata(VerificationCheckResponse.Metadata metadata)
The metadata for this verification.
-
metadata
final VerificationCheckResponse.Builder metadata(JsonField<VerificationCheckResponse.Metadata> metadata)
Sets Builder.metadata to an arbitrary JSON value.
You should usually call Builder.metadata with a well-typed Metadata value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
requestId
final VerificationCheckResponse.Builder requestId(String requestId)
-
requestId
final VerificationCheckResponse.Builder requestId(JsonField<String> requestId)
Sets Builder.requestId to an arbitrary JSON value.
You should usually call Builder.requestId 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 VerificationCheckResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final VerificationCheckResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final VerificationCheckResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final VerificationCheckResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final VerificationCheckResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final VerificationCheckResponse build()
Returns an immutable instance of VerificationCheckResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.status()
-
-
-
-