You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Scr/Sdk4me.GraphQL/Entities/StandardServiceRequest.cs
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,12 @@ public class StandardServiceRequest : Node
42
42
[JsonProperty("resolutionTarget")]
43
43
publiclong?ResolutionTarget{get;internalset;}
44
44
45
+
/// <summary>
46
+
/// Resolution target is Best Effort when the request template has been applied to the request and the requester is covered by an SLA that is based on the service offering.
/// Number of business days within which a request needs to have been completed when the request template has been applied to the request and the requester is covered by an SLA that is based on the service offering.
47
53
/// </summary>
@@ -54,6 +60,12 @@ public class StandardServiceRequest : Node
54
60
[JsonProperty("responseTarget")]
55
61
publiclong?ResponseTarget{get;internalset;}
56
62
63
+
/// <summary>
64
+
/// Response target is Best Effort when the request template has been applied to the request and the requester is covered by an SLA that is based on the service offering.
/// Number of business days within which a response needs to have been provided for a request to which the request template has been applied and which requester is covered by an SLA that is based on the service offering.
Copy file name to clipboardExpand all lines: Scr/Sdk4me.GraphQL/Entities/StandardServiceRequestInput.cs
+44Lines changed: 44 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,11 @@ public class StandardServiceRequestInput : PropertyChangeSet
8
8
privatestring?id;
9
9
privatestring?requestTemplateId;
10
10
privatelong?responseTarget;
11
+
privatelong?responseTargetInDays;
12
+
privatebool?responseTargetBestEffort;
11
13
privatelong?resolutionTarget;
14
+
privatelong?resolutionTargetInDays;
15
+
privatebool?resolutionTargetBestEffort;
12
16
privatestring?supportHoursId;
13
17
privatestring?slaNotificationSchemeId;
14
18
privateServiceOfferingChargeType?chargeType;
@@ -45,6 +49,26 @@ public long? ResponseTarget
45
49
set=>responseTarget=Set("responseTarget",value);
46
50
}
47
51
52
+
/// <summary>
53
+
/// Number of business days within which a response needs to have been provided for a request to which the request template has been applied and which requester is covered by an SLA that is based on the service offering.
/// Set response target to Best Effort when the request template has been applied to the request and the requester is covered by an SLA that is based on the service offering.
/// Number of minutes within which a request needs to have been completed when the request template has been applied to the request and the requester is covered by an SLA that is based on the service offering.
/// Number of business days within which a request needs to have been completed when the request template has been applied to the request and the requester is covered by an SLA that is based on the service offering.
/// Set the resolution target to Best Effort when the request template has been applied to the request and the requester is covered by an SLA that is based on the service offering.
/// Identifier of the calendar that defines the support hours for a request to which the request template has been applied and which requester is covered by an SLA that is based on the service offering.
0 commit comments