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
Copy file name to clipboardExpand all lines: taprpc/authmailboxrpc/mailbox.swagger.json
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -187,19 +187,23 @@
187
187
"properties": {
188
188
"receiver_id": {
189
189
"type": "string",
190
-
"format": "byte"
190
+
"format": "byte",
191
+
"description": "The public key identifier of the receiver of the messages that should be\nreceived through a message receive stream, encoded as the raw bytes of\nthe compressed public key."
191
192
},
192
193
"start_message_id_exclusive": {
193
194
"type": "string",
194
-
"format": "uint64"
195
+
"format": "uint64",
196
+
"title": "The exclusive start message ID, meaning messages with this ID or higher\nwill be included in the response. This allows the client to resume\nreceiving messages from a specific point without missing any. One of\nstart_message_id_exclusive, start_block_height_inclusive or\nstart_timestamp_exclusive must be at their non-default values for any\nexisting messages to be returned!"
195
197
},
196
198
"start_block_height_inclusive": {
197
199
"type": "integer",
198
-
"format": "int64"
200
+
"format": "int64",
201
+
"title": "The inclusive start block height, meaning messages from this block height\nor higher will be included in the response. This allows the client to\nfilter messages based on the block height at which they were produced.\nOne of start_message_id_exclusive, start_block_height_inclusive or\nstart_timestamp_exclusive must be at their non-default values for any\nexisting messages to be returned!"
199
202
},
200
203
"start_timestamp_exclusive": {
201
204
"type": "string",
202
-
"format": "int64"
205
+
"format": "int64",
206
+
"title": "The exclusive start timestamp in Unix epoch seconds, meaning messages\nwith a timestamp strictly greater than this value will be included in the\nresponse. This allows the client to filter messages based on their\narrival time at the server. One of start_message_id_exclusive,\nstart_block_height_inclusive or start_timestamp_exclusive must be at\ntheir non-default values for any existing messages to be returned!"
203
207
}
204
208
},
205
209
"description": "Carries the initial parameters from the client to start receiving messages."
0 commit comments