Class: Twilio::REST::Preview::Proxy::ServiceContext::ShortCodeInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Preview::Proxy::ServiceContext::ShortCodeInstance
- Defined in:
- lib/twilio-ruby/rest/preview/proxy/service/short_code.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
-
#account_sid ⇒ String
Account Sid.
-
#capabilities ⇒ Hash
Indicate if a shortcode can receive messages.
-
#context ⇒ ShortCodeContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#country_code ⇒ String
The ISO 3166-1 alpha-2 country code.
-
#date_created ⇒ Time
The date this resource was created.
-
#date_updated ⇒ Time
The date this resource was last updated.
-
#delete ⇒ Boolean
Deletes the ShortCodeInstance.
-
#fetch ⇒ ShortCodeInstance
Fetch a ShortCodeInstance.
-
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ ShortCodeInstance
constructor
Initialize the ShortCodeInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#service_sid ⇒ String
Service Sid.
-
#short_code ⇒ String
The short code.
-
#sid ⇒ String
A string that uniquely identifies this resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The URL of this resource.
Constructor Details
#initialize(version, payload, service_sid: nil, sid: nil) ⇒ ShortCodeInstance
Initialize the ShortCodeInstance
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 224 def initialize(version, payload, service_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'service_sid' => payload['service_sid'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'short_code' => payload['short_code'], 'country_code' => payload['country_code'], 'capabilities' => payload['capabilities'], 'url' => payload['url'], } # Context @instance_context = nil @params = {'service_sid' => service_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns Account Sid.
264 265 266 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 264 def account_sid @properties['account_sid'] end |
#capabilities ⇒ Hash
Returns Indicate if a shortcode can receive messages.
300 301 302 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 300 def capabilities @properties['capabilities'] end |
#context ⇒ ShortCodeContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
249 250 251 252 253 254 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 249 def context unless @instance_context @instance_context = ShortCodeContext.new(@version, @params['service_sid'], @params['sid'], ) end @instance_context end |
#country_code ⇒ String
Returns The ISO 3166-1 alpha-2 country code.
294 295 296 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 294 def country_code @properties['country_code'] end |
#date_created ⇒ Time
Returns The date this resource was created.
276 277 278 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 276 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date this resource was last updated.
282 283 284 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 282 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the ShortCodeInstance
313 314 315 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 313 def delete context.delete end |
#fetch ⇒ ShortCodeInstance
Fetch a ShortCodeInstance
320 321 322 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 320 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
333 334 335 336 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 333 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Proxy.ShortCodeInstance #{values}>" end |
#service_sid ⇒ String
Returns Service Sid.
270 271 272 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 270 def service_sid @properties['service_sid'] end |
#short_code ⇒ String
Returns The short code. e.g., 894546.
288 289 290 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 288 def short_code @properties['short_code'] end |
#sid ⇒ String
Returns A string that uniquely identifies this resource.
258 259 260 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 258 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
326 327 328 329 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 326 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Preview.Proxy.ShortCodeInstance #{values}>" end |
#url ⇒ String
Returns The URL of this resource.
306 307 308 |
# File 'lib/twilio-ruby/rest/preview/proxy/service/short_code.rb', line 306 def url @properties['url'] end |