Skip to content

Commit 67dbf14

Browse files
committed
Merge pull request #1 from ccpmark/chore/adding-isAllDay-to-event-booking
Added isAllDay parameter to Event booking class.
2 parents 9a8fd94 + 58850db commit 67dbf14

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • src/main/java/com/robinpowered/sdk/model

src/main/java/com/robinpowered/sdk/model/Event.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,16 +274,18 @@ public static class Booking {
274274
private final String description;
275275
private final DateTime startedAt;
276276
private final DateTime endedAt;
277+
private final boolean isAllDay;
277278
private final List<Invitee.Invitation> invitees;
278279

279280
public Booking(String ownerRef, String title, String description,
280-
DateTime startedAt, DateTime endedAt, List<Invitee.Invitation> invitees) {
281+
DateTime startedAt, DateTime endedAt, boolean isAllDay, List<Invitee.Invitation> invitees) {
281282

282283
this.ownerRef = ownerRef;
283284
this.title = title;
284285
this.description = description;
285286
this.startedAt = startedAt;
286287
this.endedAt = endedAt;
288+
this.isAllDay = isAllDay;
287289
this.invitees = invitees;
288290
}
289291
}

0 commit comments

Comments
 (0)