class MangoPay::NaturalUser

See docs.mangopay.com/api-references/users/natural-users/

Public Class Methods

url(id = nil) click to toggle source
# File lib/mangopay/natural_user.rb, line 6
def self.url(id = nil)
  if id
    "#{MangoPay.api_path}/users/natural/#{CGI.escape(id.to_s)}"
  else
    "#{MangoPay.api_path}/users/natural"
  end
end