Class: Twilio::REST::Trusthub::V1::CustomerProfilesContext::CustomerProfilesEntityAssignmentsContext

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

Instance Method Summary collapse

Constructor Details

#initialize(version, customer_profile_sid, sid) ⇒ CustomerProfilesEntityAssignmentsContext

Initialize the CustomerProfilesEntityAssignmentsContext

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 Identity resource.



157
158
159
160
161
162
163
164
165
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb', line 157

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

    
end

Instance Method Details

#deleteBoolean

Delete the CustomerProfilesEntityAssignmentsInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



169
170
171
172
173
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb', line 169

def delete

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

#fetchCustomerProfilesEntityAssignmentsInstance

Fetch the CustomerProfilesEntityAssignmentsInstance

Returns:



178
179
180
181
182
183
184
185
186
187
188
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb', line 178

def fetch

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

#inspectObject

Provide a detailed, user friendly representation



200
201
202
203
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb', line 200

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

#to_sObject

Provide a user friendly representation



193
194
195
196
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb', line 193

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