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
130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 130 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
147 148 149 150 151 152 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 147 def context unless @instance_context @instance_context = DeactivationsContext.new(@version ) end @instance_context end |
#fetch(date: :unset) ⇒ DeactivationsInstance
Fetch the DeactivationsInstance
164 165 166 167 168 169 170 171 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 164 def fetch( date: :unset ) context.fetch( date: date, ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
182 183 184 185 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 182 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.
156 157 158 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 156 def redirect_to @properties['redirect_to'] end |
#to_s ⇒ Object
Provide a user friendly representation
175 176 177 178 |
# File 'lib/twilio-ruby/rest/messaging/v1/deactivations.rb', line 175 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Messaging.V1.DeactivationsInstance #{values}>" end |