Class: Twilio::REST::Events::V1::SubscriptionContext::SubscribedEventContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb

Overview

PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].

Instance Method Summary collapse

Constructor Details

#initialize(version, subscription_sid, type) ⇒ SubscribedEventContext

Initialize the SubscribedEventContext

Parameters:

  • version (Version)

    Version that contains the resource

  • subscription_sid (String)

    The unique SID identifier of the Subscription.

  • type (String)

    Type of event being subscribed to.



170
171
172
173
174
175
176
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 170

def initialize(version, subscription_sid, type)
  super(version)

  # Path Solution
  @solution = {subscription_sid: subscription_sid, type: type, }
  @uri = "/Subscriptions/#{@solution[:subscription_sid]}/SubscribedEvents/#{@solution[:type]}"
end

Instance Method Details

#deleteBoolean

Delete the SubscribedEventInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise



198
199
200
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 198

def delete
   @version.delete('DELETE', @uri)
end

#inspectObject

Provide a detailed, user friendly representation



211
212
213
214
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 211

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

#to_sObject

Provide a user friendly representation



204
205
206
207
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 204

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

#update(version: nil) ⇒ SubscribedEventInstance

Update the SubscribedEventInstance

Parameters:

  • version (String) (defaults to: nil)

    The schema version that the subscription should use.

Returns:



182
183
184
185
186
187
188
189
190
191
192
193
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 182

def update(version: nil)
  data = Twilio::Values.of({'Version' => version, })

  payload = @version.update('POST', @uri, data: data)

  SubscribedEventInstance.new(
      @version,
      payload,
      subscription_sid: @solution[:subscription_sid],
      type: @solution[:type],
  )
end