Class: Twilio::REST::Messaging::V1::ServiceContext::DestinationAlphaSenderContext

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

Instance Method Summary collapse

Constructor Details

#initialize(version, service_sid, sid) ⇒ DestinationAlphaSenderContext

Initialize the DestinationAlphaSenderContext

Parameters:



168
169
170
171
172
173
174
175
176
# File 'lib/twilio-ruby/rest/messaging/v1/service/destination_alpha_sender.rb', line 168

def initialize(version, service_sid, sid)
    super(version)

    # Path Solution
    @solution = { service_sid: service_sid, sid: sid,  }
    @uri = "/Services/#{@solution[:service_sid]}/DestinationAlphaSenders/#{@solution[:sid]}"

    
end

Instance Method Details

#deleteBoolean

Delete the DestinationAlphaSenderInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



180
181
182
183
184
185
186
187
# File 'lib/twilio-ruby/rest/messaging/v1/service/destination_alpha_sender.rb', line 180

def delete

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    @version.delete('DELETE', @uri, headers: headers)
end

#fetchDestinationAlphaSenderInstance

Fetch the DestinationAlphaSenderInstance

Returns:



192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'lib/twilio-ruby/rest/messaging/v1/service/destination_alpha_sender.rb', line 192

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.fetch('GET', @uri, headers: headers)
    DestinationAlphaSenderInstance.new(
        @version,
        payload,
        service_sid: @solution[:service_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



219
220
221
222
# File 'lib/twilio-ruby/rest/messaging/v1/service/destination_alpha_sender.rb', line 219

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

#to_sObject

Provide a user friendly representation



212
213
214
215
# File 'lib/twilio-ruby/rest/messaging/v1/service/destination_alpha_sender.rb', line 212

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