require_relative '../service'
module Adyen
class LegalEntitiesApi < Service
attr_accessor :service, :version
def initialize(client, version = DEFAULT_VERSION)
super(client, version, 'LegalEntityManagement')
end
def check_legal_entitys_verification_errors(id, headers: {})
endpoint = '/legalEntities/{id}/checkVerificationErrors'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint, id)
action = { method: 'post', url: endpoint }
@client.call_adyen_api(@service, action, {}, headers, @version)
end
def confirm_data_review(id, headers: {})
endpoint = '/legalEntities/{id}/confirmDataReview'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint, id)
action = { method: 'post', url: endpoint }
@client.call_adyen_api(@service, action, {}, headers, @version)
end
def create_legal_entity(request, headers: {})
endpoint = '/legalEntities'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint)
action = { method: 'post', url: endpoint }
@client.call_adyen_api(@service, action, request, headers, @version)
end
def get_all_business_lines_under_legal_entity(id, headers: {})
endpoint = '/legalEntities/{id}/businessLines'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint, id)
action = { method: 'get', url: endpoint }
@client.call_adyen_api(@service, action, {}, headers, @version)
end
def get_legal_entity(id, headers: {})
endpoint = '/legalEntities/{id}'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint, id)
action = { method: 'get', url: endpoint }
@client.call_adyen_api(@service, action, {}, headers, @version)
end
def update_legal_entity(request, id, headers: {})
endpoint = '/legalEntities/{id}'.gsub(/{.+?}/, '%s')
endpoint = endpoint.gsub(%r{^/}, '')
endpoint = format(endpoint, id)
action = { method: 'patch', url: endpoint }
@client.call_adyen_api(@service, action, request, headers, @version)
end
end
end