Skip to content

Commit

Permalink
Fix wrong name: time -> timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
draperunner committed Oct 6, 2023
1 parent d338e5e commit c5f20e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ An update or event related to a ShareDocumentsRequest
|Name|Type|Required|Description|
|----|----|--------|-----------|
|eventType|[ShareDocumentsRequestEventType](#sharedocumentsrequesteventsharedocumentsrequesteventtype)|yes|The type of event that has occurred|
|time|ZonedDateTime|yes|When the event occurred|
|timestamp|ZonedDateTime|yes|When the event occurred|
|documentIds|List|yes|The IDs of the documents related to this specific event|

### ShareDocumentsRequestEvent.ShareDocumentsRequestEventType
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class ShareDocumentsRequestEvent implements DataType {

@XmlElement(name = "timestamp", required = true)
@Description("When the event occurred")
ZonedDateTime time;
ZonedDateTime timestamp;

@XmlElement(name = "document-ids", required = true)
@Description("The IDs of the documents related to this specific event")
Expand Down

0 comments on commit c5f20e6

Please sign in to comment.