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:



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

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:



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

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



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

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

#to_sObject

Provide a user friendly representation



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

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