@@ -72,6 +72,33 @@ const deviceRegistrationTokenTypeLinkId = package["DeviceRegistrationToken"].idL
72
72
const pushNotificationNotifyInsertHandlerCodeTypeLinkId = package["PushNotificationNotifyInsertHandlerCode"].idLocal();
73
73
const pushNotificationTreeTypeLinkId = package["PushNotificationTree"].idLocal();
74
74
```
75
+ #### Use name field to get the name of the link
76
+ ```ts
77
+ const package = new Package({deep});
78
+ const pushNotificationNotifyInsertHandler = package["PushNotificationNotifyInsertHandler"].name;
79
+ const typeOfValueOfPushNotificationBody = package["TypeOfValueOfPushNotificationBody"].name;
80
+ const pushNotificationTitle = package["PushNotificationTitle"].name;
81
+ const typeOfValueOfPushNotificationTitle = package["TypeOfValueOfPushNotificationTitle"].name;
82
+ const notify = package["Notify"].name;
83
+ const notified = package["Notified"].name;
84
+ const handlePushNotificationNotifyInsert = package["HandlePushNotificationNotifyInsert"].name;
85
+ const treeIncludeFromCurrentPushNotificationBody = package["TreeIncludeFromCurrentPushNotificationBody"].name;
86
+ const treeIncludeFromCurrentPushNotificationTitle = package["TreeIncludeFromCurrentPushNotificationTitle"].name;
87
+ const treeIncludeNodePushNotification = package["TreeIncludeNodePushNotification"].name;
88
+ const handleUpdateOfPushNotification = package["HandleUpdateOfPushNotification"].name;
89
+ const serviceAccount = package["ServiceAccount"].name;
90
+ const typeOfValueOfServiceAccount = package["TypeOfValueOfServiceAccount"].name;
91
+ const usesServiceAccount = package["UsesServiceAccount"].name;
92
+ const pushNotification = package["PushNotification"].name;
93
+ const pushNotificationBody = package["PushNotificationBody"].name;
94
+ const typeOfValueOfPushNotification = package["TypeOfValueOfPushNotification"].name;
95
+ const webPushCertificate = package["WebPushCertificate"].name;
96
+ const usesWebPushCertificate = package["UsesWebPushCertificate"].name;
97
+ const typeOfValueOfWebPushCertificate = package["TypeOfValueOfWebPushCertificate"].name;
98
+ const deviceRegistrationToken = package["DeviceRegistrationToken"].name;
99
+ const pushNotificationNotifyInsertHandlerCode = package["PushNotificationNotifyInsertHandlerCode"].name;
100
+ const pushNotificationTree = package["PushNotificationTree"].name;
101
+ ```
75
102
*/
76
103
export class Package extends BasePackage {
77
104
@@ -95,6 +122,11 @@ export class Package extends BasePackage {
95
122
const package = new Package({deep});
96
123
const pushNotificationNotifyInsertHandlerTypeLinkId = await package["PushNotificationNotifyInsertHandler"].localId();
97
124
```
125
+ #### Use name field to get the name of the PushNotificationNotifyInsertHandler link
126
+ ```ts
127
+ const package = new Package({deep});
128
+ const pushNotificationNotifyInsertHandler = await package["PushNotificationNotifyInsertHandler"].name;
129
+ ```
98
130
*/
99
131
public "PushNotificationNotifyInsertHandler" = this . createEntity ( "PushNotificationNotifyInsertHandler" ) ;
100
132
/**
@@ -109,6 +141,11 @@ export class Package extends BasePackage {
109
141
const package = new Package({deep});
110
142
const typeOfValueOfPushNotificationBodyTypeLinkId = await package["TypeOfValueOfPushNotificationBody"].localId();
111
143
```
144
+ #### Use name field to get the name of the TypeOfValueOfPushNotificationBody link
145
+ ```ts
146
+ const package = new Package({deep});
147
+ const typeOfValueOfPushNotificationBody = await package["TypeOfValueOfPushNotificationBody"].name;
148
+ ```
112
149
*/
113
150
public "TypeOfValueOfPushNotificationBody" = this . createEntity ( "TypeOfValueOfPushNotificationBody" ) ;
114
151
/**
@@ -123,6 +160,11 @@ export class Package extends BasePackage {
123
160
const package = new Package({deep});
124
161
const pushNotificationTitleTypeLinkId = await package["PushNotificationTitle"].localId();
125
162
```
163
+ #### Use name field to get the name of the PushNotificationTitle link
164
+ ```ts
165
+ const package = new Package({deep});
166
+ const pushNotificationTitle = await package["PushNotificationTitle"].name;
167
+ ```
126
168
*/
127
169
public "PushNotificationTitle" = this . createEntity ( "PushNotificationTitle" ) ;
128
170
/**
@@ -137,6 +179,11 @@ export class Package extends BasePackage {
137
179
const package = new Package({deep});
138
180
const typeOfValueOfPushNotificationTitleTypeLinkId = await package["TypeOfValueOfPushNotificationTitle"].localId();
139
181
```
182
+ #### Use name field to get the name of the TypeOfValueOfPushNotificationTitle link
183
+ ```ts
184
+ const package = new Package({deep});
185
+ const typeOfValueOfPushNotificationTitle = await package["TypeOfValueOfPushNotificationTitle"].name;
186
+ ```
140
187
*/
141
188
public "TypeOfValueOfPushNotificationTitle" = this . createEntity ( "TypeOfValueOfPushNotificationTitle" ) ;
142
189
/**
@@ -151,6 +198,11 @@ export class Package extends BasePackage {
151
198
const package = new Package({deep});
152
199
const notifyTypeLinkId = await package["Notify"].localId();
153
200
```
201
+ #### Use name field to get the name of the Notify link
202
+ ```ts
203
+ const package = new Package({deep});
204
+ const notify = await package["Notify"].name;
205
+ ```
154
206
*/
155
207
public "Notify" = this . createEntity ( "Notify" ) ;
156
208
/**
@@ -165,6 +217,11 @@ export class Package extends BasePackage {
165
217
const package = new Package({deep});
166
218
const notifiedTypeLinkId = await package["Notified"].localId();
167
219
```
220
+ #### Use name field to get the name of the Notified link
221
+ ```ts
222
+ const package = new Package({deep});
223
+ const notified = await package["Notified"].name;
224
+ ```
168
225
*/
169
226
public "Notified" = this . createEntity ( "Notified" ) ;
170
227
/**
@@ -179,6 +236,11 @@ export class Package extends BasePackage {
179
236
const package = new Package({deep});
180
237
const handlePushNotificationNotifyInsertTypeLinkId = await package["HandlePushNotificationNotifyInsert"].localId();
181
238
```
239
+ #### Use name field to get the name of the HandlePushNotificationNotifyInsert link
240
+ ```ts
241
+ const package = new Package({deep});
242
+ const handlePushNotificationNotifyInsert = await package["HandlePushNotificationNotifyInsert"].name;
243
+ ```
182
244
*/
183
245
public "HandlePushNotificationNotifyInsert" = this . createEntity ( "HandlePushNotificationNotifyInsert" ) ;
184
246
/**
@@ -193,6 +255,11 @@ export class Package extends BasePackage {
193
255
const package = new Package({deep});
194
256
const treeIncludeFromCurrentPushNotificationBodyTypeLinkId = await package["TreeIncludeFromCurrentPushNotificationBody"].localId();
195
257
```
258
+ #### Use name field to get the name of the TreeIncludeFromCurrentPushNotificationBody link
259
+ ```ts
260
+ const package = new Package({deep});
261
+ const treeIncludeFromCurrentPushNotificationBody = await package["TreeIncludeFromCurrentPushNotificationBody"].name;
262
+ ```
196
263
*/
197
264
public "TreeIncludeFromCurrentPushNotificationBody" = this . createEntity ( "TreeIncludeFromCurrentPushNotificationBody" ) ;
198
265
/**
@@ -207,6 +274,11 @@ export class Package extends BasePackage {
207
274
const package = new Package({deep});
208
275
const treeIncludeFromCurrentPushNotificationTitleTypeLinkId = await package["TreeIncludeFromCurrentPushNotificationTitle"].localId();
209
276
```
277
+ #### Use name field to get the name of the TreeIncludeFromCurrentPushNotificationTitle link
278
+ ```ts
279
+ const package = new Package({deep});
280
+ const treeIncludeFromCurrentPushNotificationTitle = await package["TreeIncludeFromCurrentPushNotificationTitle"].name;
281
+ ```
210
282
*/
211
283
public "TreeIncludeFromCurrentPushNotificationTitle" = this . createEntity ( "TreeIncludeFromCurrentPushNotificationTitle" ) ;
212
284
/**
@@ -221,6 +293,11 @@ export class Package extends BasePackage {
221
293
const package = new Package({deep});
222
294
const treeIncludeNodePushNotificationTypeLinkId = await package["TreeIncludeNodePushNotification"].localId();
223
295
```
296
+ #### Use name field to get the name of the TreeIncludeNodePushNotification link
297
+ ```ts
298
+ const package = new Package({deep});
299
+ const treeIncludeNodePushNotification = await package["TreeIncludeNodePushNotification"].name;
300
+ ```
224
301
*/
225
302
public "TreeIncludeNodePushNotification" = this . createEntity ( "TreeIncludeNodePushNotification" ) ;
226
303
/**
@@ -235,6 +312,11 @@ export class Package extends BasePackage {
235
312
const package = new Package({deep});
236
313
const handleUpdateOfPushNotificationTypeLinkId = await package["HandleUpdateOfPushNotification"].localId();
237
314
```
315
+ #### Use name field to get the name of the HandleUpdateOfPushNotification link
316
+ ```ts
317
+ const package = new Package({deep});
318
+ const handleUpdateOfPushNotification = await package["HandleUpdateOfPushNotification"].name;
319
+ ```
238
320
*/
239
321
public "HandleUpdateOfPushNotification" = this . createEntity ( "HandleUpdateOfPushNotification" ) ;
240
322
/**
@@ -249,6 +331,11 @@ export class Package extends BasePackage {
249
331
const package = new Package({deep});
250
332
const serviceAccountTypeLinkId = await package["ServiceAccount"].localId();
251
333
```
334
+ #### Use name field to get the name of the ServiceAccount link
335
+ ```ts
336
+ const package = new Package({deep});
337
+ const serviceAccount = await package["ServiceAccount"].name;
338
+ ```
252
339
*/
253
340
public "ServiceAccount" = this . createEntity ( "ServiceAccount" ) ;
254
341
/**
@@ -263,6 +350,11 @@ export class Package extends BasePackage {
263
350
const package = new Package({deep});
264
351
const typeOfValueOfServiceAccountTypeLinkId = await package["TypeOfValueOfServiceAccount"].localId();
265
352
```
353
+ #### Use name field to get the name of the TypeOfValueOfServiceAccount link
354
+ ```ts
355
+ const package = new Package({deep});
356
+ const typeOfValueOfServiceAccount = await package["TypeOfValueOfServiceAccount"].name;
357
+ ```
266
358
*/
267
359
public "TypeOfValueOfServiceAccount" = this . createEntity ( "TypeOfValueOfServiceAccount" ) ;
268
360
/**
@@ -277,6 +369,11 @@ export class Package extends BasePackage {
277
369
const package = new Package({deep});
278
370
const usesServiceAccountTypeLinkId = await package["UsesServiceAccount"].localId();
279
371
```
372
+ #### Use name field to get the name of the UsesServiceAccount link
373
+ ```ts
374
+ const package = new Package({deep});
375
+ const usesServiceAccount = await package["UsesServiceAccount"].name;
376
+ ```
280
377
*/
281
378
public "UsesServiceAccount" = this . createEntity ( "UsesServiceAccount" ) ;
282
379
/**
@@ -291,6 +388,11 @@ export class Package extends BasePackage {
291
388
const package = new Package({deep});
292
389
const pushNotificationTypeLinkId = await package["PushNotification"].localId();
293
390
```
391
+ #### Use name field to get the name of the PushNotification link
392
+ ```ts
393
+ const package = new Package({deep});
394
+ const pushNotification = await package["PushNotification"].name;
395
+ ```
294
396
*/
295
397
public "PushNotification" = this . createEntity ( "PushNotification" ) ;
296
398
/**
@@ -305,6 +407,11 @@ export class Package extends BasePackage {
305
407
const package = new Package({deep});
306
408
const pushNotificationBodyTypeLinkId = await package["PushNotificationBody"].localId();
307
409
```
410
+ #### Use name field to get the name of the PushNotificationBody link
411
+ ```ts
412
+ const package = new Package({deep});
413
+ const pushNotificationBody = await package["PushNotificationBody"].name;
414
+ ```
308
415
*/
309
416
public "PushNotificationBody" = this . createEntity ( "PushNotificationBody" ) ;
310
417
/**
@@ -319,6 +426,11 @@ export class Package extends BasePackage {
319
426
const package = new Package({deep});
320
427
const typeOfValueOfPushNotificationTypeLinkId = await package["TypeOfValueOfPushNotification"].localId();
321
428
```
429
+ #### Use name field to get the name of the TypeOfValueOfPushNotification link
430
+ ```ts
431
+ const package = new Package({deep});
432
+ const typeOfValueOfPushNotification = await package["TypeOfValueOfPushNotification"].name;
433
+ ```
322
434
*/
323
435
public "TypeOfValueOfPushNotification" = this . createEntity ( "TypeOfValueOfPushNotification" ) ;
324
436
/**
@@ -333,6 +445,11 @@ export class Package extends BasePackage {
333
445
const package = new Package({deep});
334
446
const webPushCertificateTypeLinkId = await package["WebPushCertificate"].localId();
335
447
```
448
+ #### Use name field to get the name of the WebPushCertificate link
449
+ ```ts
450
+ const package = new Package({deep});
451
+ const webPushCertificate = await package["WebPushCertificate"].name;
452
+ ```
336
453
*/
337
454
public "WebPushCertificate" = this . createEntity ( "WebPushCertificate" ) ;
338
455
/**
@@ -347,6 +464,11 @@ export class Package extends BasePackage {
347
464
const package = new Package({deep});
348
465
const usesWebPushCertificateTypeLinkId = await package["UsesWebPushCertificate"].localId();
349
466
```
467
+ #### Use name field to get the name of the UsesWebPushCertificate link
468
+ ```ts
469
+ const package = new Package({deep});
470
+ const usesWebPushCertificate = await package["UsesWebPushCertificate"].name;
471
+ ```
350
472
*/
351
473
public "UsesWebPushCertificate" = this . createEntity ( "UsesWebPushCertificate" ) ;
352
474
/**
@@ -361,6 +483,11 @@ export class Package extends BasePackage {
361
483
const package = new Package({deep});
362
484
const typeOfValueOfWebPushCertificateTypeLinkId = await package["TypeOfValueOfWebPushCertificate"].localId();
363
485
```
486
+ #### Use name field to get the name of the TypeOfValueOfWebPushCertificate link
487
+ ```ts
488
+ const package = new Package({deep});
489
+ const typeOfValueOfWebPushCertificate = await package["TypeOfValueOfWebPushCertificate"].name;
490
+ ```
364
491
*/
365
492
public "TypeOfValueOfWebPushCertificate" = this . createEntity ( "TypeOfValueOfWebPushCertificate" ) ;
366
493
/**
@@ -375,6 +502,11 @@ export class Package extends BasePackage {
375
502
const package = new Package({deep});
376
503
const deviceRegistrationTokenTypeLinkId = await package["DeviceRegistrationToken"].localId();
377
504
```
505
+ #### Use name field to get the name of the DeviceRegistrationToken link
506
+ ```ts
507
+ const package = new Package({deep});
508
+ const deviceRegistrationToken = await package["DeviceRegistrationToken"].name;
509
+ ```
378
510
*/
379
511
public "DeviceRegistrationToken" = this . createEntity ( "DeviceRegistrationToken" ) ;
380
512
/**
@@ -389,6 +521,11 @@ export class Package extends BasePackage {
389
521
const package = new Package({deep});
390
522
const pushNotificationNotifyInsertHandlerCodeTypeLinkId = await package["PushNotificationNotifyInsertHandlerCode"].localId();
391
523
```
524
+ #### Use name field to get the name of the PushNotificationNotifyInsertHandlerCode link
525
+ ```ts
526
+ const package = new Package({deep});
527
+ const pushNotificationNotifyInsertHandlerCode = await package["PushNotificationNotifyInsertHandlerCode"].name;
528
+ ```
392
529
*/
393
530
public "PushNotificationNotifyInsertHandlerCode" = this . createEntity ( "PushNotificationNotifyInsertHandlerCode" ) ;
394
531
/**
@@ -403,6 +540,11 @@ export class Package extends BasePackage {
403
540
const package = new Package({deep});
404
541
const pushNotificationTreeTypeLinkId = await package["PushNotificationTree"].localId();
405
542
```
543
+ #### Use name field to get the name of the PushNotificationTree link
544
+ ```ts
545
+ const package = new Package({deep});
546
+ const pushNotificationTree = await package["PushNotificationTree"].name;
547
+ ```
406
548
*/
407
549
public "PushNotificationTree" = this . createEntity ( "PushNotificationTree" ) ;
408
550
0 commit comments