Skip to content

Commit

Permalink
chore: add missing XML documentation on GraphResult.RequestId
Browse files Browse the repository at this point in the history
  • Loading branch information
nozzlegear committed Jan 21, 2025
1 parent 2ba0f2b commit c9f8cab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ShopifySharp/Services/Graph/GraphResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public class GraphResult<T>
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; }
}

Expand All @@ -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()
Expand Down

0 comments on commit c9f8cab

Please sign in to comment.