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
158 159 160 161 162 163 164 165 166 |
# File 'lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb', line 158 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
170 171 172 173 174 175 |
# File 'lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb', line 170 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
180 181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb', line 180 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
203 204 205 206 |
# File 'lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb', line 203 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Messaging.V1.ChannelSenderContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
196 197 198 199 |
# File 'lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb', line 196 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Messaging.V1.ChannelSenderContext #{context}>" end |