You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**end**|**Integer**| Index (zero-based) at which position this entity ends. The index is exclusive. ||
11
11
|**start**|**Integer**| Index (zero-based) at which position this entity starts. The index is inclusive. ||
12
-
|**id**|**String**| Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers. ||
12
+
|**id**|**String**| Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers. |[optional]|
13
13
|**username**|**String**| The Twitter handle (screen name) of this user. ||
|**id**|**String**| Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers. ||
11
+
|**id**|**String**| Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers. |[optional]|
12
12
|**username**|**String**| The Twitter handle (screen name) of this user. ||
Copy file name to clipboardExpand all lines: src/main/java/com/twitter/clientlib/model/MentionEntity.java
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -137,8 +137,8 @@ public MentionEntity id(String id) {
137
137
* Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers.
138
138
* @return id
139
139
**/
140
-
@javax.annotation.Nonnull
141
-
@ApiModelProperty(example = "2244994945", required = true, value = "Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers.")
140
+
@javax.annotation.Nullable
141
+
@ApiModelProperty(example = "2244994945", value = "Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers.")
Copy file name to clipboardExpand all lines: src/main/java/com/twitter/clientlib/model/MentionFields.java
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -80,8 +80,8 @@ public MentionFields id(String id) {
80
80
* Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers.
81
81
* @return id
82
82
**/
83
-
@javax.annotation.Nonnull
84
-
@ApiModelProperty(example = "2244994945", required = true, value = "Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers.")
83
+
@javax.annotation.Nullable
84
+
@ApiModelProperty(example = "2244994945", value = "Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers.")
0 commit comments