Class: Twilio::REST::Messaging::V1::ServiceContext::ShortCodeContext
- Inherits:
 - 
      InstanceContext
      
        
- Object
 - InstanceContext
 - Twilio::REST::Messaging::V1::ServiceContext::ShortCodeContext
 
 
- Defined in:
 - lib/twilio-ruby/rest/messaging/v1/service/short_code.rb
 
Instance Method Summary collapse
- 
  
    
      #delete  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  
  
    
Delete the ShortCodeInstance.
 - 
  
    
      #fetch  ⇒ ShortCodeInstance 
    
    
  
  
  
  
  
  
  
  
  
    
Fetch the ShortCodeInstance.
 - 
  
    
      #initialize(version, service_sid, sid)  ⇒ ShortCodeContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
Initialize the ShortCodeContext.
 - 
  
    
      #inspect  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Provide a detailed, user friendly representation.
 - 
  
    
      #to_s  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Provide a user friendly representation.
 
Constructor Details
#initialize(version, service_sid, sid) ⇒ ShortCodeContext
Initialize the ShortCodeContext
      165 166 167 168 169 170 171 172 173  | 
    
      # File 'lib/twilio-ruby/rest/messaging/v1/service/short_code.rb', line 165 def initialize(version, service_sid, sid) super(version) # Path Solution @solution = { service_sid: service_sid, sid: sid, } @uri = "/Services/#{@solution[:service_sid]}/ShortCodes/#{@solution[:sid]}" end  | 
  
Instance Method Details
#delete ⇒ Boolean
Delete the ShortCodeInstance
      177 178 179 180 181 182 183 184  | 
    
      # File 'lib/twilio-ruby/rest/messaging/v1/service/short_code.rb', line 177 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end  | 
  
#fetch ⇒ ShortCodeInstance
Fetch the ShortCodeInstance
      189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204  | 
    
      # File 'lib/twilio-ruby/rest/messaging/v1/service/short_code.rb', line 189 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) ShortCodeInstance.new( @version, payload, service_sid: @solution[:service_sid], sid: @solution[:sid], ) end  | 
  
#inspect ⇒ Object
Provide a detailed, user friendly representation
      216 217 218 219  | 
    
      # File 'lib/twilio-ruby/rest/messaging/v1/service/short_code.rb', line 216 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Messaging.V1.ShortCodeContext #{context}>" end  | 
  
#to_s ⇒ Object
Provide a user friendly representation
      209 210 211 212  | 
    
      # File 'lib/twilio-ruby/rest/messaging/v1/service/short_code.rb', line 209 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Messaging.V1.ShortCodeContext #{context}>" end  |