1
1
// ------------------------------------------------------------------------------
2
2
// <auto-generated>
3
- // This code was generated with KY.Generator 5.1 .0.0
3
+ // This code was generated with KY.Generator 5.3 .0.0
4
4
// Manual changes to this file may cause unexpected behavior in your application.
5
5
// Manual changes to this file will be overwritten if the code is regenerated.
6
6
// </auto-generated>
10
10
import { SubType } from "./sub-type" ;
11
11
12
12
export class Types {
13
+ public stringField : string ;
14
+ public intField : number ;
15
+ public dateTimeField : Date ;
16
+ public stringProperty : string ;
17
+ public shortProperty : number ;
18
+ public uShortProperty : number ;
19
+ public intProperty : number ;
20
+ public uIntProperty : number ;
21
+ public longProperty : number ;
22
+ public uLongProperty : number ;
23
+ public floatProperty : number ;
24
+ public doubleProperty : number ;
25
+ public boolProperty : boolean ;
26
+ public objectProperty : unknown ;
27
+ public nullableBoolProperty : boolean ;
28
+ public nullableShortProperty : number ;
29
+ public nullableUShortProperty : number ;
30
+ public nullableIntProperty : number ;
31
+ public nullableUIntProperty : number ;
32
+ public nullableLongProperty : number ;
33
+ public nullableULongProperty : number ;
34
+ public nullableFloatProperty : number ;
35
+ public nullableDoubleProperty : number ;
36
+ public nullable2BoolProperty : boolean ;
37
+ public nullable2ShortProperty : number ;
38
+ public nullable2UShortProperty : number ;
39
+ public nullable2IntProperty : number ;
40
+ public nullable2UIntProperty : number ;
41
+ public nullable2LongProperty : number ;
42
+ public nullable2ULongProperty : number ;
43
+ public nullable2FloatProperty : number ;
44
+ public nullable2DoubleProperty : number ;
45
+ public systemStringProperty : string ;
46
+ public systemInt16Property : number ;
47
+ public systemInt32Property : number ;
48
+ public systemInt64Property : number ;
49
+ public systemSingleProperty : number ;
50
+ public systemDoubleProperty : number ;
51
+ public systemDateTimeProperty : Date ;
52
+ public systemArrayProperty : [ ] ;
53
+ public systemByteProperty : number ;
54
+ public systemCharProperty : number ;
55
+ public systemDecimalProperty : number ;
56
+ public systemGuidProperty : string ;
57
+ public systemObjectProperty : unknown ;
58
+ public systemTimeSpanProperty : string ;
59
+ public systemUInt16Property : number ;
60
+ public systemUInt32Property : number ;
61
+ public systemUInt64Property : number ;
62
+ public subTypeProperty : SubType ;
13
63
public stringArrayProperty : string [ ] ;
64
+ public intArrayProperty : number [ ] ;
65
+ public byteArrayProperty : number [ ] ;
66
+ public systemDateTimeArrayProperty : Date [ ] ;
67
+ public subTypeArrayProperty : SubType [ ] ;
14
68
public stringList : string [ ] ;
15
69
public subTypeList : SubType [ ] ;
70
+ public stringStringDictionary : { [ key : string ] : string ; } ;
71
+ public intStringDictionary : { [ key : number ] : string ; } ;
72
+ public stringSubTypeDictionary : { [ key : string ] : SubType ; } ;
73
+ public intSubTypeDictionary : { [ key : number ] : SubType ; } ;
74
+ public subTypeStringDictionary : { /* unsupported type for key. Expected string or number. Got 'SubType' */ . } ;
75
+ public readonlyProperty : string ;
76
+ public writeonlyProperty : string ;
16
77
}
0 commit comments