class XingApi::User::BirthDate

Public Class Methods

update(day, month, year, options = {}) click to toggle source
# File lib/xing_api/user/birth_date.rb, line 4
def self.update(day, month, year, options = {})
  request(
    :put,
    '/v1/users/me/birth_date',
    {
      day: day,
      month: month,
      year: year
    }.merge(options)
  )
end