@@ -153,26 +153,7 @@ namespace Orb.Models.Events;
153153/// request payload size, but please give us a heads up if you’re changing either
154154/// of these factors by an order of magnitude from initial setup.</para>
155155///
156- /// <para>## Testing in debug mode The ingestion API supports a debug mode, which
157- /// returns additional verbose output to indicate which event idempotency keys were
158- /// newly ingested or duplicates from previous requests. To enable this mode, mark
159- /// `debug=true` as a query parameter.</para>
160- ///
161- /// <para>If `debug=true` is not specified, the response will only contain `validation_failed`.
162- /// Orb will still honor the idempotency guarantees set [here](/events-and-metrics/event-ingestion#event-volume-and-concurrency)
163- /// in all cases.</para>
164- ///
165- /// <para>We strongly recommend that you only use debug mode as part of testing your
166- /// initial Orb integration. Once you're ready to switch to production, disable debug
167- /// mode to take advantage of improved performance and maximal throughput.</para>
168- ///
169- /// <para>#### Example: ingestion response with `debug=true`</para>
170- ///
171- /// <para>```json { "debug": { "duplicate": [], "ingested": [ "B7E83HDMfJPAunXW",
172- /// "SJs5DQJ3TnwSqEZE", "8SivfDsNKwCeAXim" ] }, "validation_failed":
173- /// [] } ```</para>
174- ///
175- /// <para>#### Example: ingestion response with `debug=false`</para>
156+ /// <para>#### Example: ingestion response</para>
176157///
177158/// <para>```json { "validation_failed": [] } ```</para>
178159///
@@ -219,8 +200,9 @@ public string? BackfillID
219200 }
220201
221202 /// <summary>
222- /// Flag to enable additional debug information in the endpoint response
203+ /// Pending Deprecation: Flag to enable additional debug information in the endpoint response
223204 /// </summary>
205+ [ Obsolete ( "deprecated" ) ]
224206 public bool ? Debug
225207 {
226208 get
0 commit comments