Class: Twilio::REST::Trusthub::V1::TrustProductsContext::TrustProductsEntityAssignmentsContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, trust_product_sid, sid) ⇒ TrustProductsEntityAssignmentsContext

Initialize the TrustProductsEntityAssignmentsContext

Parameters:

  • version (Version)

    Version that contains the resource

  • trust_product_sid (String)

    The unique string that we created to identify the TrustProduct 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/trusthub/v1/trust_products/trust_products_entity_assignments.rb', line 175

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

  # Path Solution
  @solution = {trust_product_sid: trust_product_sid, sid: sid, }
  @uri = "/TrustProducts/#{@solution[:trust_product_sid]}/EntityAssignments/#{@solution[:sid]}"
end

Instance Method Details

#deleteBoolean

Delete the TrustProductsEntityAssignmentsInstance

Returns:

  • (Boolean)

    true if delete succeeds, false otherwise


200
201
202
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb', line 200

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

#fetchTrustProductsEntityAssignmentsInstance

Fetch the TrustProductsEntityAssignmentsInstance

Returns:


186
187
188
189
190
191
192
193
194
195
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb', line 186

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

  TrustProductsEntityAssignmentsInstance.new(
      @version,
      payload,
      trust_product_sid: @solution[:trust_product_sid],
      sid: @solution[:sid],
  )
end

#inspectObject

Provide a detailed, user friendly representation


213
214
215
216
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb', line 213

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

#to_sObject

Provide a user friendly representation


206
207
208
209
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_entity_assignments.rb', line 206

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