Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Legal Entity Management API
*
* The version of the OpenAPI document: 3
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.adyen.service.legalentitymanagement;
import com.adyen.Client;
import com.adyen.Service;
import com.adyen.constants.ApiConstants;
import com.adyen.model.legalentitymanagement.BusinessLines;
import com.adyen.model.legalentitymanagement.DataReviewConfirmationResponse;
import com.adyen.model.legalentitymanagement.LegalEntity;
import com.adyen.model.legalentitymanagement.LegalEntityInfo;
import com.adyen.model.legalentitymanagement.LegalEntityInfoRequiredType;
import com.adyen.model.legalentitymanagement.ServiceError;
import com.adyen.model.legalentitymanagement.VerificationErrors;
import com.adyen.model.RequestOptions;
import com.adyen.service.exception.ApiException;
import com.adyen.service.resource.Resource;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
public class LegalEntitiesApi extends Service {
public static final String API_VERSION = "3";
protected String baseURL;
/**
* Legal entities constructor in {@link com.adyen.service.legalentitymanagement package}.
* @param client {@link Client } (required)
*/
public LegalEntitiesApi(Client client) {
super(client);
this.baseURL = createBaseURL("https://kyc-test.adyen.com/lem/v3");
}
/**
* Legal entities constructor in {@link com.adyen.service.legalentitymanagement package}.
* Please use this constructor only if you would like to pass along your own url for routing or testing purposes. The latest API version is defined in this class as a constant.
* @param client {@link Client } (required)
* @param baseURL {@link String } (required)
*/
public LegalEntitiesApi(Client client, String baseURL) {
super(client);
this.baseURL = baseURL;
}
/**
* Check a legal entity's verification errors
*
* @param id {@link String } The unique identifier of the legal entity. (required)
* @return {@link VerificationErrors }
* @throws ApiException if fails to make API call
*/
public VerificationErrors checkLegalEntitysVerificationErrors(String id) throws ApiException, IOException {
return checkLegalEntitysVerificationErrors(id, null);
}
/**
* Check a legal entity's verification errors
*
* @param id {@link String } The unique identifier of the legal entity. (required)
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @return {@link VerificationErrors }
* @throws ApiException if fails to make API call
*/
public VerificationErrors checkLegalEntitysVerificationErrors(String id, RequestOptions requestOptions) throws ApiException, IOException {
//Add path params
Map pathParams = new HashMap<>();
if (id == null) {
throw new IllegalArgumentException("Please provide the id path parameter");
}
pathParams.put("id", id);
String requestBody = null;
Resource resource = new Resource(this, this.baseURL + "/legalEntities/{id}/checkVerificationErrors", null);
String jsonResult = resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.POST, pathParams);
return VerificationErrors.fromJson(jsonResult);
}
/**
* Confirm data review
*
* @param id {@link String } The unique identifier of the legal entity. (required)
* @return {@link DataReviewConfirmationResponse }
* @throws ApiException if fails to make API call
*/
public DataReviewConfirmationResponse confirmDataReview(String id) throws ApiException, IOException {
return confirmDataReview(id, null);
}
/**
* Confirm data review
*
* @param id {@link String } The unique identifier of the legal entity. (required)
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @return {@link DataReviewConfirmationResponse }
* @throws ApiException if fails to make API call
*/
public DataReviewConfirmationResponse confirmDataReview(String id, RequestOptions requestOptions) throws ApiException, IOException {
//Add path params
Map pathParams = new HashMap<>();
if (id == null) {
throw new IllegalArgumentException("Please provide the id path parameter");
}
pathParams.put("id", id);
String requestBody = null;
Resource resource = new Resource(this, this.baseURL + "/legalEntities/{id}/confirmDataReview", null);
String jsonResult = resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.POST, pathParams);
return DataReviewConfirmationResponse.fromJson(jsonResult);
}
/**
* Create a legal entity
*
* @param legalEntityInfoRequiredType {@link LegalEntityInfoRequiredType } (required)
* @return {@link LegalEntity }
* @throws ApiException if fails to make API call
*/
public LegalEntity createLegalEntity(LegalEntityInfoRequiredType legalEntityInfoRequiredType) throws ApiException, IOException {
return createLegalEntity(legalEntityInfoRequiredType, null);
}
/**
* Create a legal entity
*
* @param legalEntityInfoRequiredType {@link LegalEntityInfoRequiredType } (required)
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @return {@link LegalEntity }
* @throws ApiException if fails to make API call
*/
public LegalEntity createLegalEntity(LegalEntityInfoRequiredType legalEntityInfoRequiredType, RequestOptions requestOptions) throws ApiException, IOException {
String requestBody = legalEntityInfoRequiredType.toJson();
Resource resource = new Resource(this, this.baseURL + "/legalEntities", null);
String jsonResult = resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.POST, null);
return LegalEntity.fromJson(jsonResult);
}
/**
* Get all business lines under a legal entity
*
* @param id {@link String } The unique identifier of the legal entity. (required)
* @return {@link BusinessLines }
* @throws ApiException if fails to make API call
*/
public BusinessLines getAllBusinessLinesUnderLegalEntity(String id) throws ApiException, IOException {
return getAllBusinessLinesUnderLegalEntity(id, null);
}
/**
* Get all business lines under a legal entity
*
* @param id {@link String } The unique identifier of the legal entity. (required)
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @return {@link BusinessLines }
* @throws ApiException if fails to make API call
*/
public BusinessLines getAllBusinessLinesUnderLegalEntity(String id, RequestOptions requestOptions) throws ApiException, IOException {
//Add path params
Map pathParams = new HashMap<>();
if (id == null) {
throw new IllegalArgumentException("Please provide the id path parameter");
}
pathParams.put("id", id);
String requestBody = null;
Resource resource = new Resource(this, this.baseURL + "/legalEntities/{id}/businessLines", null);
String jsonResult = resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.GET, pathParams);
return BusinessLines.fromJson(jsonResult);
}
/**
* Get a legal entity
*
* @param id {@link String } The unique identifier of the legal entity. (required)
* @return {@link LegalEntity }
* @throws ApiException if fails to make API call
*/
public LegalEntity getLegalEntity(String id) throws ApiException, IOException {
return getLegalEntity(id, null);
}
/**
* Get a legal entity
*
* @param id {@link String } The unique identifier of the legal entity. (required)
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @return {@link LegalEntity }
* @throws ApiException if fails to make API call
*/
public LegalEntity getLegalEntity(String id, RequestOptions requestOptions) throws ApiException, IOException {
//Add path params
Map pathParams = new HashMap<>();
if (id == null) {
throw new IllegalArgumentException("Please provide the id path parameter");
}
pathParams.put("id", id);
String requestBody = null;
Resource resource = new Resource(this, this.baseURL + "/legalEntities/{id}", null);
String jsonResult = resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.GET, pathParams);
return LegalEntity.fromJson(jsonResult);
}
/**
* Update a legal entity
*
* @param id {@link String } The unique identifier of the legal entity. (required)
* @param legalEntityInfo {@link LegalEntityInfo } (required)
* @return {@link LegalEntity }
* @throws ApiException if fails to make API call
*/
public LegalEntity updateLegalEntity(String id, LegalEntityInfo legalEntityInfo) throws ApiException, IOException {
return updateLegalEntity(id, legalEntityInfo, null);
}
/**
* Update a legal entity
*
* @param id {@link String } The unique identifier of the legal entity. (required)
* @param legalEntityInfo {@link LegalEntityInfo } (required)
* @param requestOptions {@link RequestOptions } Object to store additional data such as idempotency-keys (optional)
* @return {@link LegalEntity }
* @throws ApiException if fails to make API call
*/
public LegalEntity updateLegalEntity(String id, LegalEntityInfo legalEntityInfo, RequestOptions requestOptions) throws ApiException, IOException {
//Add path params
Map pathParams = new HashMap<>();
if (id == null) {
throw new IllegalArgumentException("Please provide the id path parameter");
}
pathParams.put("id", id);
String requestBody = legalEntityInfo.toJson();
Resource resource = new Resource(this, this.baseURL + "/legalEntities/{id}", null);
String jsonResult = resource.request(requestBody, requestOptions, ApiConstants.HttpMethod.PATCH, pathParams);
return LegalEntity.fromJson(jsonResult);
}
}