Class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1ExplicitContentDetectionConfig

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

Overview

Config for EXPLICIT_CONTENT_DETECTION.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p2beta1ExplicitContentDetectionConfig

Returns a new instance of GoogleCloudVideointelligenceV1p2beta1ExplicitContentDetectionConfig.



3833
3834
3835
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 3833

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)


3831
3832
3833
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 3831

def model
  @model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3838
3839
3840
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 3838

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