Class: Twilio::REST::Conversations::V1::ServiceContext::BindingContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/conversations/v1/service/binding.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, chat_service_sid, sid) ⇒ BindingContext

Initialize the BindingContext

Parameters:



150
151
152
153
154
155
156
157
158
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 150

def initialize(version, chat_service_sid, sid)
    super(version)

    # Path Solution
    @solution = { chat_service_sid: chat_service_sid, sid: sid,  }
    @uri = "/Services/#{@solution[:chat_service_sid]}/Bindings/#{@solution[:sid]}"

    
end

Instance Method Details

#deleteBoolean

Delete the BindingInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



162
163
164
165
166
167
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 162

def delete

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    @version.delete('DELETE', @uri, headers: headers)
end

#fetchBindingInstance

Fetch the BindingInstance

Returns:



172
173
174
175
176
177
178
179
180
181
182
183
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 172

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    payload = @version.fetch('GET', @uri, headers: headers)
    BindingInstance.new(
        @version,
        payload,
        chat_service_sid: @solution[:chat_service_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



195
196
197
198
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 195

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Conversations.V1.BindingContext #{context}>"
end

#to_sObject

Provide a user friendly representation



188
189
190
191
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 188

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Conversations.V1.BindingContext #{context}>"
end