Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1FulfillmentGenericWebService

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1FulfillmentGenericWebService

Returns a new instance of GoogleCloudDialogflowV2beta1FulfillmentGenericWebService.



13721
13722
13723
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13721

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

Instance Attribute Details

#is_cloud_functionBoolean Also known as: is_cloud_function?

Corresponds to the JSON property isCloudFunction

Returns:

  • (Boolean)


13698
13699
13700
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13698

def is_cloud_function
  @is_cloud_function
end

#passwordString

Corresponds to the JSON property password

Returns:

  • (String)


13704
13705
13706
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13704

def password
  @password
end

#request_headersHash<String,String>

Corresponds to the JSON property requestHeaders

Returns:

  • (Hash<String,String>)


13709
13710
13711
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13709

def request_headers
  @request_headers
end

#uriString

Corresponds to the JSON property uri

Returns:

  • (String)


13714
13715
13716
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13714

def uri
  @uri
end

#usernameString

Corresponds to the JSON property username

Returns:

  • (String)


13719
13720
13721
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13719

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13726
13727
13728
13729
13730
13731
13732
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13726

def update!(**args)
  @is_cloud_function = args[:is_cloud_function] if args.key?(:is_cloud_function)
  @password = args[:password] if args.key?(:password)
  @request_headers = args[:request_headers] if args.key?(:request_headers)
  @uri = args[:uri] if args.key?(:uri)
  @username = args[:username] if args.key?(:username)
end