Class: Twilio::REST::Trusthub::V1::CustomerProfilesContext::CustomerProfilesChannelEndpointAssignmentContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Trusthub::V1::CustomerProfilesContext::CustomerProfilesChannelEndpointAssignmentContext
- Defined in:
- lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the CustomerProfilesChannelEndpointAssignmentInstance.
-
#fetch ⇒ CustomerProfilesChannelEndpointAssignmentInstance
Fetch the CustomerProfilesChannelEndpointAssignmentInstance.
-
#initialize(version, customer_profile_sid, sid) ⇒ CustomerProfilesChannelEndpointAssignmentContext
constructor
Initialize the CustomerProfilesChannelEndpointAssignmentContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, customer_profile_sid, sid) ⇒ CustomerProfilesChannelEndpointAssignmentContext
Initialize the CustomerProfilesChannelEndpointAssignmentContext
198 199 200 201 202 203 204 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb', line 198 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
#delete ⇒ Boolean
Delete the CustomerProfilesChannelEndpointAssignmentInstance
223 224 225 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb', line 223 def delete @version.delete('DELETE', @uri) end |
#fetch ⇒ CustomerProfilesChannelEndpointAssignmentInstance
Fetch the CustomerProfilesChannelEndpointAssignmentInstance
209 210 211 212 213 214 215 216 217 218 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb', line 209 def fetch payload = @version.fetch('GET', @uri) CustomerProfilesChannelEndpointAssignmentInstance.new( @version, payload, customer_profile_sid: @solution[:customer_profile_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
236 237 238 239 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb', line 236 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.CustomerProfilesChannelEndpointAssignmentContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
229 230 231 232 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_channel_endpoint_assignment.rb', line 229 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.CustomerProfilesChannelEndpointAssignmentContext #{context}>" end |