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

Inherits:
InstanceContext
  • 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, bundle_sid, sid) ⇒ ItemAssignmentContext

Initialize the ItemAssignmentContext

Parameters:

  • version (Version)

    Version that contains the resource

  • bundle_sid (String)

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

  • sid (String)

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



175
176
177
178
179
180
181
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 175

def initialize(version, bundle_sid, sid)
  super(version)

  # Path Solution
  @solution = {bundle_sid: bundle_sid, sid: sid, }
  @uri = "/RegulatoryCompliance/Bundles/#{@solution[:bundle_sid]}/ItemAssignments/#{@solution[:sid]}"
end

Instance Method Details

#deleteBoolean

Deletes the ItemAssignmentInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise



206
207
208
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 206

def delete
  @version.delete('delete', @uri)
end

#fetchItemAssignmentInstance

Fetch a ItemAssignmentInstance

Returns:



186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 186

def fetch
  params = Twilio::Values.of({})

  payload = @version.fetch(
      'GET',
      @uri,
      params,
  )

  ItemAssignmentInstance.new(
      @version,
      payload,
      bundle_sid: @solution[:bundle_sid],
      sid: @solution[:sid],
  )
end

#inspectObject

Provide a detailed, user friendly representation



219
220
221
222
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 219

def inspect
  context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
  "#<Twilio.Numbers.V2.ItemAssignmentContext #{context}>"
end

#to_sObject

Provide a user friendly representation



212
213
214
215
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 212

def to_s
  context = @solution.map {|k, v| "#{k}: #{v}"}.join(',')
  "#<Twilio.Numbers.V2.ItemAssignmentContext #{context}>"
end