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

  • bundle_sid (String) (defaults to: nil)

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

  • sid (String) (defaults to: nil)

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


222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 222

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, 'sid' => sid || @properties['sid'], }
end

Instance Method Details

#account_sidString

Returns The SID of the Account that created the resource.

Returns:

  • (String)

    The SID of the Account that created the resource


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

def 
  @properties['account_sid']
end

#bundle_sidString

Returns The unique string that identifies the Bundle resource.

Returns:

  • (String)

    The unique string that identifies the Bundle resource.


259
260
261
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 259

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:


244
245
246
247
248
249
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 244

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

#date_createdTime

Returns The ISO 8601 date and time in GMT when the resource was created.

Returns:

  • (Time)

    The ISO 8601 date and time in GMT when the resource was created


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

def date_created
  @properties['date_created']
end

#deleteBoolean

Delete the ItemAssignmentInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise


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

def delete
  context.delete
end

#fetchItemAssignmentInstance

Fetch the ItemAssignmentInstance

Returns:


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

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation


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

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.

Returns:

  • (String)

    The sid of an object bag


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

def object_sid
  @properties['object_sid']
end

#sidString

Returns The unique string that identifies the resource.

Returns:

  • (String)

    The unique string that identifies the resource


253
254
255
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 253

def sid
  @properties['sid']
end

#to_sObject

Provide a user friendly representation


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

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


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

def url
  @properties['url']
end