From c9f8cab0fb520dcbb3a5abbb444d1acff3064d77 Mon Sep 17 00:00:00 2001 From: Joshua Harms Date: Thu, 16 Jan 2025 17:33:19 -0600 Subject: [PATCH] chore: add missing XML documentation on GraphResult.RequestId --- ShopifySharp/Services/Graph/GraphResult.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ShopifySharp/Services/Graph/GraphResult.cs b/ShopifySharp/Services/Graph/GraphResult.cs index 763bd4927..4e8ba0beb 100644 --- a/ShopifySharp/Services/Graph/GraphResult.cs +++ b/ShopifySharp/Services/Graph/GraphResult.cs @@ -15,6 +15,7 @@ public class GraphResult public T Data { get; set; } = default!; #endif + /// The X-Request-Id header returned by Shopify. This can be used when working with the Shopify support team to identify the failed request. public string? RequestId { get; set; } } @@ -28,6 +29,7 @@ public class GraphResult : IDisposable public IJsonElement Json { get; set; } = null!; #endif + /// The X-Request-Id header returned by Shopify. This can be used when working with the Shopify support team to identify the failed request. public string? RequestId { get; set; } public void Dispose()