Skip to content

Commit eb2b262

Browse files
authored
fix: update checkin and checkout times in examples to ensure availabi… (#278)
1 parent ad59251 commit eb2b262

File tree

1 file changed

+2
-2
lines changed
  • examples/src/main/java/com/expediagroup/sdk/rapid/examples/services

1 file changed

+2
-2
lines changed

examples/src/main/java/com/expediagroup/sdk/rapid/examples/services/ShopService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ public class ShopService extends RapidService {
3030
public Response<List<Property>> getPropertiesAvailability(List<String> occupancy, RapidPartnerSalesProfile rapidPartnerSalesProfile) {
3131
GetAvailabilityOperationParams params = GetAvailabilityOperationParams.builder()
3232
.customerIp(Constants.CUSTOMER_IP)
33-
.checkin(LocalDate.now().plusDays(14).toString())
34-
.checkout(LocalDate.now().plusDays(15).toString())
33+
.checkin(LocalDate.now().plusDays(20).toString())
34+
.checkout(LocalDate.now().plusDays(21).toString())
3535
.currency("USD")
3636
.countryCode("US")
3737
.language("en-US")

0 commit comments

Comments
 (0)