Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1ExplicitContentDetectionConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/videointelligence_v1/classes.rb,
generated/google/apis/videointelligence_v1/representations.rb,
generated/google/apis/videointelligence_v1/representations.rb

Overview

Config for EXPLICIT_CONTENT_DETECTION.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1ExplicitContentDetectionConfig

Returns a new instance of GoogleCloudVideointelligenceV1ExplicitContentDetectionConfig.



269
270
271
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 269

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#modelString

Model to use for explicit content detection. Supported values: "builtin/stable" (the default if unset) and "builtin/latest". Corresponds to the JSON property model

Returns:

  • (String)


267
268
269
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 267

def model
  @model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



274
275
276
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 274

def update!(**args)
  @model = args[:model] if args.key?(:model)
end