Class AddOnApi
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<UpgradeView> addMultimedia(String hotelIdentifier, String addOnIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) Add Multimedia Uploads a videos and/or images to an add-on identified by its identifierreactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> addMultimediaWithHttpInfo(String hotelIdentifier, String addOnIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) Add Multimedia Uploads a videos and/or images to an add-on identified by its identifierorg.springframework.web.reactive.function.client.WebClient.ResponseSpecaddMultimediaWithResponseSpec(String hotelIdentifier, String addOnIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) Add Multimedia Uploads a videos and/or images to an add-on identified by its identifierreactor.core.publisher.Mono<UpgradeView> createAddOn(String hotelIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) Create Add-On Create a new add-on.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> createAddOnWithHttpInfo(String hotelIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) Create Add-On Create a new add-on.org.springframework.web.reactive.function.client.WebClient.ResponseSpeccreateAddOnWithResponseSpec(String hotelIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) Create Add-On Create a new add-on.reactor.core.publisher.Mono<RemoveEntryResponse> removeAddOn(String hotelIdentifier, String addOnIdentifier, String winkVersion) Delete Add-On Delete an add-on by its identifierreactor.core.publisher.Mono<org.springframework.http.ResponseEntity<RemoveEntryResponse>> removeAddOnWithHttpInfo(String hotelIdentifier, String addOnIdentifier, String winkVersion) Delete Add-On Delete an add-on by its identifierorg.springframework.web.reactive.function.client.WebClient.ResponseSpecremoveAddOnWithResponseSpec(String hotelIdentifier, String addOnIdentifier, String winkVersion) Delete Add-On Delete an add-on by its identifierreactor.core.publisher.Mono<UpgradeView> removeMultimedia1(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, String winkVersion) Delete Multimedia Remove media from an existing add-on.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> removeMultimedia1WithHttpInfo(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, String winkVersion) Delete Multimedia Remove media from an existing add-on.org.springframework.web.reactive.function.client.WebClient.ResponseSpecremoveMultimedia1WithResponseSpec(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, String winkVersion) Delete Multimedia Remove media from an existing add-on.voidsetApiClient(ApiClient apiClient) reactor.core.publisher.Mono<UpgradeView> Show Add-On Retrieve an add-on by its identifierreactor.core.publisher.Flux<UpgradeView> showAddOns(String hotelIdentifier, String winkVersion) Show Add-Ons Retrieve a list of all add-ons for property.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<List<UpgradeView>>> showAddOnsWithHttpInfo(String hotelIdentifier, String winkVersion) Show Add-Ons Retrieve a list of all add-ons for property.org.springframework.web.reactive.function.client.WebClient.ResponseSpecshowAddOnsWithResponseSpec(String hotelIdentifier, String winkVersion) Show Add-Ons Retrieve a list of all add-ons for property.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> showAddOnWithHttpInfo(String hotelIdentifier, String addOnIdentifier, String winkVersion) Show Add-On Retrieve an add-on by its identifierorg.springframework.web.reactive.function.client.WebClient.ResponseSpecshowAddOnWithResponseSpec(String hotelIdentifier, String addOnIdentifier, String winkVersion) Show Add-On Retrieve an add-on by its identifierreactor.core.publisher.Mono<UpgradeView> updateAddOn(String hotelIdentifier, String addOnIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) Update Add-On Update an existing add-on.reactor.core.publisher.Mono<UpgradeView> updateAddOnMultimedia(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) Update Multimedia Update media meta data for a specific package media entry.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> updateAddOnMultimediaWithHttpInfo(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) Update Multimedia Update media meta data for a specific package media entry.org.springframework.web.reactive.function.client.WebClient.ResponseSpecupdateAddOnMultimediaWithResponseSpec(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) Update Multimedia Update media meta data for a specific package media entry.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> updateAddOnWithHttpInfo(String hotelIdentifier, String addOnIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) Update Add-On Update an existing add-on.org.springframework.web.reactive.function.client.WebClient.ResponseSpecupdateAddOnWithResponseSpec(String hotelIdentifier, String addOnIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) Update Add-On Update an existing add-on.reactor.core.publisher.Mono<UpgradeView> uploadBinaryAddOnMedia(String hotelIdentifier, String addOnIdentifier, List<File> files) Upload Binary Multimedia Upload a list of binary / multipart videos and/or images to an existing add-on.reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> uploadBinaryAddOnMediaWithHttpInfo(String hotelIdentifier, String addOnIdentifier, List<File> files) Upload Binary Multimedia Upload a list of binary / multipart videos and/or images to an existing add-on.org.springframework.web.reactive.function.client.WebClient.ResponseSpecuploadBinaryAddOnMediaWithResponseSpec(String hotelIdentifier, String addOnIdentifier, List<File> files) Upload Binary Multimedia Upload a list of binary / multipart videos and/or images to an existing add-on.
-
Constructor Details
-
AddOnApi
public AddOnApi() -
AddOnApi
-
-
Method Details
-
getApiClient
-
setApiClient
-
addMultimedia
public reactor.core.publisher.Mono<UpgradeView> addMultimedia(String hotelIdentifier, String addOnIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Add Multimedia Uploads a videos and/or images to an add-on identified by its identifier503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Add multimedia record to add-on record owned by this hotel identifieraddOnIdentifier- Add multimedia record to add-on with this identifiersimpleMultimedia- The simpleMultimedia parameterwinkVersion- The winkVersion parameter- Returns:
- UpgradeView
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
addMultimediaWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> addMultimediaWithHttpInfo(String hotelIdentifier, String addOnIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Add Multimedia Uploads a videos and/or images to an add-on identified by its identifier503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Add multimedia record to add-on record owned by this hotel identifieraddOnIdentifier- Add multimedia record to add-on with this identifiersimpleMultimedia- The simpleMultimedia parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseEntity<UpgradeView>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
addMultimediaWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec addMultimediaWithResponseSpec(String hotelIdentifier, String addOnIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Add Multimedia Uploads a videos and/or images to an add-on identified by its identifier503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Add multimedia record to add-on record owned by this hotel identifieraddOnIdentifier- Add multimedia record to add-on with this identifiersimpleMultimedia- The simpleMultimedia parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
createAddOn
public reactor.core.publisher.Mono<UpgradeView> createAddOn(String hotelIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Create Add-On Create a new add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
201 - Created
- Parameters:
hotelIdentifier- Create a new add-on record owned by this hotel identifierupsertAddOnRequest- The upsertAddOnRequest parameterwinkVersion- The winkVersion parameter- Returns:
- UpgradeView
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
createAddOnWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> createAddOnWithHttpInfo(String hotelIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Create Add-On Create a new add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
201 - Created
- Parameters:
hotelIdentifier- Create a new add-on record owned by this hotel identifierupsertAddOnRequest- The upsertAddOnRequest parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseEntity<UpgradeView>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
createAddOnWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec createAddOnWithResponseSpec(String hotelIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Create Add-On Create a new add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
201 - Created
- Parameters:
hotelIdentifier- Create a new add-on record owned by this hotel identifierupsertAddOnRequest- The upsertAddOnRequest parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
removeAddOn
public reactor.core.publisher.Mono<RemoveEntryResponse> removeAddOn(String hotelIdentifier, String addOnIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Delete Add-On Delete an add-on by its identifier503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
202 - Accepted
- Parameters:
hotelIdentifier- Remove add-on record owned by this hotel identifieraddOnIdentifier- Remove add-on record identified by this identifierwinkVersion- The winkVersion parameter- Returns:
- RemoveEntryResponse
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
removeAddOnWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<RemoveEntryResponse>> removeAddOnWithHttpInfo(String hotelIdentifier, String addOnIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Delete Add-On Delete an add-on by its identifier503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
202 - Accepted
- Parameters:
hotelIdentifier- Remove add-on record owned by this hotel identifieraddOnIdentifier- Remove add-on record identified by this identifierwinkVersion- The winkVersion parameter- Returns:
- ResponseEntity<RemoveEntryResponse>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
removeAddOnWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec removeAddOnWithResponseSpec(String hotelIdentifier, String addOnIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Delete Add-On Delete an add-on by its identifier503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
202 - Accepted
- Parameters:
hotelIdentifier- Remove add-on record owned by this hotel identifieraddOnIdentifier- Remove add-on record identified by this identifierwinkVersion- The winkVersion parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
removeMultimedia1
public reactor.core.publisher.Mono<UpgradeView> removeMultimedia1(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Delete Multimedia Remove media from an existing add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
202 - Accepted
- Parameters:
hotelIdentifier- Remove a media record from an existing add-on owned by this hotel identifier.addOnIdentifier- Remove a media record from an existing add-on identified by this identifier.multimediaIdentifier- Remove a media record with this identifierwinkVersion- The winkVersion parameter- Returns:
- UpgradeView
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
removeMultimedia1WithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> removeMultimedia1WithHttpInfo(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Delete Multimedia Remove media from an existing add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
202 - Accepted
- Parameters:
hotelIdentifier- Remove a media record from an existing add-on owned by this hotel identifier.addOnIdentifier- Remove a media record from an existing add-on identified by this identifier.multimediaIdentifier- Remove a media record with this identifierwinkVersion- The winkVersion parameter- Returns:
- ResponseEntity<UpgradeView>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
removeMultimedia1WithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec removeMultimedia1WithResponseSpec(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Delete Multimedia Remove media from an existing add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
202 - Accepted
- Parameters:
hotelIdentifier- Remove a media record from an existing add-on owned by this hotel identifier.addOnIdentifier- Remove a media record from an existing add-on identified by this identifier.multimediaIdentifier- Remove a media record with this identifierwinkVersion- The winkVersion parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAddOn
public reactor.core.publisher.Mono<UpgradeView> showAddOn(String hotelIdentifier, String addOnIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Add-On Retrieve an add-on by its identifier503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Show single add-on owned by this hotel identifieraddOnIdentifier- Show add-on record identified by this identifierwinkVersion- The winkVersion parameter- Returns:
- UpgradeView
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAddOnWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> showAddOnWithHttpInfo(String hotelIdentifier, String addOnIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Add-On Retrieve an add-on by its identifier503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Show single add-on owned by this hotel identifieraddOnIdentifier- Show add-on record identified by this identifierwinkVersion- The winkVersion parameter- Returns:
- ResponseEntity<UpgradeView>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAddOnWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec showAddOnWithResponseSpec(String hotelIdentifier, String addOnIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Add-On Retrieve an add-on by its identifier503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Show single add-on owned by this hotel identifieraddOnIdentifier- Show add-on record identified by this identifierwinkVersion- The winkVersion parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAddOns
public reactor.core.publisher.Flux<UpgradeView> showAddOns(String hotelIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Add-Ons Retrieve a list of all add-ons for property.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Show add-ons owned by this hotel identifierwinkVersion- The winkVersion parameter- Returns:
- List<UpgradeView>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAddOnsWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<List<UpgradeView>>> showAddOnsWithHttpInfo(String hotelIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Add-Ons Retrieve a list of all add-ons for property.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Show add-ons owned by this hotel identifierwinkVersion- The winkVersion parameter- Returns:
- ResponseEntity<List<UpgradeView>>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
showAddOnsWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec showAddOnsWithResponseSpec(String hotelIdentifier, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Show Add-Ons Retrieve a list of all add-ons for property.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Show add-ons owned by this hotel identifierwinkVersion- The winkVersion parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
updateAddOn
public reactor.core.publisher.Mono<UpgradeView> updateAddOn(String hotelIdentifier, String addOnIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Update Add-On Update an existing add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Update an existing add-on record owned by this hotel identifieraddOnIdentifier- Update an existing add-on record identified by this identifierupsertAddOnRequest- The upsertAddOnRequest parameterwinkVersion- The winkVersion parameter- Returns:
- UpgradeView
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
updateAddOnWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> updateAddOnWithHttpInfo(String hotelIdentifier, String addOnIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Update Add-On Update an existing add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Update an existing add-on record owned by this hotel identifieraddOnIdentifier- Update an existing add-on record identified by this identifierupsertAddOnRequest- The upsertAddOnRequest parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseEntity<UpgradeView>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
updateAddOnWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec updateAddOnWithResponseSpec(String hotelIdentifier, String addOnIdentifier, UpsertAddOnRequest upsertAddOnRequest, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Update Add-On Update an existing add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Update an existing add-on record owned by this hotel identifieraddOnIdentifier- Update an existing add-on record identified by this identifierupsertAddOnRequest- The upsertAddOnRequest parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
updateAddOnMultimedia
public reactor.core.publisher.Mono<UpgradeView> updateAddOnMultimedia(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Update Multimedia Update media meta data for a specific package media entry.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Update existing multimedia record on add-on record owned by this hotel identifieraddOnIdentifier- Update existing multimedia record on add-on with this identifiermultimediaIdentifier- Update existing multimedia record with this identifiersimpleMultimedia- The simpleMultimedia parameterwinkVersion- The winkVersion parameter- Returns:
- UpgradeView
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
updateAddOnMultimediaWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> updateAddOnMultimediaWithHttpInfo(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Update Multimedia Update media meta data for a specific package media entry.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Update existing multimedia record on add-on record owned by this hotel identifieraddOnIdentifier- Update existing multimedia record on add-on with this identifiermultimediaIdentifier- Update existing multimedia record with this identifiersimpleMultimedia- The simpleMultimedia parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseEntity<UpgradeView>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
updateAddOnMultimediaWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec updateAddOnMultimediaWithResponseSpec(String hotelIdentifier, String addOnIdentifier, String multimediaIdentifier, SimpleMultimedia simpleMultimedia, String winkVersion) throws org.springframework.web.reactive.function.client.WebClientResponseException Update Multimedia Update media meta data for a specific package media entry.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
200 - OK
- Parameters:
hotelIdentifier- Update existing multimedia record on add-on record owned by this hotel identifieraddOnIdentifier- Update existing multimedia record on add-on with this identifiermultimediaIdentifier- Update existing multimedia record with this identifiersimpleMultimedia- The simpleMultimedia parameterwinkVersion- The winkVersion parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
uploadBinaryAddOnMedia
public reactor.core.publisher.Mono<UpgradeView> uploadBinaryAddOnMedia(String hotelIdentifier, String addOnIdentifier, List<File> files) throws org.springframework.web.reactive.function.client.WebClientResponseException Upload Binary Multimedia Upload a list of binary / multipart videos and/or images to an existing add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
207 - Multi-Status
- Parameters:
hotelIdentifier- Upload multipart files and associate them with an existing add-on owned by this hotel identifieraddOnIdentifier- Upload multipart files and associate them with an existing add-on with this identifierfiles- The files parameter- Returns:
- UpgradeView
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
uploadBinaryAddOnMediaWithHttpInfo
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<UpgradeView>> uploadBinaryAddOnMediaWithHttpInfo(String hotelIdentifier, String addOnIdentifier, List<File> files) throws org.springframework.web.reactive.function.client.WebClientResponseException Upload Binary Multimedia Upload a list of binary / multipart videos and/or images to an existing add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
207 - Multi-Status
- Parameters:
hotelIdentifier- Upload multipart files and associate them with an existing add-on owned by this hotel identifieraddOnIdentifier- Upload multipart files and associate them with an existing add-on with this identifierfiles- The files parameter- Returns:
- ResponseEntity<UpgradeView>
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-
uploadBinaryAddOnMediaWithResponseSpec
public org.springframework.web.reactive.function.client.WebClient.ResponseSpec uploadBinaryAddOnMediaWithResponseSpec(String hotelIdentifier, String addOnIdentifier, List<File> files) throws org.springframework.web.reactive.function.client.WebClientResponseException Upload Binary Multimedia Upload a list of binary / multipart videos and/or images to an existing add-on.503 - Service Unavailable
400 - Bad Request
405 - Method Not Allowed
415 - Unsupported Media Type
500 - Internal Server Error
403 - Forbidden
401 - Unauthorized
207 - Multi-Status
- Parameters:
hotelIdentifier- Upload multipart files and associate them with an existing add-on owned by this hotel identifieraddOnIdentifier- Upload multipart files and associate them with an existing add-on with this identifierfiles- The files parameter- Returns:
- ResponseSpec
- Throws:
org.springframework.web.reactive.function.client.WebClientResponseException- if an error occurs while attempting to invoke the API
-