class XingApi::User::Photo

Public Class Methods

delete(options = {}) click to toggle source
# File lib/xing_api/user/photo.rb, line 8
def self.delete(options = {})
  request(:delete, '/v1/users/me/photo', options)
end
update(body_hash, options = {}) click to toggle source
# File lib/xing_api/user/photo.rb, line 4
def self.update(body_hash, options = {})
  request_with_body(:put, '/v1/users/me/photo', body_hash, options)
end