Skip to content

Commit e81a1af

Browse files
author
Ivo Salmre
committed
Fixing one misspelling in parsing cancelled reservations. CB API uses "canceled" with one "l"
1 parent 340864b commit e81a1af

File tree

2 files changed

+3
-754
lines changed

2 files changed

+3
-754
lines changed

CloudbedsData/CloudbedsReservationRoom_static.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
/// </summary>
77
partial class CloudbedsReservationRoom
88
{
9-
public const string RoomStatus_Cancelled = "cancelled";
9+
//[2024-11-04] API docs indicate the status is "canceled" with one "l"
10+
//[2024-11-04] public const string RoomStatus_Cancelled = "cancelled";
11+
public const string RoomStatus_Cancelled = "canceled";
1012
public const string RoomStatus_InHouse = "in_house";
1113
public const string RoomStatus_CheckedOut = "checked_out";
1214
public const string RoomStatus_NotCheckedIn = "not_checked_in";

0 commit comments

Comments
 (0)