Class: Twilio::REST::Preview::Sync::ServiceContext::SyncListContext::SyncListItemContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Preview::Sync::ServiceContext::SyncListContext::SyncListItemContext
- Defined in:
- lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb
Instance Method Summary collapse
-
#delete(if_match: :unset) ⇒ Boolean
Delete the SyncListItemInstance.
-
#fetch ⇒ SyncListItemInstance
Fetch the SyncListItemInstance.
-
#initialize(version, service_sid, list_sid, index) ⇒ SyncListItemContext
constructor
Initialize the SyncListItemContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(data: nil, if_match: :unset) ⇒ SyncListItemInstance
Update the SyncListItemInstance.
Constructor Details
#initialize(version, service_sid, list_sid, index) ⇒ SyncListItemContext
Initialize the SyncListItemContext
186 187 188 189 190 191 192 193 194 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 186 def initialize(version, service_sid, list_sid, index) super(version) # Path Solution @solution = { service_sid: service_sid, list_sid: list_sid, index: index, } @uri = "/Services/#{@solution[:service_sid]}/Lists/#{@solution[:list_sid]}/Items/#{@solution[:index]}" end |
Instance Method Details
#delete(if_match: :unset) ⇒ Boolean
Delete the SyncListItemInstance
199 200 201 202 203 204 205 206 207 208 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 199 def delete( if_match: :unset ) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', 'If-Match' => if_match, }) @version.delete('DELETE', @uri, headers: headers) end |
#fetch ⇒ SyncListItemInstance
Fetch the SyncListItemInstance
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 213 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) SyncListItemInstance.new( @version, payload, service_sid: @solution[:service_sid], list_sid: @solution[:list_sid], index: @solution[:index], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
271 272 273 274 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 271 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Preview.Sync.SyncListItemContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
264 265 266 267 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 264 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Preview.Sync.SyncListItemContext #{context}>" end |
#update(data: nil, if_match: :unset) ⇒ SyncListItemInstance
Update the SyncListItemInstance
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
# File 'lib/twilio-ruby/rest/preview/sync/service/sync_list/sync_list_item.rb', line 236 def update( data: nil, if_match: :unset ) data = Twilio::Values.of({ 'Data' => Twilio.serialize_object(data), }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', 'If-Match' => if_match, }) payload = @version.update('POST', @uri, data: data, headers: headers) SyncListItemInstance.new( @version, payload, service_sid: @solution[:service_sid], list_sid: @solution[:list_sid], index: @solution[:index], ) end |