9
9
namespace EasyPost . Services
10
10
{
11
11
/// <summary>
12
- /// Class representing a set of <a href="https://www.easypost.com/docs/api#claims"> claim-related functionality</a> .
12
+ /// Class representing a set of claim-related functionality.
13
13
/// </summary>
14
14
// ReSharper disable once ClassNeverInstantiated.Global
15
15
public class ClaimService : EasyPostService
@@ -27,7 +27,6 @@ internal ClaimService(EasyPostClient client)
27
27
28
28
/// <summary>
29
29
/// Create an <see cref="Claim"/>.
30
- /// <a href="https://www.easypost.com/docs/api#create-an-insurance">Related API documentation</a>.
31
30
/// </summary>
32
31
/// <param name="parameters">Data to use to create the <see cref="Claim"/>.</param>
33
32
/// <param name="cancellationToken"><see cref="CancellationToken"/> to use for the HTTP request.</param>
@@ -37,7 +36,6 @@ internal ClaimService(EasyPostClient client)
37
36
38
37
/// <summary>
39
38
/// List all <see cref="Claim"/>s.
40
- /// <a href="https://www.easypost.com/docs/api#retrieve-a-list-of-insurances">Related API documentation</a>.
41
39
/// </summary>
42
40
/// <param name="parameters">Parameters to filter the list of <see cref="Claim"/>s.</param>
43
41
/// <param name="cancellationToken"><see cref="CancellationToken"/> to use for the HTTP request.</param>
@@ -52,7 +50,6 @@ public async Task<ClaimCollection> All(Parameters.Claim.All parameters, Cancella
52
50
53
51
/// <summary>
54
52
/// Get the next page of a paginated <see cref="ClaimCollection"/>.
55
- /// <a href="https://www.easypost.com/docs/api#retrieve-a-list-of-insurances">Related API documentation</a>.
56
53
/// </summary>
57
54
/// <param name="collection">The <see cref="ClaimCollection"/> to get the next page of.</param>
58
55
/// <param name="pageSize">The size of the next page.</param>
@@ -64,7 +61,6 @@ public async Task<ClaimCollection> All(Parameters.Claim.All parameters, Cancella
64
61
65
62
/// <summary>
66
63
/// Retrieve an <see cref="Claim"/>.
67
- /// <a href="https://www.easypost.com/docs/api#retrieve-an-insurance">Related API documentation</a>.
68
64
/// </summary>
69
65
/// <param name="id">The ID of the <see cref="Claim"/> to retrieve.</param>
70
66
/// <param name="cancellationToken"><see cref="CancellationToken"/> to use for the HTTP request.</param>
@@ -74,7 +70,6 @@ public async Task<ClaimCollection> All(Parameters.Claim.All parameters, Cancella
74
70
75
71
/// <summary>
76
72
/// Refund an <see cref="Claim"/>.
77
- /// <a href="https://www.easypost.com/docs/api#refund-an-insurance">Related API documentation</a>.
78
73
/// </summary>
79
74
/// <param name="id">The ID of the <see cref="Claim"/> to refund.</param>
80
75
/// <param name="cancellationToken"><see cref="CancellationToken"/> to use for the HTTP request.</param>
0 commit comments