Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExportIntentsRequest

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportIntentsRequest

Returns a new instance of GoogleCloudDialogflowCxV3beta1ExportIntentsRequest.



6882
6883
6884
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6882

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

Instance Attribute Details

#data_formatString

Corresponds to the JSON property dataFormat

Returns:

  • (String)


6864
6865
6866
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6864

def data_format
  @data_format
end

#intentsArray<String>

Corresponds to the JSON property intents

Returns:

  • (Array<String>)


6869
6870
6871
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6869

def intents
  @intents
end

#intents_content_inlineBoolean Also known as: intents_content_inline?

Corresponds to the JSON property intentsContentInline

Returns:

  • (Boolean)


6874
6875
6876
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6874

def intents_content_inline
  @intents_content_inline
end

#intents_uriString

Corresponds to the JSON property intentsUri

Returns:

  • (String)


6880
6881
6882
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6880

def intents_uri
  @intents_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6887
6888
6889
6890
6891
6892
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 6887

def update!(**args)
  @data_format = args[:data_format] if args.key?(:data_format)
  @intents = args[:intents] if args.key?(:intents)
  @intents_content_inline = args[:intents_content_inline] if args.key?(:intents_content_inline)
  @intents_uri = args[:intents_uri] if args.key?(:intents_uri)
end