Class: Twilio::REST::Events::V1::SchemaContext::SchemaVersionInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Events::V1::SchemaContext::SchemaVersionInstance
- Defined in:
- lib/twilio-ruby/rest/events/v1/schema/schema_version.rb
Instance Method Summary collapse
-
#context ⇒ SchemaVersionContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date the schema version was created, given in ISO 8601 format.
-
#fetch ⇒ SchemaVersionInstance
Fetch the SchemaVersionInstance.
-
#id ⇒ String
The unique identifier of the schema.
-
#initialize(version, payload, id: nil, schema_version: nil) ⇒ SchemaVersionInstance
constructor
Initialize the SchemaVersionInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
- #raw ⇒ String
-
#schema_version ⇒ String
The version of this schema.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The URL of this resource.
Constructor Details
#initialize(version, payload, id: nil, schema_version: nil) ⇒ SchemaVersionInstance
Initialize the SchemaVersionInstance
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 |
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 222 def initialize(version, payload , id: nil, schema_version: nil) super(version) # Marshaled Properties @properties = { 'id' => payload['id'], 'schema_version' => payload['schema_version'] == nil ? payload['schema_version'] : payload['schema_version'].to_i, 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'url' => payload['url'], 'raw' => payload['raw'], } # Context @instance_context = nil @params = { 'id' => id || @properties['id'] ,'schema_version' => schema_version || @properties['schema_version'] , } end |
Instance Method Details
#context ⇒ SchemaVersionContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
243 244 245 246 247 248 |
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 243 def context unless @instance_context @instance_context = SchemaVersionContext.new(@version , @params['id'], @params['schema_version']) end @instance_context end |
#date_created ⇒ Time
Returns The date the schema version was created, given in ISO 8601 format.
264 265 266 |
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 264 def date_created @properties['date_created'] end |
#fetch ⇒ SchemaVersionInstance
Fetch the SchemaVersionInstance
283 284 285 286 |
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 283 def fetch context.fetch end |
#id ⇒ String
Returns The unique identifier of the schema. Each schema can have multiple versions, that share the same id.
252 253 254 |
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 252 def id @properties['id'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
297 298 299 300 |
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 297 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Events.V1.SchemaVersionInstance #{values}>" end |
#raw ⇒ String
276 277 278 |
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 276 def raw @properties['raw'] end |
#schema_version ⇒ String
Returns The version of this schema.
258 259 260 |
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 258 def schema_version @properties['schema_version'] end |
#to_s ⇒ Object
Provide a user friendly representation
290 291 292 293 |
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 290 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Events.V1.SchemaVersionInstance #{values}>" end |
#url ⇒ String
Returns The URL of this resource.
270 271 272 |
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 270 def url @properties['url'] end |