Class: Twilio::REST::Events::V1::SubscriptionContext::SubscribedEventContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Events::V1::SubscriptionContext::SubscribedEventContext
- Defined in:
- lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the SubscribedEventInstance.
-
#fetch ⇒ SubscribedEventInstance
Fetch the SubscribedEventInstance.
-
#initialize(version, subscription_sid, type) ⇒ SubscribedEventContext
constructor
Initialize the SubscribedEventContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(schema_version: :unset) ⇒ SubscribedEventInstance
Update the SubscribedEventInstance.
Constructor Details
#initialize(version, subscription_sid, type) ⇒ SubscribedEventContext
Initialize the SubscribedEventContext
168 169 170 171 172 173 174 175 176 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 168 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
#delete ⇒ Boolean
Delete the SubscribedEventInstance
180 181 182 183 184 185 186 187 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 180 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end |
#fetch ⇒ SubscribedEventInstance
Fetch the SubscribedEventInstance
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 192 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 |
#inspect ⇒ Object
Provide a detailed, user friendly representation
246 247 248 249 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 246 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Events.V1.SubscribedEventContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
239 240 241 242 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 239 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
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/twilio-ruby/rest/events/v1/subscription/subscribed_event.rb', line 213 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 |