Class: Twilio::REST::Conversations::V1::ServiceInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Conversations::V1::ServiceInstance
- Defined in:
- lib/twilio-ruby/rest/conversations/v1/service.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The unique ID of the [Account](www.twilio.com/docs/iam/api/account) responsible for this service.
-
#bindings ⇒ bindings
Access the bindings.
-
#configuration ⇒ configuration
Access the configuration.
-
#context ⇒ ServiceContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#conversation_with_participants ⇒ conversation_with_participants
Access the conversation_with_participants.
-
#conversations ⇒ conversations
Access the conversations.
-
#date_created ⇒ Time
The date that this resource was created.
-
#date_updated ⇒ Time
The date that this resource was last updated.
-
#delete ⇒ Boolean
Delete the ServiceInstance.
-
#fetch ⇒ ServiceInstance
Fetch the ServiceInstance.
-
#friendly_name ⇒ String
The human-readable name of this service, limited to 256 characters.
-
#initialize(version, payload, sid: nil) ⇒ ServiceInstance
constructor
Initialize the ServiceInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#links ⇒ Hash
Contains absolute API resource URLs to access conversations, users, roles, bindings and configuration of this service.
-
#participant_conversations ⇒ participant_conversations
Access the participant_conversations.
-
#roles ⇒ roles
Access the roles.
-
#sid ⇒ String
A 34 character string that uniquely identifies this resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
An absolute API resource URL for this service.
-
#users ⇒ users
Access the users.
Constructor Details
#initialize(version, payload, sid: nil) ⇒ ServiceInstance
Initialize the ServiceInstance
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 370 def initialize(version, payload , sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'sid' => payload['sid'], 'friendly_name' => payload['friendly_name'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'url' => payload['url'], 'links' => payload['links'], } # Context @instance_context = nil @params = { 'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#account_sid ⇒ String
Returns The unique ID of the [Account](www.twilio.com/docs/iam/api/account) responsible for this service.
402 403 404 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 402 def account_sid @properties['account_sid'] end |
#bindings ⇒ bindings
Access the bindings
496 497 498 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 496 def bindings context.bindings end |
#configuration ⇒ configuration
Access the configuration
475 476 477 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 475 def configuration context.configuration end |
#context ⇒ ServiceContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
393 394 395 396 397 398 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 393 def context unless @instance_context @instance_context = ServiceContext.new(@version , @params['sid']) end @instance_context end |
#conversation_with_participants ⇒ conversation_with_participants
Access the conversation_with_participants
468 469 470 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 468 def conversation_with_participants context.conversation_with_participants end |
#conversations ⇒ conversations
Access the conversations
503 504 505 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 503 def conversations context.conversations end |
#date_created ⇒ Time
Returns The date that this resource was created.
420 421 422 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 420 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date that this resource was last updated.
426 427 428 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 426 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the ServiceInstance
445 446 447 448 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 445 def delete context.delete end |
#fetch ⇒ ServiceInstance
Fetch the ServiceInstance
453 454 455 456 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 453 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The human-readable name of this service, limited to 256 characters. Optional.
414 415 416 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 414 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
516 517 518 519 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 516 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Conversations.V1.ServiceInstance #{values}>" end |
#links ⇒ Hash
Returns Contains absolute API resource URLs to access conversations, users, roles, bindings and configuration of this service.
438 439 440 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 438 def links @properties['links'] end |
#participant_conversations ⇒ participant_conversations
Access the participant_conversations
461 462 463 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 461 def participant_conversations context.participant_conversations end |
#roles ⇒ roles
Access the roles
489 490 491 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 489 def roles context.roles end |
#sid ⇒ String
Returns A 34 character string that uniquely identifies this resource.
408 409 410 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 408 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
509 510 511 512 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 509 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Conversations.V1.ServiceInstance #{values}>" end |
#url ⇒ String
Returns An absolute API resource URL for this service.
432 433 434 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 432 def url @properties['url'] end |
#users ⇒ users
Access the users
482 483 484 |
# File 'lib/twilio-ruby/rest/conversations/v1/service.rb', line 482 def users context.users end |