Class: Twilio::REST::Chat::V1::ServiceContext::ChannelContext::InviteContext
- Inherits:
 - 
      InstanceContext
      
        
- Object
 - InstanceContext
 - Twilio::REST::Chat::V1::ServiceContext::ChannelContext::InviteContext
 
 
- Defined in:
 - lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb
 
Instance Method Summary collapse
- 
  
    
      #delete  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  
  
    
Delete the InviteInstance.
 - 
  
    
      #fetch  ⇒ InviteInstance 
    
    
  
  
  
  
  
  
  
  
  
    
Fetch the InviteInstance.
 - 
  
    
      #initialize(version, service_sid, channel_sid, sid)  ⇒ InviteContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
Initialize the InviteContext.
 - 
  
    
      #inspect  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Provide a detailed, user friendly representation.
 - 
  
    
      #to_s  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Provide a user friendly representation.
 
Constructor Details
#initialize(version, service_sid, channel_sid, sid) ⇒ InviteContext
Initialize the InviteContext
      178 179 180 181 182 183 184 185 186  | 
    
      # File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 178 def initialize(version, service_sid, channel_sid, sid) super(version) # Path Solution @solution = { service_sid: service_sid, channel_sid: channel_sid, sid: sid, } @uri = "/Services/#{@solution[:service_sid]}/Channels/#{@solution[:channel_sid]}/Invites/#{@solution[:sid]}" end  | 
  
Instance Method Details
#delete ⇒ Boolean
Delete the InviteInstance
      190 191 192 193 194 195 196 197  | 
    
      # File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 190 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end  | 
  
#fetch ⇒ InviteInstance
Fetch the InviteInstance
      202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218  | 
    
      # File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 202 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) InviteInstance.new( @version, payload, service_sid: @solution[:service_sid], channel_sid: @solution[:channel_sid], sid: @solution[:sid], ) end  | 
  
#inspect ⇒ Object
Provide a detailed, user friendly representation
      230 231 232 233  | 
    
      # File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 230 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Chat.V1.InviteContext #{context}>" end  | 
  
#to_s ⇒ Object
Provide a user friendly representation
      223 224 225 226  | 
    
      # File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 223 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Chat.V1.InviteContext #{context}>" end  |