Class: Twilio::REST::Taskrouter::V1::WorkspaceContext::EventInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Taskrouter::V1::WorkspaceContext::EventInstance
- Defined in:
- lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Event resource.
-
#actor_sid ⇒ String
The SID of the resource that triggered the event.
-
#actor_type ⇒ String
The type of resource that triggered the event.
-
#actor_url ⇒ String
The absolute URL of the resource that triggered the event.
-
#context ⇒ EventContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#description ⇒ String
A description of the event.
-
#event_data ⇒ Hash
Data about the event.
-
#event_date ⇒ Time
The time the event was sent, specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
-
#event_date_ms ⇒ String
The time the event was sent in milliseconds.
-
#event_type ⇒ String
The identifier for the event.
-
#fetch ⇒ EventInstance
Fetch the EventInstance.
-
#initialize(version, payload, workspace_sid: nil, sid: nil) ⇒ EventInstance
constructor
Initialize the EventInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#resource_sid ⇒ String
The SID of the object the event is most relevant to, such as a TaskSid, ReservationSid, or a WorkerSid.
-
#resource_type ⇒ String
The type of object the event is most relevant to, such as a Task, Reservation, or a Worker).
-
#resource_url ⇒ String
The URL of the resource the event is most relevant to.
-
#sid ⇒ String
The unique string that we created to identify the Event resource.
-
#source ⇒ String
Where the Event originated.
-
#source_ip_address ⇒ String
The IP from which the Event originated.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The absolute URL of the Event resource.
-
#workspace_sid ⇒ String
The SID of the Workspace that contains the Event.
Constructor Details
#initialize(version, payload, workspace_sid: nil, sid: nil) ⇒ EventInstance
Initialize the EventInstance
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 468 def initialize(version, payload , workspace_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'actor_sid' => payload['actor_sid'], 'actor_type' => payload['actor_type'], 'actor_url' => payload['actor_url'], 'description' => payload['description'], 'event_data' => payload['event_data'], 'event_date' => Twilio.deserialize_iso8601_datetime(payload['event_date']), 'event_date_ms' => payload['event_date_ms'], 'event_type' => payload['event_type'], 'resource_sid' => payload['resource_sid'], 'resource_type' => payload['resource_type'], 'resource_url' => payload['resource_url'], 'sid' => payload['sid'], 'source' => payload['source'], 'source_ip_address' => payload['source_ip_address'], 'url' => payload['url'], 'workspace_sid' => payload['workspace_sid'], } # Context @instance_context = nil @params = { 'workspace_sid' => workspace_sid || @properties['workspace_sid'] ,'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#account_sid ⇒ String
511 512 513 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 511 def account_sid @properties['account_sid'] end |
#actor_sid ⇒ String
517 518 519 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 517 def actor_sid @properties['actor_sid'] end |
#actor_type ⇒ String
523 524 525 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 523 def actor_type @properties['actor_type'] end |
#actor_url ⇒ String
529 530 531 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 529 def actor_url @properties['actor_url'] end |
#context ⇒ EventContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
502 503 504 505 506 507 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 502 def context unless @instance_context @instance_context = EventContext.new(@version , @params['workspace_sid'], @params['sid']) end @instance_context end |
#description ⇒ String
535 536 537 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 535 def description @properties['description'] end |
#event_data ⇒ Hash
541 542 543 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 541 def event_data @properties['event_data'] end |
#event_date ⇒ Time
547 548 549 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 547 def event_date @properties['event_date'] end |
#event_date_ms ⇒ String
553 554 555 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 553 def event_date_ms @properties['event_date_ms'] end |
#event_type ⇒ String
559 560 561 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 559 def event_type @properties['event_type'] end |
#fetch ⇒ EventInstance
Fetch the EventInstance
614 615 616 617 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 614 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
628 629 630 631 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 628 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Taskrouter.V1.EventInstance #{values}>" end |
#resource_sid ⇒ String
565 566 567 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 565 def resource_sid @properties['resource_sid'] end |
#resource_type ⇒ String
571 572 573 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 571 def resource_type @properties['resource_type'] end |
#resource_url ⇒ String
577 578 579 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 577 def resource_url @properties['resource_url'] end |
#sid ⇒ String
583 584 585 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 583 def sid @properties['sid'] end |
#source ⇒ String
589 590 591 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 589 def source @properties['source'] end |
#source_ip_address ⇒ String
595 596 597 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 595 def source_ip_address @properties['source_ip_address'] end |
#to_s ⇒ Object
Provide a user friendly representation
621 622 623 624 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 621 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Taskrouter.V1.EventInstance #{values}>" end |
#url ⇒ String
601 602 603 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 601 def url @properties['url'] end |
#workspace_sid ⇒ String
607 608 609 |
# File 'lib/twilio-ruby/rest/taskrouter/v1/workspace/event.rb', line 607 def workspace_sid @properties['workspace_sid'] end |