Class: Twilio::REST::Trusthub::V1::CustomerProfilesContext::CustomerProfilesChannelEndpointAssignmentContext

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

Instance Method Summary collapse

Constructor Details

#initialize(version, customer_profile_sid, sid) ⇒ CustomerProfilesChannelEndpointAssignmentContext

Initialize the CustomerProfilesChannelEndpointAssignmentContext

Parameters:

  • version (Version)

    Version that contains the resource

  • customer_profile_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.



170
171
172
173
174
175
176
177
178
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb', line 170

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

    # Path Solution
    @solution = { customer_profile_sid: customer_profile_sid, sid: sid,  }
    @uri = "/CustomerProfiles/#{@solution[:customer_profile_sid]}/ChannelEndpointAssignments/#{@solution[:sid]}"

    
end

Instance Method Details

#deleteBoolean

Delete the CustomerProfilesChannelEndpointAssignmentInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



182
183
184
185
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb', line 182

def delete

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

#fetchCustomerProfilesChannelEndpointAssignmentInstance

Fetch the CustomerProfilesChannelEndpointAssignmentInstance

Returns:



190
191
192
193
194
195
196
197
198
199
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb', line 190

def fetch

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

#inspectObject

Provide a detailed, user friendly representation



211
212
213
214
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb', line 211

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

#to_sObject

Provide a user friendly representation



204
205
206
207
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb', line 204

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