io.trippay.sdk.payment.api.ContractApi Maven / Gradle / Ivy
Show all versions of payment-sdk-java Show documentation
package io.trippay.sdk.payment.api;
import io.trippay.sdk.payment.invoker.ApiClient;
import io.trippay.sdk.payment.model.AggregateBookingContractCancellationState;
import io.trippay.sdk.payment.model.AggregateBookingContractCaptureCurrenciesByAccountResponse;
import io.trippay.sdk.payment.model.BeneficiaryAggregateData;
import io.trippay.sdk.payment.model.BookingContract;
import io.trippay.sdk.payment.model.BookingContractCancellableResponse;
import io.trippay.sdk.payment.model.CancelBookingContractRequest;
import io.trippay.sdk.payment.model.ExternalBookingContract;
import io.trippay.sdk.payment.model.ImmediateRefundRequest;
import io.trippay.sdk.payment.model.PageBookingContract;
import io.trippay.sdk.payment.model.PayableContract;
import io.trippay.sdk.payment.model.PayableContractResponse;
import io.trippay.sdk.payment.model.RawBookingContract;
import io.trippay.sdk.payment.model.RefundRequest;
import io.trippay.sdk.payment.model.State;
import io.trippay.sdk.payment.model.TotalAggregateFunds;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.stream.Collectors;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.web.reactive.function.client.WebClient.ResponseSpec;
import org.springframework.web.reactive.function.client.WebClientResponseException;
import org.springframework.core.io.FileSystemResource;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import reactor.core.publisher.Mono;
import reactor.core.publisher.Flux;
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-12T10:13:49.239999511+07:00[Asia/Bangkok]")
public class ContractApi {
private ApiClient apiClient;
public ContractApi() {
this(new ApiClient());
}
@Autowired
public ContractApi(ApiClient apiClient) {
this.apiClient = apiClient;
}
public ApiClient getApiClient() {
return apiClient;
}
public void setApiClient(ApiClient apiClient) {
this.apiClient = apiClient;
}
/**
* Cancel booking
* Cancels a booking contract. Based on the type of cancellation policy, will do a refund or partial refund to the payment method.
* 200 - OK
* @param identifier Booking contract identifier
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return BookingContract
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec cancelBookingContractRequestCreation(String identifier, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
Object postBody = cancelBookingContractRequest;
// verify the required parameter 'identifier' is set
if (identifier == null) {
throw new WebClientResponseException("Missing the required parameter 'identifier' when calling cancelBookingContract", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// verify the required parameter 'cancelBookingContractRequest' is set
if (cancelBookingContractRequest == null) {
throw new WebClientResponseException("Missing the required parameter 'cancelBookingContractRequest' when calling cancelBookingContract", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("identifier", identifier);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/contract/{identifier}/cancel", HttpMethod.PATCH, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Cancel booking
* Cancels a booking contract. Based on the type of cancellation policy, will do a refund or partial refund to the payment method.
* 200 - OK
* @param identifier Booking contract identifier
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return BookingContract
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono cancelBookingContract(String identifier, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return cancelBookingContractRequestCreation(identifier, cancelBookingContractRequest, winkVersion).bodyToMono(localVarReturnType);
}
/**
* Cancel booking
* Cancels a booking contract. Based on the type of cancellation policy, will do a refund or partial refund to the payment method.
* 200 - OK
* @param identifier Booking contract identifier
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return ResponseEntity<BookingContract>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono> cancelBookingContractWithHttpInfo(String identifier, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return cancelBookingContractRequestCreation(identifier, cancelBookingContractRequest, winkVersion).toEntity(localVarReturnType);
}
/**
* Cancel booking
* Cancels a booking contract. Based on the type of cancellation policy, will do a refund or partial refund to the payment method.
* 200 - OK
* @param identifier Booking contract identifier
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec cancelBookingContractWithResponseSpec(String identifier, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
return cancelBookingContractRequestCreation(identifier, cancelBookingContractRequest, winkVersion);
}
/**
* Cancel group bookings
* Cancels a group booking contract. All bookings under the same traceId.
*
200 - OK
* @param traceId Booking contract traceId
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return List<BookingContract>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec cancelGroupBookingContractRequestCreation(String traceId, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
Object postBody = cancelBookingContractRequest;
// verify the required parameter 'traceId' is set
if (traceId == null) {
throw new WebClientResponseException("Missing the required parameter 'traceId' when calling cancelGroupBookingContract", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// verify the required parameter 'cancelBookingContractRequest' is set
if (cancelBookingContractRequest == null) {
throw new WebClientResponseException("Missing the required parameter 'cancelBookingContractRequest' when calling cancelGroupBookingContract", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("traceId", traceId);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/contract/list/{traceId}/cancel", HttpMethod.PATCH, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Cancel group bookings
* Cancels a group booking contract. All bookings under the same traceId.
* 200 - OK
* @param traceId Booking contract traceId
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return List<BookingContract>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Flux cancelGroupBookingContract(String traceId, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return cancelGroupBookingContractRequestCreation(traceId, cancelBookingContractRequest, winkVersion).bodyToFlux(localVarReturnType);
}
/**
* Cancel group bookings
* Cancels a group booking contract. All bookings under the same traceId.
* 200 - OK
* @param traceId Booking contract traceId
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return ResponseEntity<List<BookingContract>>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono>> cancelGroupBookingContractWithHttpInfo(String traceId, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return cancelGroupBookingContractRequestCreation(traceId, cancelBookingContractRequest, winkVersion).toEntityList(localVarReturnType);
}
/**
* Cancel group bookings
* Cancels a group booking contract. All bookings under the same traceId.
* 200 - OK
* @param traceId Booking contract traceId
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec cancelGroupBookingContractWithResponseSpec(String traceId, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
return cancelGroupBookingContractRequestCreation(traceId, cancelBookingContractRequest, winkVersion);
}
/**
* Create payable contracts
* Returns a list of contracts that can be used alongside payment widget to initiate a payment.
*
200 - OK
* @param rawBookingContract The rawBookingContract parameter
* @param winkVersion The winkVersion parameter
* @return List<PayableContractResponse>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec createPayableContractsRequestCreation(RawBookingContract rawBookingContract, String winkVersion) throws WebClientResponseException {
Object postBody = rawBookingContract;
// verify the required parameter 'rawBookingContract' is set
if (rawBookingContract == null) {
throw new WebClientResponseException("Missing the required parameter 'rawBookingContract' when calling createPayableContracts", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/contract/payable", HttpMethod.POST, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Create payable contracts
* Returns a list of contracts that can be used alongside payment widget to initiate a payment.
* 200 - OK
* @param rawBookingContract The rawBookingContract parameter
* @param winkVersion The winkVersion parameter
* @return List<PayableContractResponse>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Flux createPayableContracts(RawBookingContract rawBookingContract, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return createPayableContractsRequestCreation(rawBookingContract, winkVersion).bodyToFlux(localVarReturnType);
}
/**
* Create payable contracts
* Returns a list of contracts that can be used alongside payment widget to initiate a payment.
* 200 - OK
* @param rawBookingContract The rawBookingContract parameter
* @param winkVersion The winkVersion parameter
* @return ResponseEntity<List<PayableContractResponse>>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono>> createPayableContractsWithHttpInfo(RawBookingContract rawBookingContract, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return createPayableContractsRequestCreation(rawBookingContract, winkVersion).toEntityList(localVarReturnType);
}
/**
* Create payable contracts
* Returns a list of contracts that can be used alongside payment widget to initiate a payment.
* 200 - OK
* @param rawBookingContract The rawBookingContract parameter
* @param winkVersion The winkVersion parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec createPayableContractsWithResponseSpec(RawBookingContract rawBookingContract, String winkVersion) throws WebClientResponseException {
return createPayableContractsRequestCreation(rawBookingContract, winkVersion);
}
/**
* Immediate group refund
* In the event that a booking is not possible on the partner site due to lack of availability, or similar. This endpoint offers a 3-minute window to let that partner refund the traveler 100% of her funds.
*
200 - OK
* @param traceId Booking contract traceId
* @param immediateRefundRequest Accompanying payload that described the optional reason for using this endpoint.
* @param winkVersion The winkVersion parameter
* @return List<BookingContract>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec immediateGroupRefundRequestCreation(String traceId, ImmediateRefundRequest immediateRefundRequest, String winkVersion) throws WebClientResponseException {
Object postBody = immediateRefundRequest;
// verify the required parameter 'traceId' is set
if (traceId == null) {
throw new WebClientResponseException("Missing the required parameter 'traceId' when calling immediateGroupRefund", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// verify the required parameter 'immediateRefundRequest' is set
if (immediateRefundRequest == null) {
throw new WebClientResponseException("Missing the required parameter 'immediateRefundRequest' when calling immediateGroupRefund", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("traceId", traceId);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/contract/list/{traceId}/immediate-refund", HttpMethod.PATCH, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Immediate group refund
* In the event that a booking is not possible on the partner site due to lack of availability, or similar. This endpoint offers a 3-minute window to let that partner refund the traveler 100% of her funds.
* 200 - OK
* @param traceId Booking contract traceId
* @param immediateRefundRequest Accompanying payload that described the optional reason for using this endpoint.
* @param winkVersion The winkVersion parameter
* @return List<BookingContract>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Flux immediateGroupRefund(String traceId, ImmediateRefundRequest immediateRefundRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return immediateGroupRefundRequestCreation(traceId, immediateRefundRequest, winkVersion).bodyToFlux(localVarReturnType);
}
/**
* Immediate group refund
* In the event that a booking is not possible on the partner site due to lack of availability, or similar. This endpoint offers a 3-minute window to let that partner refund the traveler 100% of her funds.
* 200 - OK
* @param traceId Booking contract traceId
* @param immediateRefundRequest Accompanying payload that described the optional reason for using this endpoint.
* @param winkVersion The winkVersion parameter
* @return ResponseEntity<List<BookingContract>>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono>> immediateGroupRefundWithHttpInfo(String traceId, ImmediateRefundRequest immediateRefundRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return immediateGroupRefundRequestCreation(traceId, immediateRefundRequest, winkVersion).toEntityList(localVarReturnType);
}
/**
* Immediate group refund
* In the event that a booking is not possible on the partner site due to lack of availability, or similar. This endpoint offers a 3-minute window to let that partner refund the traveler 100% of her funds.
* 200 - OK
* @param traceId Booking contract traceId
* @param immediateRefundRequest Accompanying payload that described the optional reason for using this endpoint.
* @param winkVersion The winkVersion parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec immediateGroupRefundWithResponseSpec(String traceId, ImmediateRefundRequest immediateRefundRequest, String winkVersion) throws WebClientResponseException {
return immediateGroupRefundRequestCreation(traceId, immediateRefundRequest, winkVersion);
}
/**
* Immediate refund
* In the event that a booking is not possible on the partner site due to lack of availability, or similar. This endpoint offers a 3-minute window to let that partner refund the traveler 100% of her funds.
*
200 - OK
* @param identifier Booking contract identifier
* @param immediateRefundRequest Accompanying payload that described the optional reason for using this endpoint.
* @param winkVersion The winkVersion parameter
* @return BookingContract
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec immediateRefundRequestCreation(String identifier, ImmediateRefundRequest immediateRefundRequest, String winkVersion) throws WebClientResponseException {
Object postBody = immediateRefundRequest;
// verify the required parameter 'identifier' is set
if (identifier == null) {
throw new WebClientResponseException("Missing the required parameter 'identifier' when calling immediateRefund", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// verify the required parameter 'immediateRefundRequest' is set
if (immediateRefundRequest == null) {
throw new WebClientResponseException("Missing the required parameter 'immediateRefundRequest' when calling immediateRefund", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("identifier", identifier);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/contract/{identifier}/immediate-refund", HttpMethod.PATCH, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Immediate refund
* In the event that a booking is not possible on the partner site due to lack of availability, or similar. This endpoint offers a 3-minute window to let that partner refund the traveler 100% of her funds.
* 200 - OK
* @param identifier Booking contract identifier
* @param immediateRefundRequest Accompanying payload that described the optional reason for using this endpoint.
* @param winkVersion The winkVersion parameter
* @return BookingContract
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono immediateRefund(String identifier, ImmediateRefundRequest immediateRefundRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return immediateRefundRequestCreation(identifier, immediateRefundRequest, winkVersion).bodyToMono(localVarReturnType);
}
/**
* Immediate refund
* In the event that a booking is not possible on the partner site due to lack of availability, or similar. This endpoint offers a 3-minute window to let that partner refund the traveler 100% of her funds.
* 200 - OK
* @param identifier Booking contract identifier
* @param immediateRefundRequest Accompanying payload that described the optional reason for using this endpoint.
* @param winkVersion The winkVersion parameter
* @return ResponseEntity<BookingContract>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono> immediateRefundWithHttpInfo(String identifier, ImmediateRefundRequest immediateRefundRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return immediateRefundRequestCreation(identifier, immediateRefundRequest, winkVersion).toEntity(localVarReturnType);
}
/**
* Immediate refund
* In the event that a booking is not possible on the partner site due to lack of availability, or similar. This endpoint offers a 3-minute window to let that partner refund the traveler 100% of her funds.
* 200 - OK
* @param identifier Booking contract identifier
* @param immediateRefundRequest Accompanying payload that described the optional reason for using this endpoint.
* @param winkVersion The winkVersion parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec immediateRefundWithResponseSpec(String identifier, ImmediateRefundRequest immediateRefundRequest, String winkVersion) throws WebClientResponseException {
return immediateRefundRequestCreation(identifier, immediateRefundRequest, winkVersion);
}
/**
* Contract cancellable
* Returns whether a booking can be cancelled or not and any rules associated with cancelling.
*
200 - OK
* @param identifier Booking contract identifier
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return BookingContractCancellableResponse
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec isContractCancellableRequestCreation(String identifier, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
Object postBody = cancelBookingContractRequest;
// verify the required parameter 'identifier' is set
if (identifier == null) {
throw new WebClientResponseException("Missing the required parameter 'identifier' when calling isContractCancellable", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// verify the required parameter 'cancelBookingContractRequest' is set
if (cancelBookingContractRequest == null) {
throw new WebClientResponseException("Missing the required parameter 'cancelBookingContractRequest' when calling isContractCancellable", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("identifier", identifier);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/contract/{identifier}/cancellable", HttpMethod.POST, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Contract cancellable
* Returns whether a booking can be cancelled or not and any rules associated with cancelling.
* 200 - OK
* @param identifier Booking contract identifier
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return BookingContractCancellableResponse
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono isContractCancellable(String identifier, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return isContractCancellableRequestCreation(identifier, cancelBookingContractRequest, winkVersion).bodyToMono(localVarReturnType);
}
/**
* Contract cancellable
* Returns whether a booking can be cancelled or not and any rules associated with cancelling.
* 200 - OK
* @param identifier Booking contract identifier
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return ResponseEntity<BookingContractCancellableResponse>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono> isContractCancellableWithHttpInfo(String identifier, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return isContractCancellableRequestCreation(identifier, cancelBookingContractRequest, winkVersion).toEntity(localVarReturnType);
}
/**
* Contract cancellable
* Returns whether a booking can be cancelled or not and any rules associated with cancelling.
* 200 - OK
* @param identifier Booking contract identifier
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec isContractCancellableWithResponseSpec(String identifier, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion) throws WebClientResponseException {
return isContractCancellableRequestCreation(identifier, cancelBookingContractRequest, winkVersion);
}
/**
* Group contract cancellable
* Returns whether a booking can be cancelled or not and any rules associated with cancelling.
*
200 - OK
* @param traceId Booking contract traceId
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return List<BookingContractCancellableResponse>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec isGroupContractCancellableRequestCreation(String traceId, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion, String accept) throws WebClientResponseException {
Object postBody = cancelBookingContractRequest;
// verify the required parameter 'traceId' is set
if (traceId == null) {
throw new WebClientResponseException("Missing the required parameter 'traceId' when calling isGroupContractCancellable", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// verify the required parameter 'cancelBookingContractRequest' is set
if (cancelBookingContractRequest == null) {
throw new WebClientResponseException("Missing the required parameter 'cancelBookingContractRequest' when calling isGroupContractCancellable", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("traceId", traceId);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
if (accept != null)
headerParams.add("Accept", apiClient.parameterToString(accept));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/contract/list/{traceId}/cancellable", HttpMethod.POST, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Group contract cancellable
* Returns whether a booking can be cancelled or not and any rules associated with cancelling.
* 200 - OK
* @param traceId Booking contract traceId
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return List<BookingContractCancellableResponse>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Flux isGroupContractCancellable(String traceId, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion, String accept) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return isGroupContractCancellableRequestCreation(traceId, cancelBookingContractRequest, winkVersion, accept).bodyToFlux(localVarReturnType);
}
/**
* Group contract cancellable
* Returns whether a booking can be cancelled or not and any rules associated with cancelling.
* 200 - OK
* @param traceId Booking contract traceId
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return ResponseEntity<List<BookingContractCancellableResponse>>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono>> isGroupContractCancellableWithHttpInfo(String traceId, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion, String accept) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return isGroupContractCancellableRequestCreation(traceId, cancelBookingContractRequest, winkVersion, accept).toEntityList(localVarReturnType);
}
/**
* Group contract cancellable
* Returns whether a booking can be cancelled or not and any rules associated with cancelling.
* 200 - OK
* @param traceId Booking contract traceId
* @param cancelBookingContractRequest The cancelBookingContractRequest parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec isGroupContractCancellableWithResponseSpec(String traceId, CancelBookingContractRequest cancelBookingContractRequest, String winkVersion, String accept) throws WebClientResponseException {
return isGroupContractCancellableRequestCreation(traceId, cancelBookingContractRequest, winkVersion, accept);
}
/**
* Request refund
* Requests a refund for a booking contract. Creates a refund request record that needs to be approved by a payment admin.
*
200 - OK
* @param identifier Booking contract identifier
* @param refundRequest The refundRequest parameter
* @param winkVersion The winkVersion parameter
* @return BookingContract
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec requestRefundRequestCreation(String identifier, RefundRequest refundRequest, String winkVersion) throws WebClientResponseException {
Object postBody = refundRequest;
// verify the required parameter 'identifier' is set
if (identifier == null) {
throw new WebClientResponseException("Missing the required parameter 'identifier' when calling requestRefund", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// verify the required parameter 'refundRequest' is set
if (refundRequest == null) {
throw new WebClientResponseException("Missing the required parameter 'refundRequest' when calling requestRefund", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("identifier", identifier);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/contract/{identifier}/request-refund", HttpMethod.PATCH, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Request refund
* Requests a refund for a booking contract. Creates a refund request record that needs to be approved by a payment admin.
* 200 - OK
* @param identifier Booking contract identifier
* @param refundRequest The refundRequest parameter
* @param winkVersion The winkVersion parameter
* @return BookingContract
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono requestRefund(String identifier, RefundRequest refundRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return requestRefundRequestCreation(identifier, refundRequest, winkVersion).bodyToMono(localVarReturnType);
}
/**
* Request refund
* Requests a refund for a booking contract. Creates a refund request record that needs to be approved by a payment admin.
* 200 - OK
* @param identifier Booking contract identifier
* @param refundRequest The refundRequest parameter
* @param winkVersion The winkVersion parameter
* @return ResponseEntity<BookingContract>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono> requestRefundWithHttpInfo(String identifier, RefundRequest refundRequest, String winkVersion) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return requestRefundRequestCreation(identifier, refundRequest, winkVersion).toEntity(localVarReturnType);
}
/**
* Request refund
* Requests a refund for a booking contract. Creates a refund request record that needs to be approved by a payment admin.
* 200 - OK
* @param identifier Booking contract identifier
* @param refundRequest The refundRequest parameter
* @param winkVersion The winkVersion parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec requestRefundWithResponseSpec(String identifier, RefundRequest refundRequest, String winkVersion) throws WebClientResponseException {
return requestRefundRequestCreation(identifier, refundRequest, winkVersion);
}
/**
* Retrieve aggregate beneficiary data
* Returns aggregate contract data this account identifier has participated in.
*
200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param type The type parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return List<BeneficiaryAggregateData>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec showAggregateBookingContractDataRequestCreation(String accountIdentifier, String type, String winkVersion, String accept) throws WebClientResponseException {
Object postBody = null;
// verify the required parameter 'accountIdentifier' is set
if (accountIdentifier == null) {
throw new WebClientResponseException("Missing the required parameter 'accountIdentifier' when calling showAggregateBookingContractData", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("accountIdentifier", accountIdentifier);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
queryParams.putAll(apiClient.parameterToMultiValueMap(null, "type", type));
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
if (accept != null)
headerParams.add("Accept", apiClient.parameterToString(accept));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = { };
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/account/{accountIdentifier}/contract/aggregate/beneficiary", HttpMethod.GET, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Retrieve aggregate beneficiary data
* Returns aggregate contract data this account identifier has participated in.
* 200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param type The type parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return List<BeneficiaryAggregateData>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Flux showAggregateBookingContractData(String accountIdentifier, String type, String winkVersion, String accept) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return showAggregateBookingContractDataRequestCreation(accountIdentifier, type, winkVersion, accept).bodyToFlux(localVarReturnType);
}
/**
* Retrieve aggregate beneficiary data
* Returns aggregate contract data this account identifier has participated in.
* 200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param type The type parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return ResponseEntity<List<BeneficiaryAggregateData>>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono>> showAggregateBookingContractDataWithHttpInfo(String accountIdentifier, String type, String winkVersion, String accept) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return showAggregateBookingContractDataRequestCreation(accountIdentifier, type, winkVersion, accept).toEntityList(localVarReturnType);
}
/**
* Retrieve aggregate beneficiary data
* Returns aggregate contract data this account identifier has participated in.
* 200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param type The type parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec showAggregateBookingContractDataWithResponseSpec(String accountIdentifier, String type, String winkVersion, String accept) throws WebClientResponseException {
return showAggregateBookingContractDataRequestCreation(accountIdentifier, type, winkVersion, accept);
}
/**
* Retrieve aggregate cancellation data
* Returns aggregate cancellation data this account identifier has participated in.
*
200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return List<AggregateBookingContractCancellationState>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec showAggregateCancellationDataRequestCreation(String accountIdentifier, String winkVersion, String accept) throws WebClientResponseException {
Object postBody = null;
// verify the required parameter 'accountIdentifier' is set
if (accountIdentifier == null) {
throw new WebClientResponseException("Missing the required parameter 'accountIdentifier' when calling showAggregateCancellationData", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("accountIdentifier", accountIdentifier);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
if (accept != null)
headerParams.add("Accept", apiClient.parameterToString(accept));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = { };
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/account/{accountIdentifier}/contract/aggregate/cancellation", HttpMethod.GET, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Retrieve aggregate cancellation data
* Returns aggregate cancellation data this account identifier has participated in.
* 200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return List<AggregateBookingContractCancellationState>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Flux showAggregateCancellationData(String accountIdentifier, String winkVersion, String accept) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return showAggregateCancellationDataRequestCreation(accountIdentifier, winkVersion, accept).bodyToFlux(localVarReturnType);
}
/**
* Retrieve aggregate cancellation data
* Returns aggregate cancellation data this account identifier has participated in.
* 200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return ResponseEntity<List<AggregateBookingContractCancellationState>>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono>> showAggregateCancellationDataWithHttpInfo(String accountIdentifier, String winkVersion, String accept) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return showAggregateCancellationDataRequestCreation(accountIdentifier, winkVersion, accept).toEntityList(localVarReturnType);
}
/**
* Retrieve aggregate cancellation data
* Returns aggregate cancellation data this account identifier has participated in.
* 200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec showAggregateCancellationDataWithResponseSpec(String accountIdentifier, String winkVersion, String accept) throws WebClientResponseException {
return showAggregateCancellationDataRequestCreation(accountIdentifier, winkVersion, accept);
}
/**
* Retrieve capture currencies
* Returns a list of capture currencies and amounts for the account identifier.
*
200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param state The state parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return AggregateBookingContractCaptureCurrenciesByAccountResponse
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec showCaptureCurrenciesRequestCreation(String accountIdentifier, String state, String winkVersion, String accept) throws WebClientResponseException {
Object postBody = null;
// verify the required parameter 'accountIdentifier' is set
if (accountIdentifier == null) {
throw new WebClientResponseException("Missing the required parameter 'accountIdentifier' when calling showCaptureCurrencies", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("accountIdentifier", accountIdentifier);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
queryParams.putAll(apiClient.parameterToMultiValueMap(null, "state", state));
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
if (accept != null)
headerParams.add("Accept", apiClient.parameterToString(accept));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = { };
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/account/{accountIdentifier}/contract/capture", HttpMethod.GET, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Retrieve capture currencies
* Returns a list of capture currencies and amounts for the account identifier.
* 200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param state The state parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return AggregateBookingContractCaptureCurrenciesByAccountResponse
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono showCaptureCurrencies(String accountIdentifier, String state, String winkVersion, String accept) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return showCaptureCurrenciesRequestCreation(accountIdentifier, state, winkVersion, accept).bodyToMono(localVarReturnType);
}
/**
* Retrieve capture currencies
* Returns a list of capture currencies and amounts for the account identifier.
* 200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param state The state parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return ResponseEntity<AggregateBookingContractCaptureCurrenciesByAccountResponse>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono> showCaptureCurrenciesWithHttpInfo(String accountIdentifier, String state, String winkVersion, String accept) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return showCaptureCurrenciesRequestCreation(accountIdentifier, state, winkVersion, accept).toEntity(localVarReturnType);
}
/**
* Retrieve capture currencies
* Returns a list of capture currencies and amounts for the account identifier.
* 200 - OK
* @param accountIdentifier The accountIdentifier parameter
* @param state The state parameter
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec showCaptureCurrenciesWithResponseSpec(String accountIdentifier, String state, String winkVersion, String accept) throws WebClientResponseException {
return showCaptureCurrenciesRequestCreation(accountIdentifier, state, winkVersion, accept);
}
/**
* Retrieve single contract
* Returns a booking contract by its unique identifier.
*
200 - OK
* @param identifier Booking contract identifier
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return BookingContract
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec showContractRequestCreation(String identifier, String winkVersion, String accept) throws WebClientResponseException {
Object postBody = null;
// verify the required parameter 'identifier' is set
if (identifier == null) {
throw new WebClientResponseException("Missing the required parameter 'identifier' when calling showContract", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("identifier", identifier);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
if (accept != null)
headerParams.add("Accept", apiClient.parameterToString(accept));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = { };
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return apiClient.invokeAPI("/api/contract/{identifier}", HttpMethod.GET, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* Retrieve single contract
* Returns a booking contract by its unique identifier.
* 200 - OK
* @param identifier Booking contract identifier
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return BookingContract
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono showContract(String identifier, String winkVersion, String accept) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return showContractRequestCreation(identifier, winkVersion, accept).bodyToMono(localVarReturnType);
}
/**
* Retrieve single contract
* Returns a booking contract by its unique identifier.
* 200 - OK
* @param identifier Booking contract identifier
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return ResponseEntity<BookingContract>
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public Mono> showContractWithHttpInfo(String identifier, String winkVersion, String accept) throws WebClientResponseException {
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {};
return showContractRequestCreation(identifier, winkVersion, accept).toEntity(localVarReturnType);
}
/**
* Retrieve single contract
* Returns a booking contract by its unique identifier.
* 200 - OK
* @param identifier Booking contract identifier
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return ResponseSpec
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
public ResponseSpec showContractWithResponseSpec(String identifier, String winkVersion, String accept) throws WebClientResponseException {
return showContractRequestCreation(identifier, winkVersion, accept);
}
/**
* Retrieve single contract for external account
* Loads a booking contract based on external account identifier and actual contract identifier.
*
200 - OK
* @param externalAccountIdentifier Show contract owned by this external account
* @param bookingContractIdentifier Booking contract identifier
* @param winkVersion The winkVersion parameter
* @param accept The accept parameter
* @return ExternalBookingContract
* @throws WebClientResponseException if an error occurs while attempting to invoke the API
*/
private ResponseSpec showContractForExternalAccountRequestCreation(String externalAccountIdentifier, String bookingContractIdentifier, String winkVersion, String accept) throws WebClientResponseException {
Object postBody = null;
// verify the required parameter 'externalAccountIdentifier' is set
if (externalAccountIdentifier == null) {
throw new WebClientResponseException("Missing the required parameter 'externalAccountIdentifier' when calling showContractForExternalAccount", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// verify the required parameter 'bookingContractIdentifier' is set
if (bookingContractIdentifier == null) {
throw new WebClientResponseException("Missing the required parameter 'bookingContractIdentifier' when calling showContractForExternalAccount", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null);
}
// create path and map variables
final Map pathParams = new HashMap();
pathParams.put("externalAccountIdentifier", externalAccountIdentifier);
pathParams.put("bookingContractIdentifier", bookingContractIdentifier);
final MultiValueMap queryParams = new LinkedMultiValueMap();
final HttpHeaders headerParams = new HttpHeaders();
final MultiValueMap cookieParams = new LinkedMultiValueMap();
final MultiValueMap formParams = new LinkedMultiValueMap();
if (winkVersion != null)
headerParams.add("Wink-Version", apiClient.parameterToString(winkVersion));
if (accept != null)
headerParams.add("Accept", apiClient.parameterToString(accept));
final String[] localVarAccepts = {
"application/json"
};
final List localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = { };
final MediaType localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "oauth2ClientCredentials" };
ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference