Class: Twilio::REST::FlexApi::V1::FlexFlowInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::FlexApi::V1::FlexFlowInstance
- Defined in:
- lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the Account that created the resource.
-
#channel_type ⇒ flex_flow.ChannelType
The channel type.
-
#chat_service_sid ⇒ String
The SID of the chat service.
-
#contact_identity ⇒ String
The channel contact’s Identity.
-
#context ⇒ FlexFlowContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The ISO 8601 date and time in GMT when the resource was created.
-
#date_updated ⇒ Time
The ISO 8601 date and time in GMT when the resource was last updated.
-
#delete ⇒ Boolean
Delete the FlexFlowInstance.
-
#enabled ⇒ Boolean
Whether the Flex Flow is enabled.
-
#fetch ⇒ FlexFlowInstance
Fetch the FlexFlowInstance.
-
#friendly_name ⇒ String
The string that you assigned to describe the resource.
-
#initialize(version, payload, sid: nil) ⇒ FlexFlowInstance
constructor
Initialize the FlexFlowInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#integration ⇒ Hash
An object that contains specific parameters for the integration.
-
#integration_type ⇒ flex_flow.IntegrationType
The software that will handle inbound messages.
-
#janitor_enabled ⇒ Boolean
Remove active Proxy sessions if the corresponding Task is deleted.
-
#long_lived ⇒ Boolean
Re-use this chat channel for future interactions with a contact.
-
#sid ⇒ String
The unique string that identifies the resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset, chat_service_sid: :unset, channel_type: :unset, contact_identity: :unset, enabled: :unset, integration_type: :unset, integration_flow_sid: :unset, integration_url: :unset, integration_workspace_sid: :unset, integration_workflow_sid: :unset, integration_channel: :unset, integration_timeout: :unset, integration_priority: :unset, integration_creation_on_message: :unset, long_lived: :unset, janitor_enabled: :unset, integration_retry_count: :unset) ⇒ FlexFlowInstance
Update the FlexFlowInstance.
-
#url ⇒ String
The absolute URL of the Flex Flow resource.
Constructor Details
#initialize(version, payload, sid: nil) ⇒ FlexFlowInstance
Initialize the FlexFlowInstance
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 355 def initialize(version, payload, sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'sid' => payload['sid'], 'friendly_name' => payload['friendly_name'], 'chat_service_sid' => payload['chat_service_sid'], 'channel_type' => payload['channel_type'], 'contact_identity' => payload['contact_identity'], 'enabled' => payload['enabled'], 'integration_type' => payload['integration_type'], 'integration' => payload['integration'], 'long_lived' => payload['long_lived'], 'janitor_enabled' => payload['janitor_enabled'], 'url' => payload['url'], } # Context @instance_context = nil @params = {'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the Account that created the resource.
394 395 396 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 394 def account_sid @properties['account_sid'] end |
#channel_type ⇒ flex_flow.ChannelType
Returns The channel type.
430 431 432 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 430 def channel_type @properties['channel_type'] end |
#chat_service_sid ⇒ String
Returns The SID of the chat service.
424 425 426 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 424 def chat_service_sid @properties['chat_service_sid'] end |
#contact_identity ⇒ String
Returns The channel contact’s Identity.
436 437 438 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 436 def contact_identity @properties['contact_identity'] end |
#context ⇒ FlexFlowContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
385 386 387 388 389 390 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 385 def context unless @instance_context @instance_context = FlexFlowContext.new(@version, @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The ISO 8601 date and time in GMT when the resource was created.
400 401 402 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 400 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The ISO 8601 date and time in GMT when the resource was last updated.
406 407 408 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 406 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the FlexFlowInstance
559 560 561 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 559 def delete context.delete end |
#enabled ⇒ Boolean
Returns Whether the Flex Flow is enabled.
442 443 444 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 442 def enabled @properties['enabled'] end |
#fetch ⇒ FlexFlowInstance
Fetch the FlexFlowInstance
479 480 481 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 479 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The string that you assigned to describe the resource.
418 419 420 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 418 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
572 573 574 575 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 572 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.FlexApi.V1.FlexFlowInstance #{values}>" end |
#integration ⇒ Hash
Returns An object that contains specific parameters for the integration.
454 455 456 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 454 def integration @properties['integration'] end |
#integration_type ⇒ flex_flow.IntegrationType
Returns The software that will handle inbound messages.
448 449 450 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 448 def integration_type @properties['integration_type'] end |
#janitor_enabled ⇒ Boolean
Returns Remove active Proxy sessions if the corresponding Task is deleted.
466 467 468 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 466 def janitor_enabled @properties['janitor_enabled'] end |
#long_lived ⇒ Boolean
Returns Re-use this chat channel for future interactions with a contact.
460 461 462 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 460 def long_lived @properties['long_lived'] end |
#sid ⇒ String
Returns The unique string that identifies the resource.
412 413 414 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 412 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
565 566 567 568 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 565 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.FlexApi.V1.FlexFlowInstance #{values}>" end |
#update(friendly_name: :unset, chat_service_sid: :unset, channel_type: :unset, contact_identity: :unset, enabled: :unset, integration_type: :unset, integration_flow_sid: :unset, integration_url: :unset, integration_workspace_sid: :unset, integration_workflow_sid: :unset, integration_channel: :unset, integration_timeout: :unset, integration_priority: :unset, integration_creation_on_message: :unset, long_lived: :unset, janitor_enabled: :unset, integration_retry_count: :unset) ⇒ FlexFlowInstance
Update the FlexFlowInstance
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 534 def update(friendly_name: :unset, chat_service_sid: :unset, channel_type: :unset, contact_identity: :unset, enabled: :unset, integration_type: :unset, integration_flow_sid: :unset, integration_url: :unset, integration_workspace_sid: :unset, integration_workflow_sid: :unset, integration_channel: :unset, integration_timeout: :unset, integration_priority: :unset, integration_creation_on_message: :unset, long_lived: :unset, janitor_enabled: :unset, integration_retry_count: :unset) context.update( friendly_name: friendly_name, chat_service_sid: chat_service_sid, channel_type: channel_type, contact_identity: contact_identity, enabled: enabled, integration_type: integration_type, integration_flow_sid: integration_flow_sid, integration_url: integration_url, integration_workspace_sid: integration_workspace_sid, integration_workflow_sid: integration_workflow_sid, integration_channel: integration_channel, integration_timeout: integration_timeout, integration_priority: integration_priority, integration_creation_on_message: , long_lived: long_lived, janitor_enabled: janitor_enabled, integration_retry_count: integration_retry_count, ) end |
#url ⇒ String
Returns The absolute URL of the Flex Flow resource.
472 473 474 |
# File 'lib/twilio-ruby/rest/flex_api/v1/flex_flow.rb', line 472 def url @properties['url'] end |