class MangoPay::LegalUser

See docs.mangopay.com/api-references/users/legal-users/ See also parent class MangoPay::User

Public Class Methods

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