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.



166
167
168
169
170
171
172
173
174
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 166

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

Delete the ItemAssignmentInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



178
179
180
181
182
183
184
185
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 178

def delete

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    @version.delete('DELETE', @uri, headers: headers)
end

#fetchItemAssignmentInstance

Fetch the ItemAssignmentInstance

Returns:



190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# File 'lib/twilio-ruby/rest/numbers/v2/regulatory_compliance/bundle/item_assignment.rb', line 190

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.fetch('GET', @uri, headers: headers)
    ItemAssignmentInstance.new(
        @version,
        payload,
        bundle_sid: @solution[:bundle_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



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

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

#to_sObject

Provide a user friendly representation



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

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