Class: Twilio::REST::Intelligence::V2::ServiceContext
- Inherits:
-
Twilio::REST::InstanceContext
- Object
- Twilio::REST::InstanceContext
- Twilio::REST::Intelligence::V2::ServiceContext
- Defined in:
- lib/twilio-ruby/rest/intelligence/v2/service.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the ServiceInstance.
-
#fetch ⇒ ServiceInstance
Fetch the ServiceInstance.
-
#initialize(version, sid) ⇒ ServiceContext
constructor
Initialize the ServiceContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(auto_transcribe: :unset, data_logging: :unset, friendly_name: :unset, language_code: :unset, unique_name: :unset, auto_redaction: :unset, media_redaction: :unset, webhook_url: :unset, webhook_http_method: :unset, if_match: :unset) ⇒ ServiceInstance
Update the ServiceInstance.
Constructor Details
#initialize(version, sid) ⇒ ServiceContext
Initialize the ServiceContext
179 180 181 182 183 184 185 186 187 |
# File 'lib/twilio-ruby/rest/intelligence/v2/service.rb', line 179 def initialize(version, sid) super(version) # Path Solution @solution = { sid: sid, } @uri = "/Services/#{@solution[:sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Delete the ServiceInstance
191 192 193 194 195 |
# File 'lib/twilio-ruby/rest/intelligence/v2/service.rb', line 191 def delete @version.delete('DELETE', @uri) end |
#fetch ⇒ ServiceInstance
Fetch the ServiceInstance
200 201 202 203 204 205 206 207 208 209 |
# File 'lib/twilio-ruby/rest/intelligence/v2/service.rb', line 200 def fetch payload = @version.fetch('GET', @uri) ServiceInstance.new( @version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
269 270 271 272 |
# File 'lib/twilio-ruby/rest/intelligence/v2/service.rb', line 269 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Intelligence.V2.ServiceContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
262 263 264 265 |
# File 'lib/twilio-ruby/rest/intelligence/v2/service.rb', line 262 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Intelligence.V2.ServiceContext #{context}>" end |
#update(auto_transcribe: :unset, data_logging: :unset, friendly_name: :unset, language_code: :unset, unique_name: :unset, auto_redaction: :unset, media_redaction: :unset, webhook_url: :unset, webhook_http_method: :unset, if_match: :unset) ⇒ ServiceInstance
Update the ServiceInstance
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
# File 'lib/twilio-ruby/rest/intelligence/v2/service.rb', line 224 def update( auto_transcribe: :unset, data_logging: :unset, friendly_name: :unset, language_code: :unset, unique_name: :unset, auto_redaction: :unset, media_redaction: :unset, webhook_url: :unset, webhook_http_method: :unset, if_match: :unset ) data = Twilio::Values.of({ 'AutoTranscribe' => auto_transcribe, 'DataLogging' => data_logging, 'FriendlyName' => friendly_name, 'LanguageCode' => language_code, 'UniqueName' => unique_name, 'AutoRedaction' => auto_redaction, 'MediaRedaction' => media_redaction, 'WebhookUrl' => webhook_url, 'WebhookHttpMethod' => webhook_http_method, }) headers = Twilio::Values.of({ 'If-Match' => if_match, }) payload = @version.update('POST', @uri, data: data, headers: headers) ServiceInstance.new( @version, payload, sid: @solution[:sid], ) end |