Class: Twilio::REST::FrontlineApi::V1::UserContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::FrontlineApi::V1::UserContext
- Defined in:
- lib/twilio-ruby/rest/frontline_api/v1/user.rb
Instance Method Summary collapse
-
#fetch ⇒ UserInstance
Fetch the UserInstance.
-
#initialize(version, sid) ⇒ UserContext
constructor
Initialize the UserContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(friendly_name: :unset, avatar: :unset, state: :unset, is_available: :unset) ⇒ UserInstance
Update the UserInstance.
Constructor Details
#initialize(version, sid) ⇒ UserContext
Initialize the UserContext
49 50 51 52 53 54 55 56 57 |
# File 'lib/twilio-ruby/rest/frontline_api/v1/user.rb', line 49 def initialize(version, sid) super(version) # Path Solution @solution = { sid: sid, } @uri = "/Users/#{@solution[:sid]}" end |
Instance Method Details
#fetch ⇒ UserInstance
Fetch the UserInstance
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/twilio-ruby/rest/frontline_api/v1/user.rb', line 61 def fetch headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.fetch('GET', @uri, headers: headers) UserInstance.new( @version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
122 123 124 125 |
# File 'lib/twilio-ruby/rest/frontline_api/v1/user.rb', line 122 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.FrontlineApi.V1.UserContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
115 116 117 118 |
# File 'lib/twilio-ruby/rest/frontline_api/v1/user.rb', line 115 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.FrontlineApi.V1.UserContext #{context}>" end |
#update(friendly_name: :unset, avatar: :unset, state: :unset, is_available: :unset) ⇒ UserInstance
Update the UserInstance
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/twilio-ruby/rest/frontline_api/v1/user.rb', line 84 def update( friendly_name: :unset, avatar: :unset, state: :unset, is_available: :unset ) data = Twilio::Values.of({ 'FriendlyName' => friendly_name, 'Avatar' => avatar, 'State' => state, 'IsAvailable' => is_available, }) headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', }) payload = @version.update('POST', @uri, data: data, headers: headers) UserInstance.new( @version, payload, sid: @solution[:sid], ) end |