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

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

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.



161
162
163
164
165
166
167
168
169
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 161

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



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

def delete

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    @version.delete('DELETE', @uri, headers: headers)
end

#fetchSubscribedEventInstance

Fetch the SubscribedEventInstance

Returns:



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

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    payload = @version.fetch('GET', @uri, headers: headers)
    SubscribedEventInstance.new(
        @version,
        payload,
        subscription_sid: @solution[:subscription_sid],
        type: @solution[:type],
    )
end

#inspectObject

Provide a detailed, user friendly representation



229
230
231
232
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 229

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

#to_sObject

Provide a user friendly representation



222
223
224
225
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 222

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

#update(schema_version: :unset) ⇒ SubscribedEventInstance

Update the SubscribedEventInstance

Parameters:

  • schema_version (String) (defaults to: :unset)

    The schema version that the Subscription should use.

Returns:



200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 200

def update(
    schema_version: :unset
)

    data = Twilio::Values.of({
        'SchemaVersion' => schema_version,
    })

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    payload = @version.update('POST', @uri, data: data, headers: headers)
    SubscribedEventInstance.new(
        @version,
        payload,
        subscription_sid: @solution[:subscription_sid],
        type: @solution[:type],
    )
end