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.



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

def initialize(version, type)
    super(version)

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

    
end

Instance Method Details

#fetchEventTypeInstance

Fetch the EventTypeInstance

Returns:



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

def fetch

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

#inspectObject

Provide a detailed, user friendly representation



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

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

#to_sObject

Provide a user friendly representation



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

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