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