Class: Twilio::REST::Trusthub::V1::EndUserContext

Inherits:
InstanceContext show all
Defined in:
lib/twilio-ruby/rest/trusthub/v1/end_user.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, sid) ⇒ EndUserContext

Initialize the EndUserContext

Parameters:

  • version (Version)

    Version that contains the resource

  • sid (String)

    The unique string created by Twilio to identify the End User resource.



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

def initialize(version, sid)
    super(version)

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

    
end

Instance Method Details

#deleteBoolean

Delete the EndUserInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



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

def delete

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

#fetchEndUserInstance

Fetch the EndUserInstance

Returns:



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

def fetch

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

#inspectObject

Provide a detailed, user friendly representation



221
222
223
224
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user.rb', line 221

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

#to_sObject

Provide a user friendly representation



214
215
216
217
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user.rb', line 214

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

#update(friendly_name: :unset, attributes: :unset) ⇒ EndUserInstance

Update the EndUserInstance

Parameters:

  • friendly_name (String) (defaults to: :unset)

    The string that you assigned to describe the resource.

  • attributes (Object) (defaults to: :unset)

    The set of parameters that are the attributes of the End User resource which are derived End User Types.

Returns:



193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# File 'lib/twilio-ruby/rest/trusthub/v1/end_user.rb', line 193

def update(
    friendly_name: :unset, 
    attributes: :unset
)

    data = Twilio::Values.of({
        'FriendlyName' => friendly_name,
        'Attributes' => Twilio.serialize_object(attributes),
    })

    payload = @version.update('POST', @uri, data: data)
    EndUserInstance.new(
        @version,
        payload,
        sid: @solution[:sid],
    )
end