Class AiTag.Builder
-
- All Implemented Interfaces:
public final class AiTag.BuilderA builder for AiTag.
-
-
Method Summary
Modifier and Type Method Description final AiTag.Builderconfidence(Double confidence)Confidence score of the tag. final AiTag.Builderconfidence(JsonField<Double> confidence)Sets Builder.confidence to an arbitrary JSON value. final AiTag.Buildername(String name)Name of the tag. final AiTag.Buildername(JsonField<String> name)Sets Builder.name to an arbitrary JSON value. final AiTag.Buildersource(String source)Source of the tag. final AiTag.Buildersource(JsonField<String> source)Sets Builder.source to an arbitrary JSON value. final AiTag.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final AiTag.BuilderputAdditionalProperty(String key, JsonValue value)final AiTag.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final AiTag.BuilderremoveAdditionalProperty(String key)final AiTag.BuilderremoveAllAdditionalProperties(Set<String> keys)final AiTagbuild()Returns an immutable instance of AiTag. -
-
Method Detail
-
confidence
final AiTag.Builder confidence(Double confidence)
Confidence score of the tag.
-
confidence
final AiTag.Builder confidence(JsonField<Double> confidence)
Sets Builder.confidence to an arbitrary JSON value.
You should usually call Builder.confidence with a well-typed Double value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final AiTag.Builder name(String name)
Name of the tag.
-
name
final AiTag.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
source
final AiTag.Builder source(String source)
Source of the tag. Possible values are
google-auto-taggingandaws-auto-tagging.
-
source
final AiTag.Builder source(JsonField<String> source)
Sets Builder.source to an arbitrary JSON value.
You should usually call Builder.source 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 AiTag.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final AiTag.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final AiTag.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final AiTag.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final AiTag.Builder removeAllAdditionalProperties(Set<String> keys)
-
-
-
-