Class: Twilio::REST::Trusthub::V1::CustomerProfilesContext::CustomerProfilesEntityAssignmentsContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Trusthub::V1::CustomerProfilesContext::CustomerProfilesEntityAssignmentsContext
- Defined in:
- lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the CustomerProfilesEntityAssignmentsInstance.
-
#fetch ⇒ CustomerProfilesEntityAssignmentsInstance
Fetch the CustomerProfilesEntityAssignmentsInstance.
-
#initialize(version, customer_profile_sid, sid) ⇒ CustomerProfilesEntityAssignmentsContext
constructor
Initialize the CustomerProfilesEntityAssignmentsContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, customer_profile_sid, sid) ⇒ CustomerProfilesEntityAssignmentsContext
Initialize the CustomerProfilesEntityAssignmentsContext
164 165 166 167 168 169 170 171 172 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb', line 164 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
#delete ⇒ Boolean
Delete the CustomerProfilesEntityAssignmentsInstance
176 177 178 179 180 181 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb', line 176 def delete headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) @version.delete('DELETE', @uri, headers: headers) end |
#fetch ⇒ CustomerProfilesEntityAssignmentsInstance
Fetch the CustomerProfilesEntityAssignmentsInstance
186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb', line 186 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) CustomerProfilesEntityAssignmentsInstance.new( @version, payload, customer_profile_sid: @solution[:customer_profile_sid], sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
209 210 211 212 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb', line 209 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.CustomerProfilesEntityAssignmentsContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
202 203 204 205 |
# File 'lib/twilio-ruby/rest/trusthub/v1/customer_profiles/customer_profiles_entity_assignments.rb', line 202 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Trusthub.V1.CustomerProfilesEntityAssignmentsContext #{context}>" end |