Class: Twilio::REST::Messaging::V1::ServiceContext::ChannelSenderContext

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

Overview

PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.

Instance Method Summary collapse

Constructor Details

#initialize(version, messaging_service_sid, sid) ⇒ ChannelSenderContext

Initialize the ChannelSenderContext

Parameters:



137
138
139
140
141
142
143
144
145
# File 'lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb', line 137

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

#fetchChannelSenderInstance

Fetch the ChannelSenderInstance

Returns:



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

def fetch

    payload = @version.fetch('GET', @uri)
    ChannelSenderInstance.new(
        @version,
        payload,
        messaging_service_sid: @solution[:messaging_service_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



170
171
172
173
# File 'lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb', line 170

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

#to_sObject

Provide a user friendly representation



163
164
165
166
# File 'lib/twilio-ruby/rest/messaging/v1/service/channel_sender.rb', line 163

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