Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings

Returns a new instance of GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettings.



7363
7364
7365
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7363

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

Instance Attribute Details

#audio_export_patternString

Corresponds to the JSON property audioExportPattern

Returns:

  • (String)


7339
7340
7341
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7339

def audio_export_pattern
  @audio_export_pattern
end

#audio_formatString

Corresponds to the JSON property audioFormat

Returns:

  • (String)


7344
7345
7346
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7344

def audio_format
  @audio_format
end

#enable_audio_redactionBoolean Also known as: enable_audio_redaction?

Corresponds to the JSON property enableAudioRedaction

Returns:

  • (Boolean)


7349
7350
7351
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7349

def enable_audio_redaction
  @enable_audio_redaction
end

#gcs_bucketString

Corresponds to the JSON property gcsBucket

Returns:

  • (String)


7355
7356
7357
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7355

def gcs_bucket
  @gcs_bucket
end

#store_tts_audioBoolean Also known as: store_tts_audio?

Corresponds to the JSON property storeTtsAudio

Returns:

  • (Boolean)


7360
7361
7362
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7360

def store_tts_audio
  @store_tts_audio
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7368
7369
7370
7371
7372
7373
7374
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 7368

def update!(**args)
  @audio_export_pattern = args[:audio_export_pattern] if args.key?(:audio_export_pattern)
  @audio_format = args[:audio_format] if args.key?(:audio_format)
  @enable_audio_redaction = args[:enable_audio_redaction] if args.key?(:enable_audio_redaction)
  @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
  @store_tts_audio = args[:store_tts_audio] if args.key?(:store_tts_audio)
end