Class: Twilio::REST::Api::V2010::AccountContext::SigningKeyInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Api::V2010::AccountContext::SigningKeyInstance
- Defined in:
- lib/twilio-ruby/rest/api/v2010/account/signing_key.rb
Instance Method Summary collapse
-
#context ⇒ SigningKeyContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date_created.
-
#date_updated ⇒ Time
The date_updated.
-
#delete ⇒ Boolean
Delete the SigningKeyInstance.
-
#fetch ⇒ SigningKeyInstance
Fetch the SigningKeyInstance.
-
#friendly_name ⇒ String
The friendly_name.
-
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ SigningKeyInstance
constructor
Initialize the SigningKeyInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#sid ⇒ String
The sid.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset) ⇒ SigningKeyInstance
Update the SigningKeyInstance.
Constructor Details
#initialize(version, payload, account_sid: nil, sid: nil) ⇒ SigningKeyInstance
Initialize the SigningKeyInstance
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'lib/twilio-ruby/rest/api/v2010/account/signing_key.rb', line 222 def initialize(version, payload, account_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'friendly_name' => payload['friendly_name'], 'date_created' => Twilio.deserialize_rfc2822(payload['date_created']), 'date_updated' => Twilio.deserialize_rfc2822(payload['date_updated']), } # Context @instance_context = nil @params = {'account_sid' => account_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#context ⇒ SigningKeyContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
242 243 244 245 246 247 |
# File 'lib/twilio-ruby/rest/api/v2010/account/signing_key.rb', line 242 def context unless @instance_context @instance_context = SigningKeyContext.new(@version, @params['account_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The date_created.
263 264 265 |
# File 'lib/twilio-ruby/rest/api/v2010/account/signing_key.rb', line 263 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date_updated.
269 270 271 |
# File 'lib/twilio-ruby/rest/api/v2010/account/signing_key.rb', line 269 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the SigningKeyInstance
291 292 293 |
# File 'lib/twilio-ruby/rest/api/v2010/account/signing_key.rb', line 291 def delete context.delete end |
#fetch ⇒ SigningKeyInstance
Fetch the SigningKeyInstance
276 277 278 |
# File 'lib/twilio-ruby/rest/api/v2010/account/signing_key.rb', line 276 def fetch context.fetch end |
#friendly_name ⇒ String
Returns The friendly_name.
257 258 259 |
# File 'lib/twilio-ruby/rest/api/v2010/account/signing_key.rb', line 257 def friendly_name @properties['friendly_name'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
304 305 306 307 |
# File 'lib/twilio-ruby/rest/api/v2010/account/signing_key.rb', line 304 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.SigningKeyInstance #{values}>" end |
#sid ⇒ String
Returns The sid.
251 252 253 |
# File 'lib/twilio-ruby/rest/api/v2010/account/signing_key.rb', line 251 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
297 298 299 300 |
# File 'lib/twilio-ruby/rest/api/v2010/account/signing_key.rb', line 297 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Api.V2010.SigningKeyInstance #{values}>" end |
#update(friendly_name: :unset) ⇒ SigningKeyInstance
Update the SigningKeyInstance
284 285 286 |
# File 'lib/twilio-ruby/rest/api/v2010/account/signing_key.rb', line 284 def update(friendly_name: :unset) context.update(friendly_name: friendly_name, ) end |