Class: Twilio::REST::Events::V1::SchemaContext::SchemaVersionInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/events/v1/schema/schema_version.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, id: nil, schema_version: nil) ⇒ SchemaVersionInstance

Initialize the SchemaVersionInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this SchemaVersion resource.

  • sid (String)

    The SID of the Call resource to fetch.



214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 214

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

#contextSchemaVersionContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



235
236
237
238
239
240
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 235

def context
    unless @instance_context
        @instance_context = SchemaVersionContext.new(@version , @params['id'], @params['schema_version'])
    end
    @instance_context
end

#date_createdTime

Returns The date the schema version was created, given in ISO 8601 format.

Returns:

  • (Time)

    The date the schema version was created, given in ISO 8601 format.



256
257
258
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 256

def date_created
    @properties['date_created']
end

#fetchSchemaVersionInstance

Fetch the SchemaVersionInstance

Returns:



275
276
277
278
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 275

def fetch

    context.fetch
end

#idString

Returns The unique identifier of the schema. Each schema can have multiple versions, that share the same id.

Returns:

  • (String)

    The unique identifier of the schema. Each schema can have multiple versions, that share the same id.



244
245
246
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 244

def id
    @properties['id']
end

#inspectObject

Provide a detailed, user friendly representation



289
290
291
292
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 289

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Events.V1.SchemaVersionInstance #{values}>"
end

#rawString

Returns:

  • (String)


268
269
270
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 268

def raw
    @properties['raw']
end

#schema_versionString

Returns The version of this schema.

Returns:

  • (String)

    The version of this schema.



250
251
252
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 250

def schema_version
    @properties['schema_version']
end

#to_sObject

Provide a user friendly representation



282
283
284
285
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 282

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Events.V1.SchemaVersionInstance #{values}>"
end

#urlString

Returns The URL of this resource.

Returns:

  • (String)

    The URL of this resource.



262
263
264
# File 'lib/twilio-ruby/rest/events/v1/schema/schema_version.rb', line 262

def url
    @properties['url']
end