Class: Twilio::REST::Messaging::V1::DeactivationsInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Messaging::V1::DeactivationsInstance
- Defined in:
- lib/twilio-ruby/rest/messaging/v1/deactivations.rb
Instance Method Summary collapse
-
#context ⇒ DeactivationsContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#fetch(date: :unset) ⇒ DeactivationsInstance
Fetch the DeactivationsInstance.
-
#initialize(version, payload) ⇒ DeactivationsInstance
constructor
Initialize the DeactivationsInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#redirect_to ⇒ String
Returns an authenticated url that redirects to a file containing the deactivated numbers for the requested day.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, payload) ⇒ DeactivationsInstance
Initialize the DeactivationsInstance
131 132 133 134 135 136 137 138 139 140 141 142 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 131 def initialize(version, payload ) super(version) # Marshaled Properties @properties = { 'redirect_to' => payload['redirect_to'], } # Context @instance_context = nil @params = { } end |
Instance Method Details
#context ⇒ DeactivationsContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
148 149 150 151 152 153 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 148 def context unless @instance_context @instance_context = DeactivationsContext.new(@version ) end @instance_context end |
#fetch(date: :unset) ⇒ DeactivationsInstance
Fetch the DeactivationsInstance
165 166 167 168 169 170 171 172 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 165 def fetch( date: :unset ) context.fetch( date: date, ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
183 184 185 186 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 183 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Messaging.V1.DeactivationsInstance #{values}>" end |
#redirect_to ⇒ String
Returns an authenticated url that redirects to a file containing the deactivated numbers for the requested day. This url is valid for up to two minutes.
157 158 159 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 157 def redirect_to @properties['redirect_to'] end |
#to_s ⇒ Object
Provide a user friendly representation
176 177 178 179 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 176 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Messaging.V1.DeactivationsInstance #{values}>" end |