Class: Twilio::REST::Messaging::V1::ServiceContext::AlphaSenderContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Messaging::V1::ServiceContext::AlphaSenderContext
- Defined in:
- lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the AlphaSenderInstance.
-
#fetch ⇒ AlphaSenderInstance
Fetch the AlphaSenderInstance.
-
#initialize(version, service_sid, sid) ⇒ AlphaSenderContext
constructor
Initialize the AlphaSenderContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, service_sid, sid) ⇒ AlphaSenderContext
Initialize the AlphaSenderContext
175 176 177 178 179 180 181 |
# File 'lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb', line 175 def initialize(version, service_sid, sid) super(version) # Path Solution @solution = {service_sid: service_sid, sid: sid, } @uri = "/Services/#{@solution[:service_sid]}/AlphaSenders/#{@solution[:sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Delete the AlphaSenderInstance
200 201 202 |
# File 'lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb', line 200 def delete @version.delete('DELETE', @uri) end |
#fetch ⇒ AlphaSenderInstance
Fetch the AlphaSenderInstance
186 187 188 189 190 191 192 193 194 195 |
# File 'lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb', line 186 def fetch payload = @version.fetch('GET', @uri) AlphaSenderInstance.new( @version, payload, service_sid: @solution[:service_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
213 214 215 216 |
# File 'lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb', line 213 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Messaging.V1.AlphaSenderContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
206 207 208 209 |
# File 'lib/twilio-ruby/rest/messaging/v1/service/alpha_sender.rb', line 206 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Messaging.V1.AlphaSenderContext #{context}>" end |