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
[$class: 'BooleanParameterDefinition', name: 'packageTesting', defaultValue: false, description: 'Testing package from repository without local sources. Used for prodhealthcheck'],
// Field of additionalFonts. The REST response with data on system, additional and custom fonts, available for document processing.
34
-
publicvaradditionalFonts:[FontInfo]?;
34
+
privatevar_additionalFonts:[FontInfo]?=nil;
35
+
36
+
publicvaradditionalFonts:[FontInfo]?{
37
+
get{
38
+
returnself._additionalFonts;
39
+
}
40
+
set{
41
+
self._additionalFonts = newValue;
42
+
}
43
+
}
35
44
36
45
// Field of customFonts. The REST response with data on system, additional and custom fonts, available for document processing.
37
-
publicvarcustomFonts:[FontInfo]?;
46
+
privatevar_customFonts:[FontInfo]?=nil;
47
+
48
+
publicvarcustomFonts:[FontInfo]?{
49
+
get{
50
+
returnself._customFonts;
51
+
}
52
+
set{
53
+
self._customFonts = newValue;
54
+
}
55
+
}
38
56
39
57
// Field of systemFonts. The REST response with data on system, additional and custom fonts, available for document processing.
40
-
publicvarsystemFonts:[FontInfo]?;
58
+
privatevar_systemFonts:[FontInfo]?=nil;
59
+
60
+
publicvarsystemFonts:[FontInfo]?{
61
+
get{
62
+
returnself._systemFonts;
63
+
}
64
+
set{
65
+
self._systemFonts = newValue;
66
+
}
67
+
}
41
68
42
69
privateenumCodingKeys:String,CodingKey{
43
70
case additionalFonts ="AdditionalFonts";
@@ -83,6 +110,7 @@ public class AvailableFontsResponse : WordsResponse {
83
110
returnself.additionalFonts;
84
111
}
85
112
113
+
86
114
// Sets customFonts. Gets or sets the list of custom user fonts from user cloud storage. To use them, you should specify "fontsLocation" parameter in any request.
0 commit comments