Skip to content

Commit 52111c5

Browse files
Recreated the documentation file with a better conversion from markdown to XML tags
1 parent 607da30 commit 52111c5

File tree

297 files changed

+2056
-1887
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

297 files changed

+2056
-1887
lines changed

Scr/Sdk4me.GraphQL/Entities/ActivityID.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,37 +27,37 @@ internal override string UniqueIdentifier
2727
}
2828

2929
/// <summary>
30-
/// Represents the activityID for high incidents. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
30+
/// Represents the activityID for high incidents. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
3131
/// </summary>
3232
[JsonProperty("high")]
3333
public string? High { get; internal set; }
3434

3535
/// <summary>
36-
/// Represents the activityID for low incidents. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
36+
/// Represents the activityID for low incidents. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
3737
/// </summary>
3838
[JsonProperty("low")]
3939
public string? Low { get; internal set; }
4040

4141
/// <summary>
42-
/// Represents the activityID for medium incidents. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
42+
/// Represents the activityID for medium incidents. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
4343
/// </summary>
4444
[JsonProperty("medium")]
4545
public string? Medium { get; internal set; }
4646

4747
/// <summary>
48-
/// Represents the activityID for RFCs. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
48+
/// Represents the activityID for RFCs. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
4949
/// </summary>
5050
[JsonProperty("rfc")]
5151
public string? Rfc { get; internal set; }
5252

5353
/// <summary>
54-
/// Represents the activityID for RFIs. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
54+
/// Represents the activityID for RFIs. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
5555
/// </summary>
5656
[JsonProperty("rfi")]
5757
public string? Rfi { get; internal set; }
5858

5959
/// <summary>
60-
/// Represents the activityID for top incidents. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
60+
/// Represents the activityID for top incidents. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
6161
/// </summary>
6262
[JsonProperty("top")]
6363
public string? Top { get; internal set; }

Scr/Sdk4me.GraphQL/Entities/ActivityIDInput.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class ActivityIDInput : PropertyChangeSet
1313
private string? rfi;
1414

1515
/// <summary>
16-
/// Represents the activityID for low incidents. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
16+
/// Represents the activityID for low incidents. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
1717
/// </summary>
1818
[JsonProperty("low")]
1919
public string? Low
@@ -23,7 +23,7 @@ public string? Low
2323
}
2424

2525
/// <summary>
26-
/// Represents the activityID for medium incidents. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
26+
/// Represents the activityID for medium incidents. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
2727
/// </summary>
2828
[JsonProperty("medium")]
2929
public string? Medium
@@ -33,7 +33,7 @@ public string? Medium
3333
}
3434

3535
/// <summary>
36-
/// Represents the activityID for high incidents. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
36+
/// Represents the activityID for high incidents. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
3737
/// </summary>
3838
[JsonProperty("high")]
3939
public string? High
@@ -43,7 +43,7 @@ public string? High
4343
}
4444

4545
/// <summary>
46-
/// Represents the activityID for top incidents. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
46+
/// Represents the activityID for top incidents. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
4747
/// </summary>
4848
[JsonProperty("top")]
4949
public string? Top
@@ -53,7 +53,7 @@ public string? Top
5353
}
5454

5555
/// <summary>
56-
/// Represents the activityID for RFCs. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
56+
/// Represents the activityID for RFCs. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
5757
/// </summary>
5858
[JsonProperty("rfc")]
5959
public string? Rfc
@@ -63,7 +63,7 @@ public string? Rfc
6363
}
6464

6565
/// <summary>
66-
/// Represents the activityID for RFIs. The Activity identifier is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
66+
/// Represents the activityID for RFIs. The Activity ID is the unique identifier by which an activity that is performed in the context of a service offering is known in the billing system of the service provider.
6767
/// </summary>
6868
[JsonProperty("rfi")]
6969
public string? Rfi

Scr/Sdk4me.GraphQL/Entities/Address.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class Address : Node
2424
public string? Country { get; internal set; }
2525

2626
/// <summary>
27-
/// The Integration field is a hidden checkbox that can be set to `true` using this API or the Import functionality. When checked, the address is displayed as read-only in the user interface to prevent users from updating it.
27+
/// The Integration field is a hidden checkbox that can be set to <c>true</c> using this API or the Import functionality. When checked, the address is displayed as read-only in the user interface to prevent users from updating it.
2828
/// </summary>
2929
[JsonProperty("integration"), Sdk4meField(true)]
3030
public bool? Integration { get; internal set; }

Scr/Sdk4me.GraphQL/Entities/AddressInput.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class AddressInput : PropertyChangeSet
1515
private bool? integration;
1616

1717
/// <summary>
18-
/// Identifier of the object to update using these values. For new objects it should be `null`.
18+
/// Identifier of the object to update using these values. For new objects it should be <c>null</c>.
1919
/// </summary>
2020
[JsonProperty("id")]
2121
public string? ID
@@ -85,7 +85,7 @@ public string? Country
8585
}
8686

8787
/// <summary>
88-
/// The Integration field is a hidden checkbox that can be set to `true` using this API or the Import functionality. When checked, the address is displayed as read-only in the user interface to prevent users from updating it.
88+
/// The Integration field is a hidden checkbox that can be set to <c>true</c> using this API or the Import functionality. When checked, the address is displayed as read-only in the user interface to prevent users from updating it.
8989
/// </summary>
9090
[JsonProperty("integration")]
9191
public bool? Integration

0 commit comments

Comments
 (0)