File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
src/main/java/io/github/vrchatapi/model Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ An event scheduled on a group's calendar
1414| ** createdAt** | ** OffsetDateTime** | | [ optional] |
1515| ** deletedAt** | ** OffsetDateTime** | | [ optional] |
1616| ** description** | ** String** | | |
17- | ** durationInMs** | ** Integer ** | | [ optional] |
17+ | ** durationInMs** | ** Long ** | | [ optional] |
1818| ** endsAt** | ** OffsetDateTime** | | |
1919| ** featured** | ** Boolean** | | [ optional] |
2020| ** guestEarlyJoinMinutes** | ** Integer** | | [ optional] |
Original file line number Diff line number Diff line change @@ -7853,6 +7853,7 @@ components:
78537853 type: string
78547854 durationInMs:
78557855 type: integer
7856+ format: int64
78567857 endsAt:
78577858 type: string
78587859 format: date-time
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ public class CalendarEvent {
8484
8585 public static final String SERIALIZED_NAME_DURATION_IN_MS = "durationInMs" ;
8686 @ SerializedName (SERIALIZED_NAME_DURATION_IN_MS )
87- private Integer durationInMs ;
87+ private Long durationInMs ;
8888
8989 public static final String SERIALIZED_NAME_ENDS_AT = "endsAt" ;
9090 @ SerializedName (SERIALIZED_NAME_ENDS_AT )
@@ -319,7 +319,7 @@ public void setDescription(String description) {
319319 }
320320
321321
322- public CalendarEvent durationInMs (Integer durationInMs ) {
322+ public CalendarEvent durationInMs (Long durationInMs ) {
323323
324324 this .durationInMs = durationInMs ;
325325 return this ;
@@ -332,12 +332,12 @@ public CalendarEvent durationInMs(Integer durationInMs) {
332332 @ javax .annotation .Nullable
333333 @ ApiModelProperty (value = "" )
334334
335- public Integer getDurationInMs () {
335+ public Long getDurationInMs () {
336336 return durationInMs ;
337337 }
338338
339339
340- public void setDurationInMs (Integer durationInMs ) {
340+ public void setDurationInMs (Long durationInMs ) {
341341 this .durationInMs = durationInMs ;
342342 }
343343
You can’t perform that action at this time.
0 commit comments