-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFooService.ts
604 lines (523 loc) · 13.8 KB
/
FooService.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
/**
* This is a generated file. Please don't change this manually.
*/
import {
Class,
odataEndpoint,
odataType,
odataTypeKey,
} from '@netatwork/odata-edm-generator';
import {
Endpoints,
} from '../../Endpoints.js';
export class Base {
public static create<TBase extends Base = Base>(this: Class<TBase>, raw: Partial<TBase>): TBase {
if (raw === undefined || raw === null || raw instanceof this) { return raw as TBase; }
return new this(
raw.BaseProp12,
raw.BaseProp13,
raw.BaseProp11,
raw.BaseProp14,
);
}
public constructor(
public BaseProp12: number,
public BaseProp13: string,
public BaseProp11?: string,
public BaseProp14?: number,
) { }
}
@odataEndpoint(Endpoints.Fizz)
export class Bazz {
public static create<TBazz extends Bazz = Bazz>(this: Class<TBazz>, raw: Partial<TBazz>): TBazz {
if (raw === undefined || raw === null || raw instanceof this) { return raw as TBazz; }
return new this(
raw.Id,
raw.BazzProp2,
Bar.create(raw.Bar),
raw.BarId,
raw.BazzProp1,
raw.Cp,
raw.Foos,
);
}
public constructor(
public Id: number,
public BazzProp2: number,
public Bar?: Bar,
public BarId?: number,
public BazzProp1?: string,
public Cp?: Interface2,
public Foos?: Foo[],
) { }
}
@odataEndpoint(Endpoints.Foos)
export class Foo {
public static create<TFoo extends Foo = Foo>(this: Class<TFoo>, raw: Partial<TFoo>): TFoo {
if (raw === undefined || raw === null || raw instanceof this) { return raw as TFoo; }
return new this(
raw.Id,
raw.ByteProp,
raw.DateStrProp,
raw.StrProp,
);
}
public constructor(
public Id: number,
public ByteProp: number,
public DateStrProp: string,
public StrProp?: string,
) { }
}
export class Bar {
public static create<TBar extends Bar = Bar>(this: Class<TBar>, raw: Partial<TBar>): TBar {
if (raw === undefined || raw === null || raw instanceof this) { return raw as TBar; }
return new this(
raw.Id,
raw.Prop12,
raw.Prop13,
raw.Prop11,
raw.Prop14,
);
}
public constructor(
public Id: number,
public Prop12: string,
public Prop13: number,
public Prop11?: string,
public Prop14?: number,
) { }
}
@odataEndpoint(Endpoints.Children)
// @ts-ignore needed to avoid this issue: https://github.com/microsoft/TypeScript/issues/4628
export class ChildOne extends Base {
public static create<TChildOne extends ChildOne = ChildOne>(this: Class<TChildOne>, raw: Partial<TChildOne>): TChildOne {
if (raw === undefined || raw === null || raw instanceof this) { return raw as TChildOne; }
return new this(
raw.ChildId,
raw.BaseProp12,
raw.BaseProp13,
raw.ChildProp12,
raw.ChildProp13,
raw.BaseProp11,
raw.BaseProp14,
raw.ChildProp11,
StandardCondition.create(raw.Condition),
);
}
public constructor(
public ChildId: number,
public BaseProp12: number,
public BaseProp13: string,
public ChildProp12: number,
public ChildProp13: string,
public BaseProp11?: string,
public BaseProp14?: number,
public ChildProp11?: number,
public Condition?: StandardCondition,
) {
super(
BaseProp12,
BaseProp13,
BaseProp11,
BaseProp14,
);
}
}
// @ts-ignore needed to avoid this issue: https://github.com/microsoft/TypeScript/issues/4628
export class ChildTwo extends Base {
public static create<TChildTwo extends ChildTwo = ChildTwo>(this: Class<TChildTwo>, raw: Partial<TChildTwo>): TChildTwo {
if (raw === undefined || raw === null || raw instanceof this) { return raw as TChildTwo; }
return new this(
raw.Id,
raw.BaseProp12,
raw.BaseProp13,
raw.ChildProp12,
raw.ChildProp13,
raw.BaseProp11,
raw.BaseProp14,
raw.ChildProp11,
);
}
public constructor(
public Id: number,
public BaseProp12: number,
public BaseProp13: string,
public ChildProp12: number,
public ChildProp13: string,
public BaseProp11?: string,
public BaseProp14?: number,
public ChildProp11?: number,
) {
super(
BaseProp12,
BaseProp13,
BaseProp11,
BaseProp14,
);
}
}
// @ts-ignore needed to avoid this issue: https://github.com/microsoft/TypeScript/issues/4628
export class GrandChild extends ChildOne {
public static create<TGrandChild extends GrandChild = GrandChild>(this: Class<TGrandChild>, raw: Partial<TGrandChild>): TGrandChild {
if (raw === undefined || raw === null || raw instanceof this) { return raw as TGrandChild; }
return new this(
raw.ChildId,
raw.Id,
raw.BaseProp12,
raw.BaseProp13,
raw.ChildProp12,
raw.ChildProp13,
raw.GrandChildProp12,
raw.GrandChildProp13,
raw.BaseProp11,
raw.BaseProp14,
raw.ChildProp11,
StandardCondition.create(raw.Condition),
raw.GrandChildProp11,
);
}
public constructor(
public ChildId: number,
public Id: number,
public BaseProp12: number,
public BaseProp13: string,
public ChildProp12: number,
public ChildProp13: string,
public GrandChildProp12: number,
public GrandChildProp13: string,
public BaseProp11?: string,
public BaseProp14?: number,
public ChildProp11?: number,
public Condition?: StandardCondition,
public GrandChildProp11?: number,
) {
super(
ChildId,
BaseProp12,
BaseProp13,
ChildProp12,
ChildProp13,
BaseProp11,
BaseProp14,
ChildProp11,
Condition,
);
}
}
export enum $$BaseConfigurationTypes {
BarConfiguration = 'BarConfiguration',
FooConfiguration = 'FooConfiguration',
}
export class BaseConfiguration {
protected static get derivedTypes(): typeof BaseConfiguration[] {
return [
BarConfiguration,
FooConfiguration,
] as unknown as typeof BaseConfiguration[];
}
public static create(raw: Partial<BaseConfiguration>): BaseConfiguration {
if (raw === undefined || raw === null || raw instanceof this) { return raw as BaseConfiguration; }
const edmType = raw[odataTypeKey];
const ctor = this.derivedTypes.find((f) => f.canHandle(edmType));
if (!ctor) {
return raw as BaseConfiguration;
}
return ctor.create(raw);
}
protected static canHandle(_odataType: string): boolean { return false; }
public readonly $$type: $$BaseConfigurationTypes;
public constructor(
public BC1P1: number,
public BC1P2?: string,
) { }
}
export enum $$DummyTypeTypes {
B1BarCondition = 'B1BarCondition',
B1FizzCondition = 'B1FizzCondition',
B1FooCondition = 'B1FooCondition',
BranchTwoCondition = 'BranchTwoCondition',
}
export abstract class DummyType {
protected static get derivedTypes(): typeof DummyType[] {
return [
B1BarCondition,
B1FizzCondition,
B1FooCondition,
BranchTwoCondition,
] as unknown as typeof DummyType[];
}
public static create(raw: Partial<DummyType>): DummyType {
if (raw === undefined || raw === null || raw instanceof this) { return raw as DummyType; }
const edmType = raw[odataTypeKey];
const ctor = this.derivedTypes.find((f) => f.canHandle(edmType));
if (!ctor) {
return raw as DummyType;
}
return ctor.create(raw);
}
protected static canHandle(_odataType: string): boolean { return false; }
public readonly $$type: $$DummyTypeTypes;
protected constructor(
public Dummy_Do_Not_Use?: string,
) { }
}
export interface Interface1 {
I1P1: string;
I1P2?: number;
}
export interface Interface2 {
I2P1: number;
I2P2?: string;
}
export abstract class BranchOneCondition extends DummyType {
protected constructor(
public B1C1P1: number,
public B1C1P2?: string,
public Dummy_Do_Not_Use?: string,
) {
super(
Dummy_Do_Not_Use,
);
}
}
@odataType('#Company.FooService.B1BarCondition', $$DummyTypeTypes.B1BarCondition, '$$type')
export class B1BarCondition extends BranchOneCondition {
public constructor(
public B1C1P1: number,
public CBC1P1: number,
public B1C1P2?: string,
public CBC1P2?: Interface1,
public Dummy_Do_Not_Use?: string,
) {
super(
B1C1P1,
B1C1P2,
Dummy_Do_Not_Use,
);
}
public static create(raw: Partial<B1BarCondition>): B1BarCondition {
return new B1BarCondition(
raw.B1C1P1,
raw.CBC1P1,
raw.B1C1P2,
raw.CBC1P2,
raw.Dummy_Do_Not_Use,
);
}
}
@odataType('#Company.FooService.B1FizzCondition', $$DummyTypeTypes.B1FizzCondition, '$$type')
export class B1FizzCondition extends BranchOneCondition {
public constructor(
public B1C1P1: number,
public FC1P1: number,
public B1C1P2?: string,
public Dummy_Do_Not_Use?: string,
public FC1P2?: Interface1,
) {
super(
B1C1P1,
B1C1P2,
Dummy_Do_Not_Use,
);
}
public static create(raw: Partial<B1FizzCondition>): B1FizzCondition {
return new B1FizzCondition(
raw.B1C1P1,
raw.FC1P1,
raw.B1C1P2,
raw.Dummy_Do_Not_Use,
raw.FC1P2,
);
}
}
@odataType('#Company.FooService.B1FooCondition', $$DummyTypeTypes.B1FooCondition, '$$type')
export class B1FooCondition extends BranchOneCondition {
public constructor(
public B1C1P1: number,
public FC1P1: number,
public B1C1P2?: string,
public Dummy_Do_Not_Use?: string,
public FC1P2?: Enum1,
) {
super(
B1C1P1,
B1C1P2,
Dummy_Do_Not_Use,
);
}
public static create(raw: Partial<B1FooCondition>): B1FooCondition {
return new B1FooCondition(
raw.B1C1P1,
raw.FC1P1,
raw.B1C1P2,
raw.Dummy_Do_Not_Use,
raw.FC1P2,
);
}
}
export enum $$StandardConditionTypes {
BarCondition = 'BarCondition',
FizzCondition = 'FizzCondition',
FooCondition = 'FooCondition',
}
export abstract class StandardCondition {
protected static get derivedTypes(): typeof StandardCondition[] {
return [
BarCondition,
FizzCondition,
FooCondition,
] as unknown as typeof StandardCondition[];
}
public static create(raw: Partial<StandardCondition>): StandardCondition {
if (raw === undefined || raw === null || raw instanceof this) { return raw as StandardCondition; }
const edmType = raw[odataTypeKey];
const ctor = this.derivedTypes.find((f) => f.canHandle(edmType));
if (!ctor) {
return raw as StandardCondition;
}
return ctor.create(raw);
}
protected static canHandle(_odataType: string): boolean { return false; }
public readonly $$type: $$StandardConditionTypes;
protected constructor(
public BC1P1: number,
public BC1P2?: string,
) { }
}
@odataType('#Company.FooService.BarCondition', $$StandardConditionTypes.BarCondition, '$$type')
export class BarCondition extends StandardCondition {
public constructor(
public BC1P1: number,
public CBC1P1: number,
public BC1P2?: string,
public CBC1P2?: Interface1,
) {
super(
BC1P1,
BC1P2,
);
}
public static create(raw: Partial<BarCondition>): BarCondition {
return new BarCondition(
raw.BC1P1,
raw.CBC1P1,
raw.BC1P2,
raw.CBC1P2,
);
}
}
@odataType('#Company.FooService.BarConfiguration', $$BaseConfigurationTypes.BarConfiguration, '$$type')
export class BarConfiguration extends BaseConfiguration {
public constructor(
public BC1P1: number,
public CBC1P1: number,
public BC1P2?: string,
public CBC1P2?: Interface1,
) {
super(
BC1P1,
BC1P2,
);
}
public static create(raw: Partial<BarConfiguration>): BarConfiguration {
return new BarConfiguration(
raw.BC1P1,
raw.CBC1P1,
raw.BC1P2,
raw.CBC1P2,
);
}
}
@odataType('#Company.FooService.BranchTwoCondition', $$DummyTypeTypes.BranchTwoCondition, '$$type')
export class BranchTwoCondition extends DummyType {
public constructor(
public B2C1P1: number,
public B2C1P2?: string,
public Dummy_Do_Not_Use?: string,
) {
super(
Dummy_Do_Not_Use,
);
}
public static create(raw: Partial<BranchTwoCondition>): BranchTwoCondition {
return new BranchTwoCondition(
raw.B2C1P1,
raw.B2C1P2,
raw.Dummy_Do_Not_Use,
);
}
}
@odataType('#Company.FooService.FizzCondition', $$StandardConditionTypes.FizzCondition, '$$type')
export class FizzCondition extends StandardCondition {
public constructor(
public BC1P1: number,
public FC1P1: number,
public BC1P2?: string,
public FC1P2?: Interface1,
public FC1P3?: BaseConfiguration,
) {
super(
BC1P1,
BC1P2,
);
}
public static create(raw: Partial<FizzCondition>): FizzCondition {
return new FizzCondition(
raw.BC1P1,
raw.FC1P1,
raw.BC1P2,
raw.FC1P2,
BaseConfiguration.create(raw.FC1P3),
);
}
}
@odataType('#Company.FooService.FooCondition', $$StandardConditionTypes.FooCondition, '$$type')
export class FooCondition extends StandardCondition {
public constructor(
public BC1P1: number,
public FC1P1: number,
public BC1P2?: string,
public FC1P2?: Enum1,
) {
super(
BC1P1,
BC1P2,
);
}
public static create(raw: Partial<FooCondition>): FooCondition {
return new FooCondition(
raw.BC1P1,
raw.FC1P1,
raw.BC1P2,
raw.FC1P2,
);
}
}
@odataType('#Company.FooService.FooConfiguration', $$BaseConfigurationTypes.FooConfiguration, '$$type')
export class FooConfiguration extends BaseConfiguration {
public constructor(
public BC1P1: number,
public FC1P1: number,
public BC1P2?: string,
public FC1P2?: Enum1,
) {
super(
BC1P1,
BC1P2,
);
}
public static create(raw: Partial<FooConfiguration>): FooConfiguration {
return new FooConfiguration(
raw.BC1P1,
raw.FC1P1,
raw.BC1P2,
raw.FC1P2,
);
}
}
export enum Enum1 {
Member1 = 'Member1',
Member2 = 'Member2',
Member3 = 'Member3',
}