We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb8ceab commit 8c9f935Copy full SHA for 8c9f935
1 file changed
src/Examples/OpenApiNSwagClientExample/Worker.cs
@@ -166,6 +166,6 @@ private async Task SendOperationsRequestAsync(CancellationToken cancellationToke
166
ApiResponse<OperationsResponseDocument> operationsResponse = await _apiClient.PostOperationsAsync(operationsRequest, cancellationToken);
167
168
var newTodoItem = (DataInTodoItemResponse)operationsResponse.Result.Atomic_results.ElementAt(3).Data!;
169
- Console.WriteLine($"Created todo-item with ID {newTodoItem.Id}: {newTodoItem.Attributes?.Description ?? string.Empty}.");
+ Console.WriteLine($"Created todo-item with ID {newTodoItem.Id}: {newTodoItem.Attributes!.Description}.");
170
}
171
0 commit comments