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
135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 135 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
152 153 154 155 156 157 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 152 def context unless @instance_context @instance_context = DeactivationsContext.new(@version ) end @instance_context end |
#fetch(date: :unset) ⇒ DeactivationsInstance
Fetch the DeactivationsInstance
169 170 171 172 173 174 175 176 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 169 def fetch( date: :unset ) context.fetch( date: date, ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
187 188 189 190 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 187 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.
161 162 163 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 161 def redirect_to @properties['redirect_to'] end |
#to_s ⇒ Object
Provide a user friendly representation
180 181 182 183 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 180 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Messaging.V1.DeactivationsInstance #{values}>" end |