@@ -89,12 +89,12 @@ CompletableFuture<CreateBookingCustomAttributeDefinitionResponse> createBookingC
8989## Example Usage
9090
9191``` java
92- CreateBookingCustomAttributeDefinitionRequest body = new CreateBookingCustomAttributeDefinitionRequest .Builder (
93- new CustomAttributeDefinition .Builder ()
92+ CreateBookingCustomAttributeDefinitionRequest body = new CreateBookingCustomAttributeDefinitionRequest .Builder (
93+ new CustomAttributeDefinition .Builder ()
9494 .build()
95- )
95+ )
9696.build();
97-
97+
9898bookingCustomAttributesApi. createBookingCustomAttributeDefinitionAsync(body). thenAccept(result - > {
9999 // TODO success callback handler
100100 System . out. println(result);
@@ -134,7 +134,7 @@ CompletableFuture<DeleteBookingCustomAttributeDefinitionResponse> deleteBookingC
134134## Example Usage
135135
136136``` java
137- String key = " key0" ;
137+ String key = " key0" ;
138138
139139bookingCustomAttributesApi. deleteBookingCustomAttributeDefinitionAsync(key). thenAccept(result - > {
140140 // TODO success callback handler
@@ -174,7 +174,7 @@ CompletableFuture<RetrieveBookingCustomAttributeDefinitionResponse> retrieveBook
174174## Example Usage
175175
176176``` java
177- String key = " key0" ;
177+ String key = " key0" ;
178178
179179bookingCustomAttributesApi. retrieveBookingCustomAttributeDefinitionAsync(key, null ). thenAccept(result - > {
180180 // TODO success callback handler
@@ -217,13 +217,13 @@ CompletableFuture<UpdateBookingCustomAttributeDefinitionResponse> updateBookingC
217217## Example Usage
218218
219219``` java
220- String key = " key0" ;
221- UpdateBookingCustomAttributeDefinitionRequest body = new UpdateBookingCustomAttributeDefinitionRequest .Builder (
222- new CustomAttributeDefinition .Builder ()
220+ String key = " key0" ;
221+ UpdateBookingCustomAttributeDefinitionRequest body = new UpdateBookingCustomAttributeDefinitionRequest .Builder (
222+ new CustomAttributeDefinition .Builder ()
223223 .build()
224- )
224+ )
225225.build();
226-
226+
227227bookingCustomAttributesApi. updateBookingCustomAttributeDefinitionAsync(key, body). thenAccept(result - > {
228228 // TODO success callback handler
229229 System . out. println(result);
@@ -263,22 +263,22 @@ CompletableFuture<BulkDeleteBookingCustomAttributesResponse> bulkDeleteBookingCu
263263## Example Usage
264264
265265``` java
266- BulkDeleteBookingCustomAttributesRequest body = new BulkDeleteBookingCustomAttributesRequest .Builder (
267- new LinkedHashMap<String , BookingCustomAttributeDeleteRequest > () {{
268- put(" key0" , new BookingCustomAttributeDeleteRequest .Builder (
266+ BulkDeleteBookingCustomAttributesRequest body = new BulkDeleteBookingCustomAttributesRequest .Builder (
267+ new LinkedHashMap<String , BookingCustomAttributeDeleteRequest > () {{
268+ put(" key0" , new BookingCustomAttributeDeleteRequest .Builder (
269269 " booking_id4" ,
270270 " key0"
271- )
272- .build());
273- put(" key1" , new BookingCustomAttributeDeleteRequest .Builder (
271+ )
272+ .build());
273+ put(" key1" , new BookingCustomAttributeDeleteRequest .Builder (
274274 " booking_id4" ,
275275 " key0"
276- )
277- .build());
276+ )
277+ .build());
278278 }}
279- )
279+ )
280280.build();
281-
281+
282282bookingCustomAttributesApi. bulkDeleteBookingCustomAttributesAsync(body). thenAccept(result - > {
283283 // TODO success callback handler
284284 System . out. println(result);
@@ -318,24 +318,24 @@ CompletableFuture<BulkUpsertBookingCustomAttributesResponse> bulkUpsertBookingCu
318318## Example Usage
319319
320320``` java
321- BulkUpsertBookingCustomAttributesRequest body = new BulkUpsertBookingCustomAttributesRequest .Builder (
322- new LinkedHashMap<String , BookingCustomAttributeUpsertRequest > () {{
323- put(" key0" , new BookingCustomAttributeUpsertRequest .Builder (
321+ BulkUpsertBookingCustomAttributesRequest body = new BulkUpsertBookingCustomAttributesRequest .Builder (
322+ new LinkedHashMap<String , BookingCustomAttributeUpsertRequest > () {{
323+ put(" key0" , new BookingCustomAttributeUpsertRequest .Builder (
324324 " booking_id4" ,
325- new CustomAttribute .Builder ()
325+ new CustomAttribute .Builder ()
326326 .build()
327- )
328- .build());
329- put(" key1" , new BookingCustomAttributeUpsertRequest .Builder (
327+ )
328+ .build());
329+ put(" key1" , new BookingCustomAttributeUpsertRequest .Builder (
330330 " booking_id4" ,
331- new CustomAttribute .Builder ()
331+ new CustomAttribute .Builder ()
332332 .build()
333- )
334- .build());
333+ )
334+ .build());
335335 }}
336- )
336+ )
337337.build();
338-
338+
339339bookingCustomAttributesApi. bulkUpsertBookingCustomAttributesAsync(body). thenAccept(result - > {
340340 // TODO success callback handler
341341 System . out. println(result);
@@ -378,8 +378,8 @@ CompletableFuture<ListBookingCustomAttributesResponse> listBookingCustomAttribut
378378## Example Usage
379379
380380``` java
381- String bookingId = " booking_id4" ;
382- Boolean withDefinitions = false ;
381+ String bookingId = " booking_id4" ;
382+ Boolean withDefinitions = false ;
383383
384384bookingCustomAttributesApi. listBookingCustomAttributesAsync(bookingId, null , null , withDefinitions). thenAccept(result - > {
385385 // TODO success callback handler
@@ -422,8 +422,8 @@ CompletableFuture<DeleteBookingCustomAttributeResponse> deleteBookingCustomAttri
422422## Example Usage
423423
424424``` java
425- String bookingId = " booking_id4" ;
426- String key = " key0" ;
425+ String bookingId = " booking_id4" ;
426+ String key = " key0" ;
427427
428428bookingCustomAttributesApi. deleteBookingCustomAttributeAsync(bookingId, key). thenAccept(result - > {
429429 // TODO success callback handler
@@ -467,9 +467,9 @@ CompletableFuture<RetrieveBookingCustomAttributeResponse> retrieveBookingCustomA
467467## Example Usage
468468
469469``` java
470- String bookingId = " booking_id4" ;
471- String key = " key0" ;
472- Boolean withDefinition = false ;
470+ String bookingId = " booking_id4" ;
471+ String key = " key0" ;
472+ Boolean withDefinition = false ;
473473
474474bookingCustomAttributesApi. retrieveBookingCustomAttributeAsync(bookingId, key, withDefinition, null ). thenAccept(result - > {
475475 // TODO success callback handler
@@ -514,14 +514,14 @@ CompletableFuture<UpsertBookingCustomAttributeResponse> upsertBookingCustomAttri
514514## Example Usage
515515
516516``` java
517- String bookingId = " booking_id4" ;
518- String key = " key0" ;
519- UpsertBookingCustomAttributeRequest body = new UpsertBookingCustomAttributeRequest .Builder (
520- new CustomAttribute .Builder ()
517+ String bookingId = " booking_id4" ;
518+ String key = " key0" ;
519+ UpsertBookingCustomAttributeRequest body = new UpsertBookingCustomAttributeRequest .Builder (
520+ new CustomAttribute .Builder ()
521521 .build()
522- )
522+ )
523523.build();
524-
524+
525525bookingCustomAttributesApi. upsertBookingCustomAttributeAsync(bookingId, key, body). thenAccept(result - > {
526526 // TODO success callback handler
527527 System . out. println(result);
0 commit comments