@@ -24,7 +24,8 @@ public enum JsonApiEndpointsCopy
24
24
GetSingle = 1 << 1 ,
25
25
26
26
/// <summary>
27
- /// Represents the endpoint to get a secondary resource or collection of secondary resources. Example: <code><![CDATA[
27
+ /// Represents the endpoint to get a secondary resource or collection of secondary resources. Example:
28
+ /// <code><![CDATA[
28
29
/// GET /articles/1/author HTTP/1.1
29
30
/// ]]></code>
30
31
/// </summary>
@@ -41,7 +42,8 @@ public enum JsonApiEndpointsCopy
41
42
GetRelationship = 1 << 3 ,
42
43
43
44
/// <summary>
44
- /// Represents the endpoint to creates a new resource with attributes, relationships or both. Example: <code><![CDATA[
45
+ /// Represents the endpoint to creates a new resource with attributes, relationships or both. Example:
46
+ /// <code><![CDATA[
45
47
/// POST /articles HTTP/1.1
46
48
/// ]]></code>
47
49
/// </summary>
@@ -55,14 +57,16 @@ public enum JsonApiEndpointsCopy
55
57
PostRelationship = 1 << 5 ,
56
58
57
59
/// <summary>
58
- /// Represents the endpoint to update the attributes and/or relationships of an existing resource. Example: <code><![CDATA[
60
+ /// Represents the endpoint to update the attributes and/or relationships of an existing resource. Example:
61
+ /// <code><![CDATA[
59
62
/// PATCH /articles/1
60
63
/// ]]></code>
61
64
/// </summary>
62
65
Patch = 1 << 6 ,
63
66
64
67
/// <summary>
65
- /// Represents the endpoint to perform a complete replacement of a relationship on an existing resource. Example: <code><![CDATA[
68
+ /// Represents the endpoint to perform a complete replacement of a relationship on an existing resource. Example:
69
+ /// <code><![CDATA[
66
70
/// PATCH /articles/1/relationships/author HTTP/1.1
67
71
/// ]]></code> Example:
68
72
/// <code><![CDATA[
@@ -79,7 +83,8 @@ public enum JsonApiEndpointsCopy
79
83
Delete = 1 << 8 ,
80
84
81
85
/// <summary>
82
- /// Represents the endpoint to remove resources from a to-many relationship. Example: <code><![CDATA[
86
+ /// Represents the endpoint to remove resources from a to-many relationship. Example:
87
+ /// <code><![CDATA[
83
88
/// DELETE /articles/1/relationships/revisions
84
89
/// ]]></code>
85
90
/// </summary>
0 commit comments