Class: Twilio::REST::Events::V1::EventTypeContext

Inherits:
InstanceContext show all
Defined in:
lib/twilio-ruby/rest/events/v1/event_type.rb

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

Instance Method Summary collapse

Constructor Details

#initialize(version, type) ⇒ EventTypeContext

Initialize the EventTypeContext

Parameters:

  • version (Version)

    Version that contains the resource

  • type (String)

    A string that uniquely identifies this Event Type.



142
143
144
145
146
147
148
149
150
# File 'lib/twilio-ruby/rest/events/v1/event_type.rb', line 142

def initialize(version, type)
    super(version)

    # Path Solution
    @solution = { type: type,  }
    @uri = "/Types/#{@solution[:type]}"

    
end

Instance Method Details

#fetchEventTypeInstance

Fetch the EventTypeInstance

Returns:



154
155
156
157
158
159
160
161
162
# File 'lib/twilio-ruby/rest/events/v1/event_type.rb', line 154

def fetch

    payload = @version.fetch('GET', @uri)
    EventTypeInstance.new(
        @version,
        payload,
        type: @solution[:type],
    )
end

#inspectObject

Provide a detailed, user friendly representation



174
175
176
177
# File 'lib/twilio-ruby/rest/events/v1/event_type.rb', line 174

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Events.V1.EventTypeContext #{context}>"
end

#to_sObject

Provide a user friendly representation



167
168
169
170
# File 'lib/twilio-ruby/rest/events/v1/event_type.rb', line 167

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Events.V1.EventTypeContext #{context}>"
end