class Adyen::AndroidFilesCompanyLevelApi

def get_android_app(company_id, id, headers: {})

def get_android_app(company_id, id, headers: {})
  endpoint = '/companies/{companyId}/androidApps/{id}'.gsub(/{.+?}/, '%s')
  endpoint = endpoint.gsub(%r{^/}, '')
  endpoint = format(endpoint, company_id, id)
  
  action = { method: 'get', url: endpoint }
  @client.call_adyen_api(@service, action, {}, headers, @version)
end