Class: Twilio::REST::Numbers::V2::RegulatoryComplianceList::BundleContext::ItemAssignmentInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, bundle_sid: nil, sid: nil) ⇒ ItemAssignmentInstance

Initialize the ItemAssignmentInstance

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 ItemAssignment resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 241

def initialize(version, payload , bundle_sid: nil, sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'sid' => payload['sid'],
        'bundle_sid' => payload['bundle_sid'],
        'account_sid' => payload['account_sid'],
        'object_sid' => payload['object_sid'],
        'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
        'url' => payload['url'],
    }

    # Context
    @instance_context = nil
    @params = { 'bundle_sid' => bundle_sid  || @properties['bundle_sid']  ,'sid' => sid  || @properties['sid']  , }
end

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Item Assignment resource.

Returns:



284
285
286
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 284

def 
    @properties['account_sid']
end

#bundle_sidString

Returns The unique string that we created to identify the Bundle resource.

Returns:

  • (String)

    The unique string that we created to identify the Bundle resource.



278
279
280
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 278

def bundle_sid
    @properties['bundle_sid']
end

#contextItemAssignmentContext

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

Returns:



263
264
265
266
267
268
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 263

def context
    unless @instance_context
        @instance_context = ItemAssignmentContext.new(@version , @params['bundle_sid'], @params['sid'])
    end
    @instance_context
end

#date_createdTime

Returns The date and time in GMT when the resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.

Returns:



296
297
298
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 296

def date_created
    @properties['date_created']
end

#deleteBoolean

Delete the ItemAssignmentInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



309
310
311
312
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 309

def delete

    context.delete
end

#fetchItemAssignmentInstance

Fetch the ItemAssignmentInstance

Returns:



317
318
319
320
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 317

def fetch

    context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



331
332
333
334
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 331

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

#object_sidString

Returns The SID of an object bag that holds information of the different items.

Returns:

  • (String)

    The SID of an object bag that holds information of the different items.



290
291
292
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 290

def object_sid
    @properties['object_sid']
end

#sidString

Returns The unique string that we created to identify the Item Assignment resource.

Returns:

  • (String)

    The unique string that we created to identify the Item Assignment resource.



272
273
274
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 272

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



324
325
326
327
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 324

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

#urlString

Returns The absolute URL of the Identity resource.

Returns:

  • (String)

    The absolute URL of the Identity resource.



302
303
304
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 302

def url
    @properties['url']
end