Class: Twilio::REST::Trusthub::V1::TrustProductsContext::TrustProductsChannelEndpointAssignmentContext

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

Instance Method Summary collapse

Constructor Details

#initialize(version, trust_product_sid, sid) ⇒ TrustProductsChannelEndpointAssignmentContext

Initialize the TrustProductsChannelEndpointAssignmentContext

Parameters:

  • version (Version)

    Version that contains the resource

  • trust_product_sid (String)

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

  • sid (String)

    The unique string that we created to identify the resource.



172
173
174
175
176
177
178
179
180
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb', line 172

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]}/ChannelEndpointAssignments/#{@solution[:sid]}"

    
end

Instance Method Details

#deleteBoolean

Delete the TrustProductsChannelEndpointAssignmentInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



184
185
186
187
188
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb', line 184

def delete

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

#fetchTrustProductsChannelEndpointAssignmentInstance

Fetch the TrustProductsChannelEndpointAssignmentInstance

Returns:



193
194
195
196
197
198
199
200
201
202
203
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb', line 193

def fetch

    
    payload = @version.fetch('GET', @uri)
    TrustProductsChannelEndpointAssignmentInstance.new(
        @version,
        payload,
        trust_product_sid: @solution[:trust_product_sid],
        sid: @solution[:sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



215
216
217
218
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb', line 215

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

#to_sObject

Provide a user friendly representation



208
209
210
211
# File 'lib/twilio-ruby/rest/trusthub/v1/trust_products/trust_products_channel_endpoint_assignment.rb', line 208

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