@fragus/sam-types 1.0.22 → 1.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Used in Superadmin for Warranty Expiration Conditions text management
|
|
3
|
+
*/
|
|
4
|
+
interface WarrantyExpirationConditionResponse {
|
|
5
|
+
/**
|
|
6
|
+
* Unique ID of the condition text entry
|
|
7
|
+
* (primary key)
|
|
8
|
+
*/
|
|
9
|
+
conditionTextId: number
|
|
10
|
+
/**
|
|
11
|
+
* The actual text of the condition that will be shown in PDF
|
|
12
|
+
*/
|
|
13
|
+
conditionText: string
|
|
14
|
+
/**
|
|
15
|
+
* Name of the template this condition text is associated with
|
|
16
|
+
* (e.g. "GoSafe Basic", "GoSafe Plus", etc.)
|
|
17
|
+
*/
|
|
18
|
+
templateName: string
|
|
19
|
+
/**
|
|
20
|
+
* ID of the V4 product this condition text is associated with
|
|
21
|
+
* Used to link the condition text to the correct ServiceContract
|
|
22
|
+
*/
|
|
23
|
+
v4ProductId: number
|
|
24
|
+
/**
|
|
25
|
+
* Email of the user who last updated the condition text
|
|
26
|
+
*/
|
|
27
|
+
updatedByUser: string
|
|
28
|
+
}
|