All Downloads are FREE. Search and download functionalities are using the official Maven repository.

travel.wink.sdk.extranet.api.MasterRateApi Maven / Gradle / Ivy

There is a newer version: 30.2.1
Show newest version
package travel.wink.sdk.extranet.api;

import travel.wink.sdk.extranet.invoker.ApiClient;

import travel.wink.sdk.extranet.model.GenericErrorMessage;
import travel.wink.sdk.extranet.model.MasterRateViewSupplier;
import travel.wink.sdk.extranet.model.SetMasterRatePerkRequestSupplier;
import travel.wink.sdk.extranet.model.ShowPropertyPolicy400Response;
import travel.wink.sdk.extranet.model.ToggleMasterRateRequestSupplier;

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-06-04T22:29:13.908295668+07:00[Asia/Bangkok]")
public class MasterRateApi {
    private ApiClient apiClient;

    public MasterRateApi() {
        this(new ApiClient());
    }

    @Autowired
    public MasterRateApi(ApiClient apiClient) {
        this.apiClient = apiClient;
    }

    public ApiClient getApiClient() {
        return apiClient;
    }

    public void setApiClient(ApiClient apiClient) {
        this.apiClient = apiClient;
    }

    /**
     * Set Master Rate Perks
     * Manage perks for this master rate.
     * 

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Update existing master rate owned by this hotel identifier. * @param masterRateIdentifier Update existing master rate with this identifier. * @param setMasterRatePerkRequestSupplier The setMasterRatePerkRequestSupplier parameter * @param winkVersion The winkVersion parameter * @return MasterRateViewSupplier * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ private ResponseSpec setPerksRequestCreation(String hotelIdentifier, String masterRateIdentifier, SetMasterRatePerkRequestSupplier setMasterRatePerkRequestSupplier, String winkVersion) throws WebClientResponseException { Object postBody = setMasterRatePerkRequestSupplier; // verify the required parameter 'hotelIdentifier' is set if (hotelIdentifier == null) { throw new WebClientResponseException("Missing the required parameter 'hotelIdentifier' when calling setPerks", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null); } // verify the required parameter 'masterRateIdentifier' is set if (masterRateIdentifier == null) { throw new WebClientResponseException("Missing the required parameter 'masterRateIdentifier' when calling setPerks", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null); } // verify the required parameter 'setMasterRatePerkRequestSupplier' is set if (setMasterRatePerkRequestSupplier == null) { throw new WebClientResponseException("Missing the required parameter 'setMasterRatePerkRequestSupplier' when calling setPerks", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null); } // create path and map variables final Map pathParams = new HashMap(); pathParams.put("hotelIdentifier", hotelIdentifier); pathParams.put("masterRateIdentifier", masterRateIdentifier); 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", "application/xml", "text/xml", "text/plain" }; 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/hotel/{hotelIdentifier}/inventory/master-rate/{masterRateIdentifier}/perks", HttpMethod.PATCH, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** * Set Master Rate Perks * Manage perks for this master rate. *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Update existing master rate owned by this hotel identifier. * @param masterRateIdentifier Update existing master rate with this identifier. * @param setMasterRatePerkRequestSupplier The setMasterRatePerkRequestSupplier parameter * @param winkVersion The winkVersion parameter * @return MasterRateViewSupplier * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public Mono setPerks(String hotelIdentifier, String masterRateIdentifier, SetMasterRatePerkRequestSupplier setMasterRatePerkRequestSupplier, String winkVersion) throws WebClientResponseException { ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; return setPerksRequestCreation(hotelIdentifier, masterRateIdentifier, setMasterRatePerkRequestSupplier, winkVersion).bodyToMono(localVarReturnType); } /** * Set Master Rate Perks * Manage perks for this master rate. *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Update existing master rate owned by this hotel identifier. * @param masterRateIdentifier Update existing master rate with this identifier. * @param setMasterRatePerkRequestSupplier The setMasterRatePerkRequestSupplier parameter * @param winkVersion The winkVersion parameter * @return ResponseEntity<MasterRateViewSupplier> * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public Mono> setPerksWithHttpInfo(String hotelIdentifier, String masterRateIdentifier, SetMasterRatePerkRequestSupplier setMasterRatePerkRequestSupplier, String winkVersion) throws WebClientResponseException { ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; return setPerksRequestCreation(hotelIdentifier, masterRateIdentifier, setMasterRatePerkRequestSupplier, winkVersion).toEntity(localVarReturnType); } /** * Set Master Rate Perks * Manage perks for this master rate. *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Update existing master rate owned by this hotel identifier. * @param masterRateIdentifier Update existing master rate with this identifier. * @param setMasterRatePerkRequestSupplier The setMasterRatePerkRequestSupplier parameter * @param winkVersion The winkVersion parameter * @return ResponseSpec * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public ResponseSpec setPerksWithResponseSpec(String hotelIdentifier, String masterRateIdentifier, SetMasterRatePerkRequestSupplier setMasterRatePerkRequestSupplier, String winkVersion) throws WebClientResponseException { return setPerksRequestCreation(hotelIdentifier, masterRateIdentifier, setMasterRatePerkRequestSupplier, winkVersion); } /** * Show Master Rate * Retrieve a master rate by its identifier *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Show single master rate owned by this hotel identifier. * @param masterRateIdentifier Show single master rate with this identifier. * @param winkVersion The winkVersion parameter * @return MasterRateViewSupplier * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ private ResponseSpec showMasterRateRequestCreation(String hotelIdentifier, String masterRateIdentifier, String winkVersion) throws WebClientResponseException { Object postBody = null; // verify the required parameter 'hotelIdentifier' is set if (hotelIdentifier == null) { throw new WebClientResponseException("Missing the required parameter 'hotelIdentifier' when calling showMasterRate", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null); } // verify the required parameter 'masterRateIdentifier' is set if (masterRateIdentifier == null) { throw new WebClientResponseException("Missing the required parameter 'masterRateIdentifier' when calling showMasterRate", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null); } // create path and map variables final Map pathParams = new HashMap(); pathParams.put("hotelIdentifier", hotelIdentifier); pathParams.put("masterRateIdentifier", masterRateIdentifier); 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", "application/xml", "text/xml", "text/plain" }; 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/hotel/{hotelIdentifier}/inventory/master-rate/{masterRateIdentifier}", HttpMethod.GET, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** * Show Master Rate * Retrieve a master rate by its identifier *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Show single master rate owned by this hotel identifier. * @param masterRateIdentifier Show single master rate with this identifier. * @param winkVersion The winkVersion parameter * @return MasterRateViewSupplier * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public Mono showMasterRate(String hotelIdentifier, String masterRateIdentifier, String winkVersion) throws WebClientResponseException { ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; return showMasterRateRequestCreation(hotelIdentifier, masterRateIdentifier, winkVersion).bodyToMono(localVarReturnType); } /** * Show Master Rate * Retrieve a master rate by its identifier *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Show single master rate owned by this hotel identifier. * @param masterRateIdentifier Show single master rate with this identifier. * @param winkVersion The winkVersion parameter * @return ResponseEntity<MasterRateViewSupplier> * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public Mono> showMasterRateWithHttpInfo(String hotelIdentifier, String masterRateIdentifier, String winkVersion) throws WebClientResponseException { ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; return showMasterRateRequestCreation(hotelIdentifier, masterRateIdentifier, winkVersion).toEntity(localVarReturnType); } /** * Show Master Rate * Retrieve a master rate by its identifier *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Show single master rate owned by this hotel identifier. * @param masterRateIdentifier Show single master rate with this identifier. * @param winkVersion The winkVersion parameter * @return ResponseSpec * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public ResponseSpec showMasterRateWithResponseSpec(String hotelIdentifier, String masterRateIdentifier, String winkVersion) throws WebClientResponseException { return showMasterRateRequestCreation(hotelIdentifier, masterRateIdentifier, winkVersion); } /** * Show Master Rates * Retrieve list of master rates *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Show all master rates owned by this hotel identifier. * @param winkVersion The winkVersion parameter * @return List<MasterRateViewSupplier> * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ private ResponseSpec showMasterRates1RequestCreation(String hotelIdentifier, String winkVersion) throws WebClientResponseException { Object postBody = null; // verify the required parameter 'hotelIdentifier' is set if (hotelIdentifier == null) { throw new WebClientResponseException("Missing the required parameter 'hotelIdentifier' when calling showMasterRates1", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null); } // create path and map variables final Map pathParams = new HashMap(); pathParams.put("hotelIdentifier", hotelIdentifier); 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", "application/xml", "text/xml", "text/plain" }; 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/hotel/{hotelIdentifier}/inventory/master-rate/list", HttpMethod.GET, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** * Show Master Rates * Retrieve list of master rates *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Show all master rates owned by this hotel identifier. * @param winkVersion The winkVersion parameter * @return List<MasterRateViewSupplier> * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public Flux showMasterRates1(String hotelIdentifier, String winkVersion) throws WebClientResponseException { ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; return showMasterRates1RequestCreation(hotelIdentifier, winkVersion).bodyToFlux(localVarReturnType); } /** * Show Master Rates * Retrieve list of master rates *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Show all master rates owned by this hotel identifier. * @param winkVersion The winkVersion parameter * @return ResponseEntity<List<MasterRateViewSupplier>> * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public Mono>> showMasterRates1WithHttpInfo(String hotelIdentifier, String winkVersion) throws WebClientResponseException { ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; return showMasterRates1RequestCreation(hotelIdentifier, winkVersion).toEntityList(localVarReturnType); } /** * Show Master Rates * Retrieve list of master rates *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Show all master rates owned by this hotel identifier. * @param winkVersion The winkVersion parameter * @return ResponseSpec * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public ResponseSpec showMasterRates1WithResponseSpec(String hotelIdentifier, String winkVersion) throws WebClientResponseException { return showMasterRates1RequestCreation(hotelIdentifier, winkVersion); } /** * Toggle Master Rate * Update a master rate by its identifier *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Update existing master rate owned by this hotel identifier. * @param masterRateIdentifier Update existing master rate with this identifier. * @param toggleMasterRateRequestSupplier The toggleMasterRateRequestSupplier parameter * @param winkVersion The winkVersion parameter * @return MasterRateViewSupplier * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ private ResponseSpec toggleMasterRateRequestCreation(String hotelIdentifier, String masterRateIdentifier, ToggleMasterRateRequestSupplier toggleMasterRateRequestSupplier, String winkVersion) throws WebClientResponseException { Object postBody = toggleMasterRateRequestSupplier; // verify the required parameter 'hotelIdentifier' is set if (hotelIdentifier == null) { throw new WebClientResponseException("Missing the required parameter 'hotelIdentifier' when calling toggleMasterRate", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null); } // verify the required parameter 'masterRateIdentifier' is set if (masterRateIdentifier == null) { throw new WebClientResponseException("Missing the required parameter 'masterRateIdentifier' when calling toggleMasterRate", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null); } // verify the required parameter 'toggleMasterRateRequestSupplier' is set if (toggleMasterRateRequestSupplier == null) { throw new WebClientResponseException("Missing the required parameter 'toggleMasterRateRequestSupplier' when calling toggleMasterRate", HttpStatus.BAD_REQUEST.value(), HttpStatus.BAD_REQUEST.getReasonPhrase(), null, null, null); } // create path and map variables final Map pathParams = new HashMap(); pathParams.put("hotelIdentifier", hotelIdentifier); pathParams.put("masterRateIdentifier", masterRateIdentifier); 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", "application/xml", "text/xml", "text/plain" }; 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/hotel/{hotelIdentifier}/inventory/master-rate/{masterRateIdentifier}/toggle", HttpMethod.PATCH, pathParams, queryParams, postBody, headerParams, cookieParams, formParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType); } /** * Toggle Master Rate * Update a master rate by its identifier *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Update existing master rate owned by this hotel identifier. * @param masterRateIdentifier Update existing master rate with this identifier. * @param toggleMasterRateRequestSupplier The toggleMasterRateRequestSupplier parameter * @param winkVersion The winkVersion parameter * @return MasterRateViewSupplier * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public Mono toggleMasterRate(String hotelIdentifier, String masterRateIdentifier, ToggleMasterRateRequestSupplier toggleMasterRateRequestSupplier, String winkVersion) throws WebClientResponseException { ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; return toggleMasterRateRequestCreation(hotelIdentifier, masterRateIdentifier, toggleMasterRateRequestSupplier, winkVersion).bodyToMono(localVarReturnType); } /** * Toggle Master Rate * Update a master rate by its identifier *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Update existing master rate owned by this hotel identifier. * @param masterRateIdentifier Update existing master rate with this identifier. * @param toggleMasterRateRequestSupplier The toggleMasterRateRequestSupplier parameter * @param winkVersion The winkVersion parameter * @return ResponseEntity<MasterRateViewSupplier> * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public Mono> toggleMasterRateWithHttpInfo(String hotelIdentifier, String masterRateIdentifier, ToggleMasterRateRequestSupplier toggleMasterRateRequestSupplier, String winkVersion) throws WebClientResponseException { ParameterizedTypeReference localVarReturnType = new ParameterizedTypeReference() {}; return toggleMasterRateRequestCreation(hotelIdentifier, masterRateIdentifier, toggleMasterRateRequestSupplier, winkVersion).toEntity(localVarReturnType); } /** * Toggle Master Rate * Update a master rate by its identifier *

503 - Service Unavailable *

400 - Bad Request *

405 - Method Not Allowed *

415 - Unsupported Media Type *

500 - Internal Server Error *

403 - Forbidden *

401 - Unauthorized *

200 - OK * @param hotelIdentifier Update existing master rate owned by this hotel identifier. * @param masterRateIdentifier Update existing master rate with this identifier. * @param toggleMasterRateRequestSupplier The toggleMasterRateRequestSupplier parameter * @param winkVersion The winkVersion parameter * @return ResponseSpec * @throws WebClientResponseException if an error occurs while attempting to invoke the API */ public ResponseSpec toggleMasterRateWithResponseSpec(String hotelIdentifier, String masterRateIdentifier, ToggleMasterRateRequestSupplier toggleMasterRateRequestSupplier, String winkVersion) throws WebClientResponseException { return toggleMasterRateRequestCreation(hotelIdentifier, masterRateIdentifier, toggleMasterRateRequestSupplier, winkVersion); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy