@monarkmarkets/api-client 1.2.5 → 1.2.7

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.
Files changed (3) hide show
  1. package/dist/Client.d.ts +1479 -28
  2. package/dist/Client.js +2222 -16
  3. package/package.json +1 -1
package/dist/Client.js CHANGED
@@ -3264,6 +3264,66 @@ export class Client {
3264
3264
  }
3265
3265
  return Promise.resolve(null);
3266
3266
  }
3267
+ /**
3268
+ * Generates a pdf from the template and the provided data mapping fields.
3269
+ * @param id The document template Id.
3270
+ * @param body (optional) The mapping fields and their values that are to be merged into the template.
3271
+ * @return OK
3272
+ */
3273
+ generateDocument(id, body) {
3274
+ let url_ = this.baseUrl + "/primary/v1/pdf-document/generate-document/{id}";
3275
+ if (id === undefined || id === null)
3276
+ throw new Error("The parameter 'id' must be defined.");
3277
+ url_ = url_.replace("{id}", encodeURIComponent("" + id));
3278
+ url_ = url_.replace(/[?&]$/, "");
3279
+ const content_ = JSON.stringify(body);
3280
+ let options_ = {
3281
+ body: content_,
3282
+ method: "POST",
3283
+ headers: {
3284
+ "Content-Type": "application/json",
3285
+ "Accept": "application/json"
3286
+ }
3287
+ };
3288
+ return this.http.fetch(url_, options_).then((_response) => {
3289
+ return this.processGenerateDocument(_response);
3290
+ });
3291
+ }
3292
+ processGenerateDocument(response) {
3293
+ const status = response.status;
3294
+ let _headers = {};
3295
+ if (response.headers && response.headers.forEach) {
3296
+ response.headers.forEach((v, k) => _headers[k] = v);
3297
+ }
3298
+ ;
3299
+ if (status === 200 || status === 206) {
3300
+ const contentDisposition = response.headers ? response.headers.get("content-disposition") : undefined;
3301
+ let fileNameMatch = contentDisposition ? /filename\*=(?:(\\?['"])(.*?)\1|(?:[^\s]+'.*?')?([^;\n]*))/g.exec(contentDisposition) : undefined;
3302
+ let fileName = fileNameMatch && fileNameMatch.length > 1 ? fileNameMatch[3] || fileNameMatch[2] : undefined;
3303
+ if (fileName) {
3304
+ fileName = decodeURIComponent(fileName);
3305
+ }
3306
+ else {
3307
+ fileNameMatch = contentDisposition ? /filename="?([^"]*?)"?(;|$)/g.exec(contentDisposition) : undefined;
3308
+ fileName = fileNameMatch && fileNameMatch.length > 1 ? fileNameMatch[1] : undefined;
3309
+ }
3310
+ return response.blob().then(blob => { return { fileName: fileName, data: blob, status: status, headers: _headers }; });
3311
+ }
3312
+ else if (status === 404) {
3313
+ return response.text().then((_responseText) => {
3314
+ let result404 = null;
3315
+ let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
3316
+ result404 = ProblemDetails.fromJS(resultData404);
3317
+ return throwException("Not Found", status, _responseText, _headers, result404);
3318
+ });
3319
+ }
3320
+ else if (status !== 200 && status !== 204) {
3321
+ return response.text().then((_responseText) => {
3322
+ return throwException("An unexpected server error occurred.", status, _responseText, _headers);
3323
+ });
3324
+ }
3325
+ return Promise.resolve(null);
3326
+ }
3267
3327
  /**
3268
3328
  * Gets a PMI feed pricing record by ID.
3269
3329
  * @param id The PMI feed pricing ID.
@@ -5364,12 +5424,76 @@ export class Client {
5364
5424
  }
5365
5425
  return Promise.resolve(null);
5366
5426
  }
5427
+ /**
5428
+ * Get all QuestionnaireAnswers.
5429
+ * @param investorId (optional) Optional filter by Investor ID.
5430
+ * @param questionnaireId (optional) Optional filter by Questionnaire ID.
5431
+ * @param page (optional)
5432
+ * @param pageSize (optional)
5433
+ * @param sortOrder (optional)
5434
+ * @return Returns the list of Questionnaire.
5435
+ */
5436
+ questionnaireAnswerGET(investorId, questionnaireId, page, pageSize, sortOrder) {
5437
+ let url_ = this.baseUrl + "/primary/v1/questionnaire-answer?";
5438
+ if (investorId === null)
5439
+ throw new Error("The parameter 'investorId' cannot be null.");
5440
+ else if (investorId !== undefined)
5441
+ url_ += "investorId=" + encodeURIComponent("" + investorId) + "&";
5442
+ if (questionnaireId === null)
5443
+ throw new Error("The parameter 'questionnaireId' cannot be null.");
5444
+ else if (questionnaireId !== undefined)
5445
+ url_ += "questionnaireId=" + encodeURIComponent("" + questionnaireId) + "&";
5446
+ if (page === null)
5447
+ throw new Error("The parameter 'page' cannot be null.");
5448
+ else if (page !== undefined)
5449
+ url_ += "page=" + encodeURIComponent("" + page) + "&";
5450
+ if (pageSize === null)
5451
+ throw new Error("The parameter 'pageSize' cannot be null.");
5452
+ else if (pageSize !== undefined)
5453
+ url_ += "pageSize=" + encodeURIComponent("" + pageSize) + "&";
5454
+ if (sortOrder === null)
5455
+ throw new Error("The parameter 'sortOrder' cannot be null.");
5456
+ else if (sortOrder !== undefined)
5457
+ url_ += "sortOrder=" + encodeURIComponent("" + sortOrder) + "&";
5458
+ url_ = url_.replace(/[?&]$/, "");
5459
+ let options_ = {
5460
+ method: "GET",
5461
+ headers: {
5462
+ "Accept": "application/json"
5463
+ }
5464
+ };
5465
+ return this.http.fetch(url_, options_).then((_response) => {
5466
+ return this.processQuestionnaireAnswerGET(_response);
5467
+ });
5468
+ }
5469
+ processQuestionnaireAnswerGET(response) {
5470
+ const status = response.status;
5471
+ let _headers = {};
5472
+ if (response.headers && response.headers.forEach) {
5473
+ response.headers.forEach((v, k) => _headers[k] = v);
5474
+ }
5475
+ ;
5476
+ if (status === 200) {
5477
+ return response.text().then((_responseText) => {
5478
+ let result200 = null;
5479
+ let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
5480
+ result200 = QuestionnaireAnswerApiResponse.fromJS(resultData200);
5481
+ return result200;
5482
+ });
5483
+ }
5484
+ else if (status !== 200 && status !== 204) {
5485
+ return response.text().then((_responseText) => {
5486
+ return throwException("An unexpected server error occurred.", status, _responseText, _headers);
5487
+ });
5488
+ }
5489
+ return Promise.resolve(null);
5490
+ }
5367
5491
  /**
5368
5492
  * Get a QuestionnaireAnswer by Id
5369
5493
  * @param id ID of the QuestionnaireAnswer to find.
5370
5494
  * @return Returns the QuestionnaireAnswer with the specified Id.
5371
5495
  */
5372
- questionnaireAnswerGET(id) {
5496
+ questionnaireAnswerGET2(id) {
5373
5497
  let url_ = this.baseUrl + "/primary/v1/questionnaire-answer/{id}";
5374
5498
  if (id === undefined || id === null)
5375
5499
  throw new Error("The parameter 'id' must be defined.");
@@ -5382,10 +5506,10 @@ export class Client {
5382
5506
  }
5383
5507
  };
5384
5508
  return this.http.fetch(url_, options_).then((_response) => {
5385
- return this.processQuestionnaireAnswerGET(_response);
5509
+ return this.processQuestionnaireAnswerGET2(_response);
5386
5510
  });
5387
5511
  }
5388
- processQuestionnaireAnswerGET(response) {
5512
+ processQuestionnaireAnswerGET2(response) {
5389
5513
  const status = response.status;
5390
5514
  let _headers = {};
5391
5515
  if (response.headers && response.headers.forEach) {
@@ -6581,6 +6705,98 @@ export class ApiVersion {
6581
6705
  return data;
6582
6706
  }
6583
6707
  }
6708
+ export class Assembly {
6709
+ constructor(data) {
6710
+ if (data) {
6711
+ for (var property in data) {
6712
+ if (data.hasOwnProperty(property))
6713
+ this[property] = data[property];
6714
+ }
6715
+ }
6716
+ }
6717
+ init(_data) {
6718
+ if (_data) {
6719
+ if (Array.isArray(_data["definedTypes"])) {
6720
+ this.definedTypes = [];
6721
+ for (let item of _data["definedTypes"])
6722
+ this.definedTypes.push(TypeInfo.fromJS(item));
6723
+ }
6724
+ if (Array.isArray(_data["exportedTypes"])) {
6725
+ this.exportedTypes = [];
6726
+ for (let item of _data["exportedTypes"])
6727
+ this.exportedTypes.push(Type.fromJS(item));
6728
+ }
6729
+ this.codeBase = _data["codeBase"];
6730
+ this.entryPoint = _data["entryPoint"] ? MethodInfo.fromJS(_data["entryPoint"]) : undefined;
6731
+ this.fullName = _data["fullName"];
6732
+ this.imageRuntimeVersion = _data["imageRuntimeVersion"];
6733
+ this.isDynamic = _data["isDynamic"];
6734
+ this.location = _data["location"];
6735
+ this.reflectionOnly = _data["reflectionOnly"];
6736
+ this.isCollectible = _data["isCollectible"];
6737
+ this.isFullyTrusted = _data["isFullyTrusted"];
6738
+ if (Array.isArray(_data["customAttributes"])) {
6739
+ this.customAttributes = [];
6740
+ for (let item of _data["customAttributes"])
6741
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
6742
+ }
6743
+ this.escapedCodeBase = _data["escapedCodeBase"];
6744
+ this.manifestModule = _data["manifestModule"] ? Module.fromJS(_data["manifestModule"]) : undefined;
6745
+ if (Array.isArray(_data["modules"])) {
6746
+ this.modules = [];
6747
+ for (let item of _data["modules"])
6748
+ this.modules.push(Module.fromJS(item));
6749
+ }
6750
+ this.globalAssemblyCache = _data["globalAssemblyCache"];
6751
+ this.hostContext = _data["hostContext"];
6752
+ this.securityRuleSet = _data["securityRuleSet"];
6753
+ }
6754
+ }
6755
+ static fromJS(data) {
6756
+ data = typeof data === 'object' ? data : {};
6757
+ let result = new Assembly();
6758
+ result.init(data);
6759
+ return result;
6760
+ }
6761
+ toJSON(data) {
6762
+ data = typeof data === 'object' ? data : {};
6763
+ if (Array.isArray(this.definedTypes)) {
6764
+ data["definedTypes"] = [];
6765
+ for (let item of this.definedTypes)
6766
+ data["definedTypes"].push(item.toJSON());
6767
+ }
6768
+ if (Array.isArray(this.exportedTypes)) {
6769
+ data["exportedTypes"] = [];
6770
+ for (let item of this.exportedTypes)
6771
+ data["exportedTypes"].push(item.toJSON());
6772
+ }
6773
+ data["codeBase"] = this.codeBase;
6774
+ data["entryPoint"] = this.entryPoint ? this.entryPoint.toJSON() : undefined;
6775
+ data["fullName"] = this.fullName;
6776
+ data["imageRuntimeVersion"] = this.imageRuntimeVersion;
6777
+ data["isDynamic"] = this.isDynamic;
6778
+ data["location"] = this.location;
6779
+ data["reflectionOnly"] = this.reflectionOnly;
6780
+ data["isCollectible"] = this.isCollectible;
6781
+ data["isFullyTrusted"] = this.isFullyTrusted;
6782
+ if (Array.isArray(this.customAttributes)) {
6783
+ data["customAttributes"] = [];
6784
+ for (let item of this.customAttributes)
6785
+ data["customAttributes"].push(item.toJSON());
6786
+ }
6787
+ data["escapedCodeBase"] = this.escapedCodeBase;
6788
+ data["manifestModule"] = this.manifestModule ? this.manifestModule.toJSON() : undefined;
6789
+ if (Array.isArray(this.modules)) {
6790
+ data["modules"] = [];
6791
+ for (let item of this.modules)
6792
+ data["modules"].push(item.toJSON());
6793
+ }
6794
+ data["globalAssemblyCache"] = this.globalAssemblyCache;
6795
+ data["hostContext"] = this.hostContext;
6796
+ data["securityRuleSet"] = this.securityRuleSet;
6797
+ return data;
6798
+ }
6799
+ }
6584
6800
  export class BulkPreIPOCompany {
6585
6801
  constructor(data) {
6586
6802
  if (data) {
@@ -6828,7 +7044,6 @@ export class BulkPreIPOCompanySPV {
6828
7044
  for (let item of _data["notableInvestors"])
6829
7045
  this.notableInvestors.push(item);
6830
7046
  }
6831
- this.masterLLCName = _data["masterLLCName"];
6832
7047
  this.managementFee = _data["managementFee"];
6833
7048
  this.managementFeeYearsPayable = _data["managementFeeYearsPayable"];
6834
7049
  this.fundingDeadline = _data["fundingDeadline"] ? new Date(_data["fundingDeadline"].toString()) : undefined;
@@ -6898,7 +7113,6 @@ export class BulkPreIPOCompanySPV {
6898
7113
  for (let item of this.notableInvestors)
6899
7114
  data["notableInvestors"].push(item);
6900
7115
  }
6901
- data["masterLLCName"] = this.masterLLCName;
6902
7116
  data["managementFee"] = this.managementFee;
6903
7117
  data["managementFeeYearsPayable"] = this.managementFeeYearsPayable;
6904
7118
  data["fundingDeadline"] = this.fundingDeadline ? formatDate(this.fundingDeadline) : undefined;
@@ -6977,6 +7191,154 @@ export class Citation {
6977
7191
  return data;
6978
7192
  }
6979
7193
  }
7194
+ export class ConstructorInfo {
7195
+ constructor(data) {
7196
+ if (data) {
7197
+ for (var property in data) {
7198
+ if (data.hasOwnProperty(property))
7199
+ this[property] = data[property];
7200
+ }
7201
+ }
7202
+ }
7203
+ init(_data) {
7204
+ if (_data) {
7205
+ this.name = _data["name"];
7206
+ this.declaringType = _data["declaringType"] ? Type.fromJS(_data["declaringType"]) : undefined;
7207
+ this.reflectedType = _data["reflectedType"] ? Type.fromJS(_data["reflectedType"]) : undefined;
7208
+ this.module = _data["module"] ? Module.fromJS(_data["module"]) : undefined;
7209
+ if (Array.isArray(_data["customAttributes"])) {
7210
+ this.customAttributes = [];
7211
+ for (let item of _data["customAttributes"])
7212
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
7213
+ }
7214
+ this.isCollectible = _data["isCollectible"];
7215
+ this.metadataToken = _data["metadataToken"];
7216
+ this.attributes = _data["attributes"];
7217
+ this.methodImplementationFlags = _data["methodImplementationFlags"];
7218
+ this.callingConvention = _data["callingConvention"];
7219
+ this.isAbstract = _data["isAbstract"];
7220
+ this.isConstructor = _data["isConstructor"];
7221
+ this.isFinal = _data["isFinal"];
7222
+ this.isHideBySig = _data["isHideBySig"];
7223
+ this.isSpecialName = _data["isSpecialName"];
7224
+ this.isStatic = _data["isStatic"];
7225
+ this.isVirtual = _data["isVirtual"];
7226
+ this.isAssembly = _data["isAssembly"];
7227
+ this.isFamily = _data["isFamily"];
7228
+ this.isFamilyAndAssembly = _data["isFamilyAndAssembly"];
7229
+ this.isFamilyOrAssembly = _data["isFamilyOrAssembly"];
7230
+ this.isPrivate = _data["isPrivate"];
7231
+ this.isPublic = _data["isPublic"];
7232
+ this.isConstructedGenericMethod = _data["isConstructedGenericMethod"];
7233
+ this.isGenericMethod = _data["isGenericMethod"];
7234
+ this.isGenericMethodDefinition = _data["isGenericMethodDefinition"];
7235
+ this.containsGenericParameters = _data["containsGenericParameters"];
7236
+ this.methodHandle = _data["methodHandle"] ? RuntimeMethodHandle.fromJS(_data["methodHandle"]) : undefined;
7237
+ this.isSecurityCritical = _data["isSecurityCritical"];
7238
+ this.isSecuritySafeCritical = _data["isSecuritySafeCritical"];
7239
+ this.isSecurityTransparent = _data["isSecurityTransparent"];
7240
+ this.memberType = _data["memberType"];
7241
+ }
7242
+ }
7243
+ static fromJS(data) {
7244
+ data = typeof data === 'object' ? data : {};
7245
+ let result = new ConstructorInfo();
7246
+ result.init(data);
7247
+ return result;
7248
+ }
7249
+ toJSON(data) {
7250
+ data = typeof data === 'object' ? data : {};
7251
+ data["name"] = this.name;
7252
+ data["declaringType"] = this.declaringType ? this.declaringType.toJSON() : undefined;
7253
+ data["reflectedType"] = this.reflectedType ? this.reflectedType.toJSON() : undefined;
7254
+ data["module"] = this.module ? this.module.toJSON() : undefined;
7255
+ if (Array.isArray(this.customAttributes)) {
7256
+ data["customAttributes"] = [];
7257
+ for (let item of this.customAttributes)
7258
+ data["customAttributes"].push(item.toJSON());
7259
+ }
7260
+ data["isCollectible"] = this.isCollectible;
7261
+ data["metadataToken"] = this.metadataToken;
7262
+ data["attributes"] = this.attributes;
7263
+ data["methodImplementationFlags"] = this.methodImplementationFlags;
7264
+ data["callingConvention"] = this.callingConvention;
7265
+ data["isAbstract"] = this.isAbstract;
7266
+ data["isConstructor"] = this.isConstructor;
7267
+ data["isFinal"] = this.isFinal;
7268
+ data["isHideBySig"] = this.isHideBySig;
7269
+ data["isSpecialName"] = this.isSpecialName;
7270
+ data["isStatic"] = this.isStatic;
7271
+ data["isVirtual"] = this.isVirtual;
7272
+ data["isAssembly"] = this.isAssembly;
7273
+ data["isFamily"] = this.isFamily;
7274
+ data["isFamilyAndAssembly"] = this.isFamilyAndAssembly;
7275
+ data["isFamilyOrAssembly"] = this.isFamilyOrAssembly;
7276
+ data["isPrivate"] = this.isPrivate;
7277
+ data["isPublic"] = this.isPublic;
7278
+ data["isConstructedGenericMethod"] = this.isConstructedGenericMethod;
7279
+ data["isGenericMethod"] = this.isGenericMethod;
7280
+ data["isGenericMethodDefinition"] = this.isGenericMethodDefinition;
7281
+ data["containsGenericParameters"] = this.containsGenericParameters;
7282
+ data["methodHandle"] = this.methodHandle ? this.methodHandle.toJSON() : undefined;
7283
+ data["isSecurityCritical"] = this.isSecurityCritical;
7284
+ data["isSecuritySafeCritical"] = this.isSecuritySafeCritical;
7285
+ data["isSecurityTransparent"] = this.isSecurityTransparent;
7286
+ data["memberType"] = this.memberType;
7287
+ return data;
7288
+ }
7289
+ }
7290
+ export class Cookie {
7291
+ constructor(data) {
7292
+ if (data) {
7293
+ for (var property in data) {
7294
+ if (data.hasOwnProperty(property))
7295
+ this[property] = data[property];
7296
+ }
7297
+ }
7298
+ }
7299
+ init(_data) {
7300
+ if (_data) {
7301
+ this.comment = _data["comment"];
7302
+ this.commentUri = _data["commentUri"];
7303
+ this.httpOnly = _data["httpOnly"];
7304
+ this.discard = _data["discard"];
7305
+ this.domain = _data["domain"];
7306
+ this.expired = _data["expired"];
7307
+ this.expires = _data["expires"] ? new Date(_data["expires"].toString()) : undefined;
7308
+ this.name = _data["name"];
7309
+ this.path = _data["path"];
7310
+ this.port = _data["port"];
7311
+ this.secure = _data["secure"];
7312
+ this.timeStamp = _data["timeStamp"] ? new Date(_data["timeStamp"].toString()) : undefined;
7313
+ this.value = _data["value"];
7314
+ this.version = _data["version"];
7315
+ }
7316
+ }
7317
+ static fromJS(data) {
7318
+ data = typeof data === 'object' ? data : {};
7319
+ let result = new Cookie();
7320
+ result.init(data);
7321
+ return result;
7322
+ }
7323
+ toJSON(data) {
7324
+ data = typeof data === 'object' ? data : {};
7325
+ data["comment"] = this.comment;
7326
+ data["commentUri"] = this.commentUri;
7327
+ data["httpOnly"] = this.httpOnly;
7328
+ data["discard"] = this.discard;
7329
+ data["domain"] = this.domain;
7330
+ data["expired"] = this.expired;
7331
+ data["expires"] = this.expires ? this.expires.toISOString() : undefined;
7332
+ data["name"] = this.name;
7333
+ data["path"] = this.path;
7334
+ data["port"] = this.port;
7335
+ data["secure"] = this.secure;
7336
+ data["timeStamp"] = this.timeStamp ? this.timeStamp.toISOString() : undefined;
7337
+ data["value"] = this.value;
7338
+ data["version"] = this.version;
7339
+ return data;
7340
+ }
7341
+ }
6980
7342
  export class CreateFinancialAdvisor {
6981
7343
  constructor(data) {
6982
7344
  if (data) {
@@ -7424,6 +7786,114 @@ export class CreateWebhook {
7424
7786
  return data;
7425
7787
  }
7426
7788
  }
7789
+ export class CustomAttributeData {
7790
+ constructor(data) {
7791
+ if (data) {
7792
+ for (var property in data) {
7793
+ if (data.hasOwnProperty(property))
7794
+ this[property] = data[property];
7795
+ }
7796
+ }
7797
+ }
7798
+ init(_data) {
7799
+ if (_data) {
7800
+ this.attributeType = _data["attributeType"] ? Type.fromJS(_data["attributeType"]) : undefined;
7801
+ this.constructor_ = _data["constructor"] ? ConstructorInfo.fromJS(_data["constructor"]) : undefined;
7802
+ if (Array.isArray(_data["constructorArguments"])) {
7803
+ this.constructorArguments = [];
7804
+ for (let item of _data["constructorArguments"])
7805
+ this.constructorArguments.push(CustomAttributeTypedArgument.fromJS(item));
7806
+ }
7807
+ if (Array.isArray(_data["namedArguments"])) {
7808
+ this.namedArguments = [];
7809
+ for (let item of _data["namedArguments"])
7810
+ this.namedArguments.push(CustomAttributeNamedArgument.fromJS(item));
7811
+ }
7812
+ }
7813
+ }
7814
+ static fromJS(data) {
7815
+ data = typeof data === 'object' ? data : {};
7816
+ let result = new CustomAttributeData();
7817
+ result.init(data);
7818
+ return result;
7819
+ }
7820
+ toJSON(data) {
7821
+ data = typeof data === 'object' ? data : {};
7822
+ data["attributeType"] = this.attributeType ? this.attributeType.toJSON() : undefined;
7823
+ data["constructor"] = this.constructor_ ? this.constructor_.toJSON() : undefined;
7824
+ if (Array.isArray(this.constructorArguments)) {
7825
+ data["constructorArguments"] = [];
7826
+ for (let item of this.constructorArguments)
7827
+ data["constructorArguments"].push(item.toJSON());
7828
+ }
7829
+ if (Array.isArray(this.namedArguments)) {
7830
+ data["namedArguments"] = [];
7831
+ for (let item of this.namedArguments)
7832
+ data["namedArguments"].push(item.toJSON());
7833
+ }
7834
+ return data;
7835
+ }
7836
+ }
7837
+ export class CustomAttributeNamedArgument {
7838
+ constructor(data) {
7839
+ if (data) {
7840
+ for (var property in data) {
7841
+ if (data.hasOwnProperty(property))
7842
+ this[property] = data[property];
7843
+ }
7844
+ }
7845
+ }
7846
+ init(_data) {
7847
+ if (_data) {
7848
+ this.memberInfo = _data["memberInfo"] ? MemberInfo.fromJS(_data["memberInfo"]) : undefined;
7849
+ this.typedValue = _data["typedValue"] ? CustomAttributeTypedArgument.fromJS(_data["typedValue"]) : undefined;
7850
+ this.memberName = _data["memberName"];
7851
+ this.isField = _data["isField"];
7852
+ }
7853
+ }
7854
+ static fromJS(data) {
7855
+ data = typeof data === 'object' ? data : {};
7856
+ let result = new CustomAttributeNamedArgument();
7857
+ result.init(data);
7858
+ return result;
7859
+ }
7860
+ toJSON(data) {
7861
+ data = typeof data === 'object' ? data : {};
7862
+ data["memberInfo"] = this.memberInfo ? this.memberInfo.toJSON() : undefined;
7863
+ data["typedValue"] = this.typedValue ? this.typedValue.toJSON() : undefined;
7864
+ data["memberName"] = this.memberName;
7865
+ data["isField"] = this.isField;
7866
+ return data;
7867
+ }
7868
+ }
7869
+ export class CustomAttributeTypedArgument {
7870
+ constructor(data) {
7871
+ if (data) {
7872
+ for (var property in data) {
7873
+ if (data.hasOwnProperty(property))
7874
+ this[property] = data[property];
7875
+ }
7876
+ }
7877
+ }
7878
+ init(_data) {
7879
+ if (_data) {
7880
+ this.argumentType = _data["argumentType"] ? Type.fromJS(_data["argumentType"]) : undefined;
7881
+ this.value = _data["value"];
7882
+ }
7883
+ }
7884
+ static fromJS(data) {
7885
+ data = typeof data === 'object' ? data : {};
7886
+ let result = new CustomAttributeTypedArgument();
7887
+ result.init(data);
7888
+ return result;
7889
+ }
7890
+ toJSON(data) {
7891
+ data = typeof data === 'object' ? data : {};
7892
+ data["argumentType"] = this.argumentType ? this.argumentType.toJSON() : undefined;
7893
+ data["value"] = this.value;
7894
+ return data;
7895
+ }
7896
+ }
7427
7897
  /** Represents a document associated with the fund admin. */
7428
7898
  export class Document {
7429
7899
  constructor(data) {
@@ -7584,6 +8054,68 @@ export class EntityInvestor {
7584
8054
  return data;
7585
8055
  }
7586
8056
  }
8057
+ export class EventInfo {
8058
+ constructor(data) {
8059
+ if (data) {
8060
+ for (var property in data) {
8061
+ if (data.hasOwnProperty(property))
8062
+ this[property] = data[property];
8063
+ }
8064
+ }
8065
+ }
8066
+ init(_data) {
8067
+ if (_data) {
8068
+ this.name = _data["name"];
8069
+ this.declaringType = _data["declaringType"] ? Type.fromJS(_data["declaringType"]) : undefined;
8070
+ this.reflectedType = _data["reflectedType"] ? Type.fromJS(_data["reflectedType"]) : undefined;
8071
+ this.module = _data["module"] ? Module.fromJS(_data["module"]) : undefined;
8072
+ if (Array.isArray(_data["customAttributes"])) {
8073
+ this.customAttributes = [];
8074
+ for (let item of _data["customAttributes"])
8075
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
8076
+ }
8077
+ this.isCollectible = _data["isCollectible"];
8078
+ this.metadataToken = _data["metadataToken"];
8079
+ this.memberType = _data["memberType"];
8080
+ this.attributes = _data["attributes"];
8081
+ this.isSpecialName = _data["isSpecialName"];
8082
+ this.addMethod = _data["addMethod"] ? MethodInfo.fromJS(_data["addMethod"]) : undefined;
8083
+ this.removeMethod = _data["removeMethod"] ? MethodInfo.fromJS(_data["removeMethod"]) : undefined;
8084
+ this.raiseMethod = _data["raiseMethod"] ? MethodInfo.fromJS(_data["raiseMethod"]) : undefined;
8085
+ this.isMulticast = _data["isMulticast"];
8086
+ this.eventHandlerType = _data["eventHandlerType"] ? Type.fromJS(_data["eventHandlerType"]) : undefined;
8087
+ }
8088
+ }
8089
+ static fromJS(data) {
8090
+ data = typeof data === 'object' ? data : {};
8091
+ let result = new EventInfo();
8092
+ result.init(data);
8093
+ return result;
8094
+ }
8095
+ toJSON(data) {
8096
+ data = typeof data === 'object' ? data : {};
8097
+ data["name"] = this.name;
8098
+ data["declaringType"] = this.declaringType ? this.declaringType.toJSON() : undefined;
8099
+ data["reflectedType"] = this.reflectedType ? this.reflectedType.toJSON() : undefined;
8100
+ data["module"] = this.module ? this.module.toJSON() : undefined;
8101
+ if (Array.isArray(this.customAttributes)) {
8102
+ data["customAttributes"] = [];
8103
+ for (let item of this.customAttributes)
8104
+ data["customAttributes"].push(item.toJSON());
8105
+ }
8106
+ data["isCollectible"] = this.isCollectible;
8107
+ data["metadataToken"] = this.metadataToken;
8108
+ data["memberType"] = this.memberType;
8109
+ data["attributes"] = this.attributes;
8110
+ data["isSpecialName"] = this.isSpecialName;
8111
+ data["addMethod"] = this.addMethod ? this.addMethod.toJSON() : undefined;
8112
+ data["removeMethod"] = this.removeMethod ? this.removeMethod.toJSON() : undefined;
8113
+ data["raiseMethod"] = this.raiseMethod ? this.raiseMethod.toJSON() : undefined;
8114
+ data["isMulticast"] = this.isMulticast;
8115
+ data["eventHandlerType"] = this.eventHandlerType ? this.eventHandlerType.toJSON() : undefined;
8116
+ return data;
8117
+ }
8118
+ }
7587
8119
  /** Represents a fee structure that can be associated with either a registered fund or a share class. */
7588
8120
  export class FeeStructure {
7589
8121
  constructor(data) {
@@ -7621,6 +8153,90 @@ export class FeeStructure {
7621
8153
  return data;
7622
8154
  }
7623
8155
  }
8156
+ export class FieldInfo {
8157
+ constructor(data) {
8158
+ if (data) {
8159
+ for (var property in data) {
8160
+ if (data.hasOwnProperty(property))
8161
+ this[property] = data[property];
8162
+ }
8163
+ }
8164
+ }
8165
+ init(_data) {
8166
+ if (_data) {
8167
+ this.name = _data["name"];
8168
+ this.declaringType = _data["declaringType"] ? Type.fromJS(_data["declaringType"]) : undefined;
8169
+ this.reflectedType = _data["reflectedType"] ? Type.fromJS(_data["reflectedType"]) : undefined;
8170
+ this.module = _data["module"] ? Module.fromJS(_data["module"]) : undefined;
8171
+ if (Array.isArray(_data["customAttributes"])) {
8172
+ this.customAttributes = [];
8173
+ for (let item of _data["customAttributes"])
8174
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
8175
+ }
8176
+ this.isCollectible = _data["isCollectible"];
8177
+ this.metadataToken = _data["metadataToken"];
8178
+ this.memberType = _data["memberType"];
8179
+ this.attributes = _data["attributes"];
8180
+ this.fieldType = _data["fieldType"] ? Type.fromJS(_data["fieldType"]) : undefined;
8181
+ this.isInitOnly = _data["isInitOnly"];
8182
+ this.isLiteral = _data["isLiteral"];
8183
+ this.isNotSerialized = _data["isNotSerialized"];
8184
+ this.isPinvokeImpl = _data["isPinvokeImpl"];
8185
+ this.isSpecialName = _data["isSpecialName"];
8186
+ this.isStatic = _data["isStatic"];
8187
+ this.isAssembly = _data["isAssembly"];
8188
+ this.isFamily = _data["isFamily"];
8189
+ this.isFamilyAndAssembly = _data["isFamilyAndAssembly"];
8190
+ this.isFamilyOrAssembly = _data["isFamilyOrAssembly"];
8191
+ this.isPrivate = _data["isPrivate"];
8192
+ this.isPublic = _data["isPublic"];
8193
+ this.isSecurityCritical = _data["isSecurityCritical"];
8194
+ this.isSecuritySafeCritical = _data["isSecuritySafeCritical"];
8195
+ this.isSecurityTransparent = _data["isSecurityTransparent"];
8196
+ this.fieldHandle = _data["fieldHandle"] ? RuntimeFieldHandle.fromJS(_data["fieldHandle"]) : undefined;
8197
+ }
8198
+ }
8199
+ static fromJS(data) {
8200
+ data = typeof data === 'object' ? data : {};
8201
+ let result = new FieldInfo();
8202
+ result.init(data);
8203
+ return result;
8204
+ }
8205
+ toJSON(data) {
8206
+ data = typeof data === 'object' ? data : {};
8207
+ data["name"] = this.name;
8208
+ data["declaringType"] = this.declaringType ? this.declaringType.toJSON() : undefined;
8209
+ data["reflectedType"] = this.reflectedType ? this.reflectedType.toJSON() : undefined;
8210
+ data["module"] = this.module ? this.module.toJSON() : undefined;
8211
+ if (Array.isArray(this.customAttributes)) {
8212
+ data["customAttributes"] = [];
8213
+ for (let item of this.customAttributes)
8214
+ data["customAttributes"].push(item.toJSON());
8215
+ }
8216
+ data["isCollectible"] = this.isCollectible;
8217
+ data["metadataToken"] = this.metadataToken;
8218
+ data["memberType"] = this.memberType;
8219
+ data["attributes"] = this.attributes;
8220
+ data["fieldType"] = this.fieldType ? this.fieldType.toJSON() : undefined;
8221
+ data["isInitOnly"] = this.isInitOnly;
8222
+ data["isLiteral"] = this.isLiteral;
8223
+ data["isNotSerialized"] = this.isNotSerialized;
8224
+ data["isPinvokeImpl"] = this.isPinvokeImpl;
8225
+ data["isSpecialName"] = this.isSpecialName;
8226
+ data["isStatic"] = this.isStatic;
8227
+ data["isAssembly"] = this.isAssembly;
8228
+ data["isFamily"] = this.isFamily;
8229
+ data["isFamilyAndAssembly"] = this.isFamilyAndAssembly;
8230
+ data["isFamilyOrAssembly"] = this.isFamilyOrAssembly;
8231
+ data["isPrivate"] = this.isPrivate;
8232
+ data["isPublic"] = this.isPublic;
8233
+ data["isSecurityCritical"] = this.isSecurityCritical;
8234
+ data["isSecuritySafeCritical"] = this.isSecuritySafeCritical;
8235
+ data["isSecurityTransparent"] = this.isSecurityTransparent;
8236
+ data["fieldHandle"] = this.fieldHandle ? this.fieldHandle.toJSON() : undefined;
8237
+ return data;
8238
+ }
8239
+ }
7624
8240
  /** FinancialAdvisor represents the financial advisor information. */
7625
8241
  export class FinancialAdvisor {
7626
8242
  constructor(data) {
@@ -7853,6 +8469,28 @@ export class FundAdvisor {
7853
8469
  return data;
7854
8470
  }
7855
8471
  }
8472
+ export class ICustomAttributeProvider {
8473
+ constructor(data) {
8474
+ if (data) {
8475
+ for (var property in data) {
8476
+ if (data.hasOwnProperty(property))
8477
+ this[property] = data[property];
8478
+ }
8479
+ }
8480
+ }
8481
+ init(_data) {
8482
+ }
8483
+ static fromJS(data) {
8484
+ data = typeof data === 'object' ? data : {};
8485
+ let result = new ICustomAttributeProvider();
8486
+ result.init(data);
8487
+ return result;
8488
+ }
8489
+ toJSON(data) {
8490
+ data = typeof data === 'object' ? data : {};
8491
+ return data;
8492
+ }
8493
+ }
7856
8494
  /** IndicationOfInterest represents the primary offering information on the IoI. */
7857
8495
  export class IndicationOfInterest {
7858
8496
  constructor(data) {
@@ -8194,6 +8832,28 @@ export class IndividualInvestor {
8194
8832
  return data;
8195
8833
  }
8196
8834
  }
8835
+ export class IntPtr {
8836
+ constructor(data) {
8837
+ if (data) {
8838
+ for (var property in data) {
8839
+ if (data.hasOwnProperty(property))
8840
+ this[property] = data[property];
8841
+ }
8842
+ }
8843
+ }
8844
+ init(_data) {
8845
+ }
8846
+ static fromJS(data) {
8847
+ data = typeof data === 'object' ? data : {};
8848
+ let result = new IntPtr();
8849
+ result.init(data);
8850
+ return result;
8851
+ }
8852
+ toJSON(data) {
8853
+ data = typeof data === 'object' ? data : {};
8854
+ return data;
8855
+ }
8856
+ }
8197
8857
  /** Investor represents the primary offering information on the investor. */
8198
8858
  export class Investor {
8199
8859
  constructor(data) {
@@ -8516,6 +9176,252 @@ export class Listing {
8516
9176
  return data;
8517
9177
  }
8518
9178
  }
9179
+ export class MemberInfo {
9180
+ constructor(data) {
9181
+ if (data) {
9182
+ for (var property in data) {
9183
+ if (data.hasOwnProperty(property))
9184
+ this[property] = data[property];
9185
+ }
9186
+ }
9187
+ }
9188
+ init(_data) {
9189
+ if (_data) {
9190
+ this.memberType = _data["memberType"];
9191
+ this.name = _data["name"];
9192
+ this.declaringType = _data["declaringType"] ? Type.fromJS(_data["declaringType"]) : undefined;
9193
+ this.reflectedType = _data["reflectedType"] ? Type.fromJS(_data["reflectedType"]) : undefined;
9194
+ this.module = _data["module"] ? Module.fromJS(_data["module"]) : undefined;
9195
+ if (Array.isArray(_data["customAttributes"])) {
9196
+ this.customAttributes = [];
9197
+ for (let item of _data["customAttributes"])
9198
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
9199
+ }
9200
+ this.isCollectible = _data["isCollectible"];
9201
+ this.metadataToken = _data["metadataToken"];
9202
+ }
9203
+ }
9204
+ static fromJS(data) {
9205
+ data = typeof data === 'object' ? data : {};
9206
+ let result = new MemberInfo();
9207
+ result.init(data);
9208
+ return result;
9209
+ }
9210
+ toJSON(data) {
9211
+ data = typeof data === 'object' ? data : {};
9212
+ data["memberType"] = this.memberType;
9213
+ data["name"] = this.name;
9214
+ data["declaringType"] = this.declaringType ? this.declaringType.toJSON() : undefined;
9215
+ data["reflectedType"] = this.reflectedType ? this.reflectedType.toJSON() : undefined;
9216
+ data["module"] = this.module ? this.module.toJSON() : undefined;
9217
+ if (Array.isArray(this.customAttributes)) {
9218
+ data["customAttributes"] = [];
9219
+ for (let item of this.customAttributes)
9220
+ data["customAttributes"].push(item.toJSON());
9221
+ }
9222
+ data["isCollectible"] = this.isCollectible;
9223
+ data["metadataToken"] = this.metadataToken;
9224
+ return data;
9225
+ }
9226
+ }
9227
+ export class MethodBase {
9228
+ constructor(data) {
9229
+ if (data) {
9230
+ for (var property in data) {
9231
+ if (data.hasOwnProperty(property))
9232
+ this[property] = data[property];
9233
+ }
9234
+ }
9235
+ }
9236
+ init(_data) {
9237
+ if (_data) {
9238
+ this.memberType = _data["memberType"];
9239
+ this.name = _data["name"];
9240
+ this.declaringType = _data["declaringType"] ? Type.fromJS(_data["declaringType"]) : undefined;
9241
+ this.reflectedType = _data["reflectedType"] ? Type.fromJS(_data["reflectedType"]) : undefined;
9242
+ this.module = _data["module"] ? Module.fromJS(_data["module"]) : undefined;
9243
+ if (Array.isArray(_data["customAttributes"])) {
9244
+ this.customAttributes = [];
9245
+ for (let item of _data["customAttributes"])
9246
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
9247
+ }
9248
+ this.isCollectible = _data["isCollectible"];
9249
+ this.metadataToken = _data["metadataToken"];
9250
+ this.attributes = _data["attributes"];
9251
+ this.methodImplementationFlags = _data["methodImplementationFlags"];
9252
+ this.callingConvention = _data["callingConvention"];
9253
+ this.isAbstract = _data["isAbstract"];
9254
+ this.isConstructor = _data["isConstructor"];
9255
+ this.isFinal = _data["isFinal"];
9256
+ this.isHideBySig = _data["isHideBySig"];
9257
+ this.isSpecialName = _data["isSpecialName"];
9258
+ this.isStatic = _data["isStatic"];
9259
+ this.isVirtual = _data["isVirtual"];
9260
+ this.isAssembly = _data["isAssembly"];
9261
+ this.isFamily = _data["isFamily"];
9262
+ this.isFamilyAndAssembly = _data["isFamilyAndAssembly"];
9263
+ this.isFamilyOrAssembly = _data["isFamilyOrAssembly"];
9264
+ this.isPrivate = _data["isPrivate"];
9265
+ this.isPublic = _data["isPublic"];
9266
+ this.isConstructedGenericMethod = _data["isConstructedGenericMethod"];
9267
+ this.isGenericMethod = _data["isGenericMethod"];
9268
+ this.isGenericMethodDefinition = _data["isGenericMethodDefinition"];
9269
+ this.containsGenericParameters = _data["containsGenericParameters"];
9270
+ this.methodHandle = _data["methodHandle"] ? RuntimeMethodHandle.fromJS(_data["methodHandle"]) : undefined;
9271
+ this.isSecurityCritical = _data["isSecurityCritical"];
9272
+ this.isSecuritySafeCritical = _data["isSecuritySafeCritical"];
9273
+ this.isSecurityTransparent = _data["isSecurityTransparent"];
9274
+ }
9275
+ }
9276
+ static fromJS(data) {
9277
+ data = typeof data === 'object' ? data : {};
9278
+ let result = new MethodBase();
9279
+ result.init(data);
9280
+ return result;
9281
+ }
9282
+ toJSON(data) {
9283
+ data = typeof data === 'object' ? data : {};
9284
+ data["memberType"] = this.memberType;
9285
+ data["name"] = this.name;
9286
+ data["declaringType"] = this.declaringType ? this.declaringType.toJSON() : undefined;
9287
+ data["reflectedType"] = this.reflectedType ? this.reflectedType.toJSON() : undefined;
9288
+ data["module"] = this.module ? this.module.toJSON() : undefined;
9289
+ if (Array.isArray(this.customAttributes)) {
9290
+ data["customAttributes"] = [];
9291
+ for (let item of this.customAttributes)
9292
+ data["customAttributes"].push(item.toJSON());
9293
+ }
9294
+ data["isCollectible"] = this.isCollectible;
9295
+ data["metadataToken"] = this.metadataToken;
9296
+ data["attributes"] = this.attributes;
9297
+ data["methodImplementationFlags"] = this.methodImplementationFlags;
9298
+ data["callingConvention"] = this.callingConvention;
9299
+ data["isAbstract"] = this.isAbstract;
9300
+ data["isConstructor"] = this.isConstructor;
9301
+ data["isFinal"] = this.isFinal;
9302
+ data["isHideBySig"] = this.isHideBySig;
9303
+ data["isSpecialName"] = this.isSpecialName;
9304
+ data["isStatic"] = this.isStatic;
9305
+ data["isVirtual"] = this.isVirtual;
9306
+ data["isAssembly"] = this.isAssembly;
9307
+ data["isFamily"] = this.isFamily;
9308
+ data["isFamilyAndAssembly"] = this.isFamilyAndAssembly;
9309
+ data["isFamilyOrAssembly"] = this.isFamilyOrAssembly;
9310
+ data["isPrivate"] = this.isPrivate;
9311
+ data["isPublic"] = this.isPublic;
9312
+ data["isConstructedGenericMethod"] = this.isConstructedGenericMethod;
9313
+ data["isGenericMethod"] = this.isGenericMethod;
9314
+ data["isGenericMethodDefinition"] = this.isGenericMethodDefinition;
9315
+ data["containsGenericParameters"] = this.containsGenericParameters;
9316
+ data["methodHandle"] = this.methodHandle ? this.methodHandle.toJSON() : undefined;
9317
+ data["isSecurityCritical"] = this.isSecurityCritical;
9318
+ data["isSecuritySafeCritical"] = this.isSecuritySafeCritical;
9319
+ data["isSecurityTransparent"] = this.isSecurityTransparent;
9320
+ return data;
9321
+ }
9322
+ }
9323
+ export class MethodInfo {
9324
+ constructor(data) {
9325
+ if (data) {
9326
+ for (var property in data) {
9327
+ if (data.hasOwnProperty(property))
9328
+ this[property] = data[property];
9329
+ }
9330
+ }
9331
+ }
9332
+ init(_data) {
9333
+ if (_data) {
9334
+ this.name = _data["name"];
9335
+ this.declaringType = _data["declaringType"] ? Type.fromJS(_data["declaringType"]) : undefined;
9336
+ this.reflectedType = _data["reflectedType"] ? Type.fromJS(_data["reflectedType"]) : undefined;
9337
+ this.module = _data["module"] ? Module.fromJS(_data["module"]) : undefined;
9338
+ if (Array.isArray(_data["customAttributes"])) {
9339
+ this.customAttributes = [];
9340
+ for (let item of _data["customAttributes"])
9341
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
9342
+ }
9343
+ this.isCollectible = _data["isCollectible"];
9344
+ this.metadataToken = _data["metadataToken"];
9345
+ this.attributes = _data["attributes"];
9346
+ this.methodImplementationFlags = _data["methodImplementationFlags"];
9347
+ this.callingConvention = _data["callingConvention"];
9348
+ this.isAbstract = _data["isAbstract"];
9349
+ this.isConstructor = _data["isConstructor"];
9350
+ this.isFinal = _data["isFinal"];
9351
+ this.isHideBySig = _data["isHideBySig"];
9352
+ this.isSpecialName = _data["isSpecialName"];
9353
+ this.isStatic = _data["isStatic"];
9354
+ this.isVirtual = _data["isVirtual"];
9355
+ this.isAssembly = _data["isAssembly"];
9356
+ this.isFamily = _data["isFamily"];
9357
+ this.isFamilyAndAssembly = _data["isFamilyAndAssembly"];
9358
+ this.isFamilyOrAssembly = _data["isFamilyOrAssembly"];
9359
+ this.isPrivate = _data["isPrivate"];
9360
+ this.isPublic = _data["isPublic"];
9361
+ this.isConstructedGenericMethod = _data["isConstructedGenericMethod"];
9362
+ this.isGenericMethod = _data["isGenericMethod"];
9363
+ this.isGenericMethodDefinition = _data["isGenericMethodDefinition"];
9364
+ this.containsGenericParameters = _data["containsGenericParameters"];
9365
+ this.methodHandle = _data["methodHandle"] ? RuntimeMethodHandle.fromJS(_data["methodHandle"]) : undefined;
9366
+ this.isSecurityCritical = _data["isSecurityCritical"];
9367
+ this.isSecuritySafeCritical = _data["isSecuritySafeCritical"];
9368
+ this.isSecurityTransparent = _data["isSecurityTransparent"];
9369
+ this.memberType = _data["memberType"];
9370
+ this.returnParameter = _data["returnParameter"] ? ParameterInfo.fromJS(_data["returnParameter"]) : undefined;
9371
+ this.returnType = _data["returnType"] ? Type.fromJS(_data["returnType"]) : undefined;
9372
+ this.returnTypeCustomAttributes = _data["returnTypeCustomAttributes"] ? ICustomAttributeProvider.fromJS(_data["returnTypeCustomAttributes"]) : undefined;
9373
+ }
9374
+ }
9375
+ static fromJS(data) {
9376
+ data = typeof data === 'object' ? data : {};
9377
+ let result = new MethodInfo();
9378
+ result.init(data);
9379
+ return result;
9380
+ }
9381
+ toJSON(data) {
9382
+ data = typeof data === 'object' ? data : {};
9383
+ data["name"] = this.name;
9384
+ data["declaringType"] = this.declaringType ? this.declaringType.toJSON() : undefined;
9385
+ data["reflectedType"] = this.reflectedType ? this.reflectedType.toJSON() : undefined;
9386
+ data["module"] = this.module ? this.module.toJSON() : undefined;
9387
+ if (Array.isArray(this.customAttributes)) {
9388
+ data["customAttributes"] = [];
9389
+ for (let item of this.customAttributes)
9390
+ data["customAttributes"].push(item.toJSON());
9391
+ }
9392
+ data["isCollectible"] = this.isCollectible;
9393
+ data["metadataToken"] = this.metadataToken;
9394
+ data["attributes"] = this.attributes;
9395
+ data["methodImplementationFlags"] = this.methodImplementationFlags;
9396
+ data["callingConvention"] = this.callingConvention;
9397
+ data["isAbstract"] = this.isAbstract;
9398
+ data["isConstructor"] = this.isConstructor;
9399
+ data["isFinal"] = this.isFinal;
9400
+ data["isHideBySig"] = this.isHideBySig;
9401
+ data["isSpecialName"] = this.isSpecialName;
9402
+ data["isStatic"] = this.isStatic;
9403
+ data["isVirtual"] = this.isVirtual;
9404
+ data["isAssembly"] = this.isAssembly;
9405
+ data["isFamily"] = this.isFamily;
9406
+ data["isFamilyAndAssembly"] = this.isFamilyAndAssembly;
9407
+ data["isFamilyOrAssembly"] = this.isFamilyOrAssembly;
9408
+ data["isPrivate"] = this.isPrivate;
9409
+ data["isPublic"] = this.isPublic;
9410
+ data["isConstructedGenericMethod"] = this.isConstructedGenericMethod;
9411
+ data["isGenericMethod"] = this.isGenericMethod;
9412
+ data["isGenericMethodDefinition"] = this.isGenericMethodDefinition;
9413
+ data["containsGenericParameters"] = this.containsGenericParameters;
9414
+ data["methodHandle"] = this.methodHandle ? this.methodHandle.toJSON() : undefined;
9415
+ data["isSecurityCritical"] = this.isSecurityCritical;
9416
+ data["isSecuritySafeCritical"] = this.isSecuritySafeCritical;
9417
+ data["isSecurityTransparent"] = this.isSecurityTransparent;
9418
+ data["memberType"] = this.memberType;
9419
+ data["returnParameter"] = this.returnParameter ? this.returnParameter.toJSON() : undefined;
9420
+ data["returnType"] = this.returnType ? this.returnType.toJSON() : undefined;
9421
+ data["returnTypeCustomAttributes"] = this.returnTypeCustomAttributes ? this.returnTypeCustomAttributes.toJSON() : undefined;
9422
+ return data;
9423
+ }
9424
+ }
8519
9425
  /** Represents a significant event or milestone in the company’s lifecycle. */
8520
9426
  export class Milestone {
8521
9427
  constructor(data) {
@@ -8629,6 +9535,82 @@ export class ModifyIndividualInvestor {
8629
9535
  return data;
8630
9536
  }
8631
9537
  }
9538
+ export class Module {
9539
+ constructor(data) {
9540
+ if (data) {
9541
+ for (var property in data) {
9542
+ if (data.hasOwnProperty(property))
9543
+ this[property] = data[property];
9544
+ }
9545
+ }
9546
+ }
9547
+ init(_data) {
9548
+ if (_data) {
9549
+ this.assembly = _data["assembly"] ? Assembly.fromJS(_data["assembly"]) : undefined;
9550
+ this.fullyQualifiedName = _data["fullyQualifiedName"];
9551
+ this.name = _data["name"];
9552
+ this.mdStreamVersion = _data["mdStreamVersion"];
9553
+ this.moduleVersionId = _data["moduleVersionId"];
9554
+ this.scopeName = _data["scopeName"];
9555
+ this.moduleHandle = _data["moduleHandle"] ? ModuleHandle.fromJS(_data["moduleHandle"]) : undefined;
9556
+ if (Array.isArray(_data["customAttributes"])) {
9557
+ this.customAttributes = [];
9558
+ for (let item of _data["customAttributes"])
9559
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
9560
+ }
9561
+ this.metadataToken = _data["metadataToken"];
9562
+ }
9563
+ }
9564
+ static fromJS(data) {
9565
+ data = typeof data === 'object' ? data : {};
9566
+ let result = new Module();
9567
+ result.init(data);
9568
+ return result;
9569
+ }
9570
+ toJSON(data) {
9571
+ data = typeof data === 'object' ? data : {};
9572
+ data["assembly"] = this.assembly ? this.assembly.toJSON() : undefined;
9573
+ data["fullyQualifiedName"] = this.fullyQualifiedName;
9574
+ data["name"] = this.name;
9575
+ data["mdStreamVersion"] = this.mdStreamVersion;
9576
+ data["moduleVersionId"] = this.moduleVersionId;
9577
+ data["scopeName"] = this.scopeName;
9578
+ data["moduleHandle"] = this.moduleHandle ? this.moduleHandle.toJSON() : undefined;
9579
+ if (Array.isArray(this.customAttributes)) {
9580
+ data["customAttributes"] = [];
9581
+ for (let item of this.customAttributes)
9582
+ data["customAttributes"].push(item.toJSON());
9583
+ }
9584
+ data["metadataToken"] = this.metadataToken;
9585
+ return data;
9586
+ }
9587
+ }
9588
+ export class ModuleHandle {
9589
+ constructor(data) {
9590
+ if (data) {
9591
+ for (var property in data) {
9592
+ if (data.hasOwnProperty(property))
9593
+ this[property] = data[property];
9594
+ }
9595
+ }
9596
+ }
9597
+ init(_data) {
9598
+ if (_data) {
9599
+ this.mdStreamVersion = _data["mdStreamVersion"];
9600
+ }
9601
+ }
9602
+ static fromJS(data) {
9603
+ data = typeof data === 'object' ? data : {};
9604
+ let result = new ModuleHandle();
9605
+ result.init(data);
9606
+ return result;
9607
+ }
9608
+ toJSON(data) {
9609
+ data = typeof data === 'object' ? data : {};
9610
+ data["mdStreamVersion"] = this.mdStreamVersion;
9611
+ return data;
9612
+ }
9613
+ }
8632
9614
  /** Represents a transition of an SPV to a specific stage in its lifecycle. */
8633
9615
  export class MonarkStageTransition {
8634
9616
  constructor(data) {
@@ -9418,6 +10400,68 @@ export class Pagination {
9418
10400
  return data;
9419
10401
  }
9420
10402
  }
10403
+ export class ParameterInfo {
10404
+ constructor(data) {
10405
+ if (data) {
10406
+ for (var property in data) {
10407
+ if (data.hasOwnProperty(property))
10408
+ this[property] = data[property];
10409
+ }
10410
+ }
10411
+ }
10412
+ init(_data) {
10413
+ if (_data) {
10414
+ this.attributes = _data["attributes"];
10415
+ this.member = _data["member"] ? MemberInfo.fromJS(_data["member"]) : undefined;
10416
+ this.name = _data["name"];
10417
+ this.parameterType = _data["parameterType"] ? Type.fromJS(_data["parameterType"]) : undefined;
10418
+ this.position = _data["position"];
10419
+ this.isIn = _data["isIn"];
10420
+ this.isLcid = _data["isLcid"];
10421
+ this.isOptional = _data["isOptional"];
10422
+ this.isOut = _data["isOut"];
10423
+ this.isRetval = _data["isRetval"];
10424
+ this.defaultValue = _data["defaultValue"];
10425
+ this.rawDefaultValue = _data["rawDefaultValue"];
10426
+ this.hasDefaultValue = _data["hasDefaultValue"];
10427
+ if (Array.isArray(_data["customAttributes"])) {
10428
+ this.customAttributes = [];
10429
+ for (let item of _data["customAttributes"])
10430
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
10431
+ }
10432
+ this.metadataToken = _data["metadataToken"];
10433
+ }
10434
+ }
10435
+ static fromJS(data) {
10436
+ data = typeof data === 'object' ? data : {};
10437
+ let result = new ParameterInfo();
10438
+ result.init(data);
10439
+ return result;
10440
+ }
10441
+ toJSON(data) {
10442
+ data = typeof data === 'object' ? data : {};
10443
+ data["attributes"] = this.attributes;
10444
+ data["member"] = this.member ? this.member.toJSON() : undefined;
10445
+ data["name"] = this.name;
10446
+ data["parameterType"] = this.parameterType ? this.parameterType.toJSON() : undefined;
10447
+ data["position"] = this.position;
10448
+ data["isIn"] = this.isIn;
10449
+ data["isLcid"] = this.isLcid;
10450
+ data["isOptional"] = this.isOptional;
10451
+ data["isOut"] = this.isOut;
10452
+ data["isRetval"] = this.isRetval;
10453
+ data["defaultValue"] = this.defaultValue;
10454
+ data["rawDefaultValue"] = this.rawDefaultValue;
10455
+ data["hasDefaultValue"] = this.hasDefaultValue;
10456
+ if (Array.isArray(this.customAttributes)) {
10457
+ data["customAttributes"] = [];
10458
+ for (let item of this.customAttributes)
10459
+ data["customAttributes"].push(item.toJSON());
10460
+ }
10461
+ data["metadataToken"] = this.metadataToken;
10462
+ return data;
10463
+ }
10464
+ }
9421
10465
  /** Manager represents the entity responsible for making investment decisions on behalf of the SPV. */
9422
10466
  export class Partner {
9423
10467
  constructor(data) {
@@ -10129,12 +11173,13 @@ export class PreIPOCompanyInvestment {
10129
11173
  this.shareType = _data["shareType"];
10130
11174
  this.shareClass = _data["shareClass"];
10131
11175
  this.numberOfShares = _data["numberOfShares"];
10132
- this.totalCapitalRaise = _data["totalCapitalRaise"];
10133
- this.investmentSize = _data["investmentSize"];
11176
+ this.amountPaidToAcquire = _data["amountPaidToAcquire"];
11177
+ this.amountToTarget = _data["amountToTarget"];
10134
11178
  this.pricePerShare = _data["pricePerShare"];
10135
11179
  this.transactionType = _data["transactionType"];
10136
11180
  this.layeredSPV = _data["layeredSPV"] ? LayeredSPV.fromJS(_data["layeredSPV"]) : undefined;
10137
11181
  this.companyName = _data["companyName"];
11182
+ this.brokerFee = _data["brokerFee"];
10138
11183
  }
10139
11184
  }
10140
11185
  static fromJS(data) {
@@ -10152,12 +11197,13 @@ export class PreIPOCompanyInvestment {
10152
11197
  data["shareType"] = this.shareType;
10153
11198
  data["shareClass"] = this.shareClass;
10154
11199
  data["numberOfShares"] = this.numberOfShares;
10155
- data["totalCapitalRaise"] = this.totalCapitalRaise;
10156
- data["investmentSize"] = this.investmentSize;
11200
+ data["amountPaidToAcquire"] = this.amountPaidToAcquire;
11201
+ data["amountToTarget"] = this.amountToTarget;
10157
11202
  data["pricePerShare"] = this.pricePerShare;
10158
11203
  data["transactionType"] = this.transactionType;
10159
11204
  data["layeredSPV"] = this.layeredSPV ? this.layeredSPV.toJSON() : undefined;
10160
11205
  data["companyName"] = this.companyName;
11206
+ data["brokerFee"] = this.brokerFee;
10161
11207
  return data;
10162
11208
  }
10163
11209
  }
@@ -10433,7 +11479,6 @@ export class PreIPOCompanySPV {
10433
11479
  for (let item of _data["notableInvestors"])
10434
11480
  this.notableInvestors.push(item);
10435
11481
  }
10436
- this.masterLLCName = _data["masterLLCName"];
10437
11482
  this.managementFee = _data["managementFee"];
10438
11483
  this.managementFeeYearsPayable = _data["managementFeeYearsPayable"];
10439
11484
  this.fundingDeadline = _data["fundingDeadline"] ? new Date(_data["fundingDeadline"].toString()) : undefined;
@@ -10498,7 +11543,6 @@ export class PreIPOCompanySPV {
10498
11543
  for (let item of this.notableInvestors)
10499
11544
  data["notableInvestors"].push(item);
10500
11545
  }
10501
- data["masterLLCName"] = this.masterLLCName;
10502
11546
  data["managementFee"] = this.managementFee;
10503
11547
  data["managementFeeYearsPayable"] = this.managementFeeYearsPayable;
10504
11548
  data["fundingDeadline"] = this.fundingDeadline ? formatDate(this.fundingDeadline) : undefined;
@@ -10694,6 +11738,68 @@ export class ProblemDetails {
10694
11738
  return data;
10695
11739
  }
10696
11740
  }
11741
+ export class PropertyInfo {
11742
+ constructor(data) {
11743
+ if (data) {
11744
+ for (var property in data) {
11745
+ if (data.hasOwnProperty(property))
11746
+ this[property] = data[property];
11747
+ }
11748
+ }
11749
+ }
11750
+ init(_data) {
11751
+ if (_data) {
11752
+ this.name = _data["name"];
11753
+ this.declaringType = _data["declaringType"] ? Type.fromJS(_data["declaringType"]) : undefined;
11754
+ this.reflectedType = _data["reflectedType"] ? Type.fromJS(_data["reflectedType"]) : undefined;
11755
+ this.module = _data["module"] ? Module.fromJS(_data["module"]) : undefined;
11756
+ if (Array.isArray(_data["customAttributes"])) {
11757
+ this.customAttributes = [];
11758
+ for (let item of _data["customAttributes"])
11759
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
11760
+ }
11761
+ this.isCollectible = _data["isCollectible"];
11762
+ this.metadataToken = _data["metadataToken"];
11763
+ this.memberType = _data["memberType"];
11764
+ this.propertyType = _data["propertyType"] ? Type.fromJS(_data["propertyType"]) : undefined;
11765
+ this.attributes = _data["attributes"];
11766
+ this.isSpecialName = _data["isSpecialName"];
11767
+ this.canRead = _data["canRead"];
11768
+ this.canWrite = _data["canWrite"];
11769
+ this.getMethod = _data["getMethod"] ? MethodInfo.fromJS(_data["getMethod"]) : undefined;
11770
+ this.setMethod = _data["setMethod"] ? MethodInfo.fromJS(_data["setMethod"]) : undefined;
11771
+ }
11772
+ }
11773
+ static fromJS(data) {
11774
+ data = typeof data === 'object' ? data : {};
11775
+ let result = new PropertyInfo();
11776
+ result.init(data);
11777
+ return result;
11778
+ }
11779
+ toJSON(data) {
11780
+ data = typeof data === 'object' ? data : {};
11781
+ data["name"] = this.name;
11782
+ data["declaringType"] = this.declaringType ? this.declaringType.toJSON() : undefined;
11783
+ data["reflectedType"] = this.reflectedType ? this.reflectedType.toJSON() : undefined;
11784
+ data["module"] = this.module ? this.module.toJSON() : undefined;
11785
+ if (Array.isArray(this.customAttributes)) {
11786
+ data["customAttributes"] = [];
11787
+ for (let item of this.customAttributes)
11788
+ data["customAttributes"].push(item.toJSON());
11789
+ }
11790
+ data["isCollectible"] = this.isCollectible;
11791
+ data["metadataToken"] = this.metadataToken;
11792
+ data["memberType"] = this.memberType;
11793
+ data["propertyType"] = this.propertyType ? this.propertyType.toJSON() : undefined;
11794
+ data["attributes"] = this.attributes;
11795
+ data["isSpecialName"] = this.isSpecialName;
11796
+ data["canRead"] = this.canRead;
11797
+ data["canWrite"] = this.canWrite;
11798
+ data["getMethod"] = this.getMethod ? this.getMethod.toJSON() : undefined;
11799
+ data["setMethod"] = this.setMethod ? this.setMethod.toJSON() : undefined;
11800
+ return data;
11801
+ }
11802
+ }
10697
11803
  /** Questionnaire repesents the public information we provide for a Questionnaire in the Primary Offering. */
10698
11804
  export class Questionnaire {
10699
11805
  constructor(data) {
@@ -10785,6 +11891,66 @@ export class QuestionnaireAnswer {
10785
11891
  return data;
10786
11892
  }
10787
11893
  }
11894
+ export class QuestionnaireAnswerApiResponse {
11895
+ constructor(data) {
11896
+ if (data) {
11897
+ for (var property in data) {
11898
+ if (data.hasOwnProperty(property))
11899
+ this[property] = data[property];
11900
+ }
11901
+ }
11902
+ }
11903
+ init(_data) {
11904
+ if (_data) {
11905
+ this.statusCode = _data["statusCode"];
11906
+ if (_data["headers"]) {
11907
+ this.headers = {};
11908
+ for (let key in _data["headers"]) {
11909
+ if (_data["headers"].hasOwnProperty(key))
11910
+ this.headers[key] = _data["headers"][key] !== undefined ? _data["headers"][key] : [];
11911
+ }
11912
+ }
11913
+ this.data = _data["data"] ? QuestionnaireAnswer.fromJS(_data["data"]) : undefined;
11914
+ this.errorText = _data["errorText"];
11915
+ if (Array.isArray(_data["cookies"])) {
11916
+ this.cookies = [];
11917
+ for (let item of _data["cookies"])
11918
+ this.cookies.push(Cookie.fromJS(item));
11919
+ }
11920
+ this.responseType = _data["responseType"] ? Type.fromJS(_data["responseType"]) : undefined;
11921
+ this.content = _data["content"];
11922
+ this.rawContent = _data["rawContent"];
11923
+ }
11924
+ }
11925
+ static fromJS(data) {
11926
+ data = typeof data === 'object' ? data : {};
11927
+ let result = new QuestionnaireAnswerApiResponse();
11928
+ result.init(data);
11929
+ return result;
11930
+ }
11931
+ toJSON(data) {
11932
+ data = typeof data === 'object' ? data : {};
11933
+ data["statusCode"] = this.statusCode;
11934
+ if (this.headers) {
11935
+ data["headers"] = {};
11936
+ for (let key in this.headers) {
11937
+ if (this.headers.hasOwnProperty(key))
11938
+ data["headers"][key] = this.headers[key];
11939
+ }
11940
+ }
11941
+ data["data"] = this.data ? this.data.toJSON() : undefined;
11942
+ data["errorText"] = this.errorText;
11943
+ if (Array.isArray(this.cookies)) {
11944
+ data["cookies"] = [];
11945
+ for (let item of this.cookies)
11946
+ data["cookies"].push(item.toJSON());
11947
+ }
11948
+ data["responseType"] = this.responseType ? this.responseType.toJSON() : undefined;
11949
+ data["content"] = this.content;
11950
+ data["rawContent"] = this.rawContent;
11951
+ return data;
11952
+ }
11953
+ }
10788
11954
  export class QuestionnaireApiResponse {
10789
11955
  constructor(data) {
10790
11956
  if (data) {
@@ -11203,6 +12369,84 @@ export class RegisteredFundSubscriptionApiResponse {
11203
12369
  return data;
11204
12370
  }
11205
12371
  }
12372
+ export class RuntimeFieldHandle {
12373
+ constructor(data) {
12374
+ if (data) {
12375
+ for (var property in data) {
12376
+ if (data.hasOwnProperty(property))
12377
+ this[property] = data[property];
12378
+ }
12379
+ }
12380
+ }
12381
+ init(_data) {
12382
+ if (_data) {
12383
+ this.value = _data["value"] ? IntPtr.fromJS(_data["value"]) : undefined;
12384
+ }
12385
+ }
12386
+ static fromJS(data) {
12387
+ data = typeof data === 'object' ? data : {};
12388
+ let result = new RuntimeFieldHandle();
12389
+ result.init(data);
12390
+ return result;
12391
+ }
12392
+ toJSON(data) {
12393
+ data = typeof data === 'object' ? data : {};
12394
+ data["value"] = this.value ? this.value.toJSON() : undefined;
12395
+ return data;
12396
+ }
12397
+ }
12398
+ export class RuntimeMethodHandle {
12399
+ constructor(data) {
12400
+ if (data) {
12401
+ for (var property in data) {
12402
+ if (data.hasOwnProperty(property))
12403
+ this[property] = data[property];
12404
+ }
12405
+ }
12406
+ }
12407
+ init(_data) {
12408
+ if (_data) {
12409
+ this.value = _data["value"] ? IntPtr.fromJS(_data["value"]) : undefined;
12410
+ }
12411
+ }
12412
+ static fromJS(data) {
12413
+ data = typeof data === 'object' ? data : {};
12414
+ let result = new RuntimeMethodHandle();
12415
+ result.init(data);
12416
+ return result;
12417
+ }
12418
+ toJSON(data) {
12419
+ data = typeof data === 'object' ? data : {};
12420
+ data["value"] = this.value ? this.value.toJSON() : undefined;
12421
+ return data;
12422
+ }
12423
+ }
12424
+ export class RuntimeTypeHandle {
12425
+ constructor(data) {
12426
+ if (data) {
12427
+ for (var property in data) {
12428
+ if (data.hasOwnProperty(property))
12429
+ this[property] = data[property];
12430
+ }
12431
+ }
12432
+ }
12433
+ init(_data) {
12434
+ if (_data) {
12435
+ this.value = _data["value"] ? IntPtr.fromJS(_data["value"]) : undefined;
12436
+ }
12437
+ }
12438
+ static fromJS(data) {
12439
+ data = typeof data === 'object' ? data : {};
12440
+ let result = new RuntimeTypeHandle();
12441
+ result.init(data);
12442
+ return result;
12443
+ }
12444
+ toJSON(data) {
12445
+ data = typeof data === 'object' ? data : {};
12446
+ data["value"] = this.value ? this.value.toJSON() : undefined;
12447
+ return data;
12448
+ }
12449
+ }
11206
12450
  /** Represents a share class of a registered fund. */
11207
12451
  export class ShareClass {
11208
12452
  constructor(data) {
@@ -11356,6 +12600,496 @@ export class SignatureRequest {
11356
12600
  return data;
11357
12601
  }
11358
12602
  }
12603
+ export class StructLayoutAttribute {
12604
+ constructor(data) {
12605
+ if (data) {
12606
+ for (var property in data) {
12607
+ if (data.hasOwnProperty(property))
12608
+ this[property] = data[property];
12609
+ }
12610
+ }
12611
+ }
12612
+ init(_data) {
12613
+ if (_data) {
12614
+ this.typeId = _data["typeId"];
12615
+ this.value = _data["value"];
12616
+ }
12617
+ }
12618
+ static fromJS(data) {
12619
+ data = typeof data === 'object' ? data : {};
12620
+ let result = new StructLayoutAttribute();
12621
+ result.init(data);
12622
+ return result;
12623
+ }
12624
+ toJSON(data) {
12625
+ data = typeof data === 'object' ? data : {};
12626
+ data["typeId"] = this.typeId;
12627
+ data["value"] = this.value;
12628
+ return data;
12629
+ }
12630
+ }
12631
+ export class Type {
12632
+ constructor(data) {
12633
+ if (data) {
12634
+ for (var property in data) {
12635
+ if (data.hasOwnProperty(property))
12636
+ this[property] = data[property];
12637
+ }
12638
+ }
12639
+ }
12640
+ init(_data) {
12641
+ if (_data) {
12642
+ this.name = _data["name"];
12643
+ if (Array.isArray(_data["customAttributes"])) {
12644
+ this.customAttributes = [];
12645
+ for (let item of _data["customAttributes"])
12646
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
12647
+ }
12648
+ this.isCollectible = _data["isCollectible"];
12649
+ this.metadataToken = _data["metadataToken"];
12650
+ this.isInterface = _data["isInterface"];
12651
+ this.memberType = _data["memberType"];
12652
+ this.namespace = _data["namespace"];
12653
+ this.assemblyQualifiedName = _data["assemblyQualifiedName"];
12654
+ this.fullName = _data["fullName"];
12655
+ this.assembly = _data["assembly"] ? Assembly.fromJS(_data["assembly"]) : undefined;
12656
+ this.module = _data["module"] ? Module.fromJS(_data["module"]) : undefined;
12657
+ this.isNested = _data["isNested"];
12658
+ this.declaringType = _data["declaringType"] ? Type.fromJS(_data["declaringType"]) : undefined;
12659
+ this.declaringMethod = _data["declaringMethod"] ? MethodBase.fromJS(_data["declaringMethod"]) : undefined;
12660
+ this.reflectedType = _data["reflectedType"] ? Type.fromJS(_data["reflectedType"]) : undefined;
12661
+ this.underlyingSystemType = _data["underlyingSystemType"] ? Type.fromJS(_data["underlyingSystemType"]) : undefined;
12662
+ this.isTypeDefinition = _data["isTypeDefinition"];
12663
+ this.isArray = _data["isArray"];
12664
+ this.isByRef = _data["isByRef"];
12665
+ this.isPointer = _data["isPointer"];
12666
+ this.isConstructedGenericType = _data["isConstructedGenericType"];
12667
+ this.isGenericParameter = _data["isGenericParameter"];
12668
+ this.isGenericTypeParameter = _data["isGenericTypeParameter"];
12669
+ this.isGenericMethodParameter = _data["isGenericMethodParameter"];
12670
+ this.isGenericType = _data["isGenericType"];
12671
+ this.isGenericTypeDefinition = _data["isGenericTypeDefinition"];
12672
+ this.isSZArray = _data["isSZArray"];
12673
+ this.isVariableBoundArray = _data["isVariableBoundArray"];
12674
+ this.isByRefLike = _data["isByRefLike"];
12675
+ this.isFunctionPointer = _data["isFunctionPointer"];
12676
+ this.isUnmanagedFunctionPointer = _data["isUnmanagedFunctionPointer"];
12677
+ this.hasElementType = _data["hasElementType"];
12678
+ if (Array.isArray(_data["genericTypeArguments"])) {
12679
+ this.genericTypeArguments = [];
12680
+ for (let item of _data["genericTypeArguments"])
12681
+ this.genericTypeArguments.push(Type.fromJS(item));
12682
+ }
12683
+ this.genericParameterPosition = _data["genericParameterPosition"];
12684
+ this.genericParameterAttributes = _data["genericParameterAttributes"];
12685
+ this.attributes = _data["attributes"];
12686
+ this.isAbstract = _data["isAbstract"];
12687
+ this.isImport = _data["isImport"];
12688
+ this.isSealed = _data["isSealed"];
12689
+ this.isSpecialName = _data["isSpecialName"];
12690
+ this.isClass = _data["isClass"];
12691
+ this.isNestedAssembly = _data["isNestedAssembly"];
12692
+ this.isNestedFamANDAssem = _data["isNestedFamANDAssem"];
12693
+ this.isNestedFamily = _data["isNestedFamily"];
12694
+ this.isNestedFamORAssem = _data["isNestedFamORAssem"];
12695
+ this.isNestedPrivate = _data["isNestedPrivate"];
12696
+ this.isNestedPublic = _data["isNestedPublic"];
12697
+ this.isNotPublic = _data["isNotPublic"];
12698
+ this.isPublic = _data["isPublic"];
12699
+ this.isAutoLayout = _data["isAutoLayout"];
12700
+ this.isExplicitLayout = _data["isExplicitLayout"];
12701
+ this.isLayoutSequential = _data["isLayoutSequential"];
12702
+ this.isAnsiClass = _data["isAnsiClass"];
12703
+ this.isAutoClass = _data["isAutoClass"];
12704
+ this.isUnicodeClass = _data["isUnicodeClass"];
12705
+ this.isCOMObject = _data["isCOMObject"];
12706
+ this.isContextful = _data["isContextful"];
12707
+ this.isEnum = _data["isEnum"];
12708
+ this.isMarshalByRef = _data["isMarshalByRef"];
12709
+ this.isPrimitive = _data["isPrimitive"];
12710
+ this.isValueType = _data["isValueType"];
12711
+ this.isSignatureType = _data["isSignatureType"];
12712
+ this.isSecurityCritical = _data["isSecurityCritical"];
12713
+ this.isSecuritySafeCritical = _data["isSecuritySafeCritical"];
12714
+ this.isSecurityTransparent = _data["isSecurityTransparent"];
12715
+ this.structLayoutAttribute = _data["structLayoutAttribute"] ? StructLayoutAttribute.fromJS(_data["structLayoutAttribute"]) : undefined;
12716
+ this.typeInitializer = _data["typeInitializer"] ? ConstructorInfo.fromJS(_data["typeInitializer"]) : undefined;
12717
+ this.typeHandle = _data["typeHandle"] ? RuntimeTypeHandle.fromJS(_data["typeHandle"]) : undefined;
12718
+ this.guid = _data["guid"];
12719
+ this.baseType = _data["baseType"] ? Type.fromJS(_data["baseType"]) : undefined;
12720
+ this.isSerializable = _data["isSerializable"];
12721
+ this.containsGenericParameters = _data["containsGenericParameters"];
12722
+ this.isVisible = _data["isVisible"];
12723
+ }
12724
+ }
12725
+ static fromJS(data) {
12726
+ data = typeof data === 'object' ? data : {};
12727
+ let result = new Type();
12728
+ result.init(data);
12729
+ return result;
12730
+ }
12731
+ toJSON(data) {
12732
+ data = typeof data === 'object' ? data : {};
12733
+ data["name"] = this.name;
12734
+ if (Array.isArray(this.customAttributes)) {
12735
+ data["customAttributes"] = [];
12736
+ for (let item of this.customAttributes)
12737
+ data["customAttributes"].push(item.toJSON());
12738
+ }
12739
+ data["isCollectible"] = this.isCollectible;
12740
+ data["metadataToken"] = this.metadataToken;
12741
+ data["isInterface"] = this.isInterface;
12742
+ data["memberType"] = this.memberType;
12743
+ data["namespace"] = this.namespace;
12744
+ data["assemblyQualifiedName"] = this.assemblyQualifiedName;
12745
+ data["fullName"] = this.fullName;
12746
+ data["assembly"] = this.assembly ? this.assembly.toJSON() : undefined;
12747
+ data["module"] = this.module ? this.module.toJSON() : undefined;
12748
+ data["isNested"] = this.isNested;
12749
+ data["declaringType"] = this.declaringType ? this.declaringType.toJSON() : undefined;
12750
+ data["declaringMethod"] = this.declaringMethod ? this.declaringMethod.toJSON() : undefined;
12751
+ data["reflectedType"] = this.reflectedType ? this.reflectedType.toJSON() : undefined;
12752
+ data["underlyingSystemType"] = this.underlyingSystemType ? this.underlyingSystemType.toJSON() : undefined;
12753
+ data["isTypeDefinition"] = this.isTypeDefinition;
12754
+ data["isArray"] = this.isArray;
12755
+ data["isByRef"] = this.isByRef;
12756
+ data["isPointer"] = this.isPointer;
12757
+ data["isConstructedGenericType"] = this.isConstructedGenericType;
12758
+ data["isGenericParameter"] = this.isGenericParameter;
12759
+ data["isGenericTypeParameter"] = this.isGenericTypeParameter;
12760
+ data["isGenericMethodParameter"] = this.isGenericMethodParameter;
12761
+ data["isGenericType"] = this.isGenericType;
12762
+ data["isGenericTypeDefinition"] = this.isGenericTypeDefinition;
12763
+ data["isSZArray"] = this.isSZArray;
12764
+ data["isVariableBoundArray"] = this.isVariableBoundArray;
12765
+ data["isByRefLike"] = this.isByRefLike;
12766
+ data["isFunctionPointer"] = this.isFunctionPointer;
12767
+ data["isUnmanagedFunctionPointer"] = this.isUnmanagedFunctionPointer;
12768
+ data["hasElementType"] = this.hasElementType;
12769
+ if (Array.isArray(this.genericTypeArguments)) {
12770
+ data["genericTypeArguments"] = [];
12771
+ for (let item of this.genericTypeArguments)
12772
+ data["genericTypeArguments"].push(item.toJSON());
12773
+ }
12774
+ data["genericParameterPosition"] = this.genericParameterPosition;
12775
+ data["genericParameterAttributes"] = this.genericParameterAttributes;
12776
+ data["attributes"] = this.attributes;
12777
+ data["isAbstract"] = this.isAbstract;
12778
+ data["isImport"] = this.isImport;
12779
+ data["isSealed"] = this.isSealed;
12780
+ data["isSpecialName"] = this.isSpecialName;
12781
+ data["isClass"] = this.isClass;
12782
+ data["isNestedAssembly"] = this.isNestedAssembly;
12783
+ data["isNestedFamANDAssem"] = this.isNestedFamANDAssem;
12784
+ data["isNestedFamily"] = this.isNestedFamily;
12785
+ data["isNestedFamORAssem"] = this.isNestedFamORAssem;
12786
+ data["isNestedPrivate"] = this.isNestedPrivate;
12787
+ data["isNestedPublic"] = this.isNestedPublic;
12788
+ data["isNotPublic"] = this.isNotPublic;
12789
+ data["isPublic"] = this.isPublic;
12790
+ data["isAutoLayout"] = this.isAutoLayout;
12791
+ data["isExplicitLayout"] = this.isExplicitLayout;
12792
+ data["isLayoutSequential"] = this.isLayoutSequential;
12793
+ data["isAnsiClass"] = this.isAnsiClass;
12794
+ data["isAutoClass"] = this.isAutoClass;
12795
+ data["isUnicodeClass"] = this.isUnicodeClass;
12796
+ data["isCOMObject"] = this.isCOMObject;
12797
+ data["isContextful"] = this.isContextful;
12798
+ data["isEnum"] = this.isEnum;
12799
+ data["isMarshalByRef"] = this.isMarshalByRef;
12800
+ data["isPrimitive"] = this.isPrimitive;
12801
+ data["isValueType"] = this.isValueType;
12802
+ data["isSignatureType"] = this.isSignatureType;
12803
+ data["isSecurityCritical"] = this.isSecurityCritical;
12804
+ data["isSecuritySafeCritical"] = this.isSecuritySafeCritical;
12805
+ data["isSecurityTransparent"] = this.isSecurityTransparent;
12806
+ data["structLayoutAttribute"] = this.structLayoutAttribute ? this.structLayoutAttribute.toJSON() : undefined;
12807
+ data["typeInitializer"] = this.typeInitializer ? this.typeInitializer.toJSON() : undefined;
12808
+ data["typeHandle"] = this.typeHandle ? this.typeHandle.toJSON() : undefined;
12809
+ data["guid"] = this.guid;
12810
+ data["baseType"] = this.baseType ? this.baseType.toJSON() : undefined;
12811
+ data["isSerializable"] = this.isSerializable;
12812
+ data["containsGenericParameters"] = this.containsGenericParameters;
12813
+ data["isVisible"] = this.isVisible;
12814
+ return data;
12815
+ }
12816
+ }
12817
+ export class TypeInfo {
12818
+ constructor(data) {
12819
+ if (data) {
12820
+ for (var property in data) {
12821
+ if (data.hasOwnProperty(property))
12822
+ this[property] = data[property];
12823
+ }
12824
+ }
12825
+ }
12826
+ init(_data) {
12827
+ if (_data) {
12828
+ this.name = _data["name"];
12829
+ if (Array.isArray(_data["customAttributes"])) {
12830
+ this.customAttributes = [];
12831
+ for (let item of _data["customAttributes"])
12832
+ this.customAttributes.push(CustomAttributeData.fromJS(item));
12833
+ }
12834
+ this.isCollectible = _data["isCollectible"];
12835
+ this.metadataToken = _data["metadataToken"];
12836
+ this.isInterface = _data["isInterface"];
12837
+ this.memberType = _data["memberType"];
12838
+ this.namespace = _data["namespace"];
12839
+ this.assemblyQualifiedName = _data["assemblyQualifiedName"];
12840
+ this.fullName = _data["fullName"];
12841
+ this.assembly = _data["assembly"] ? Assembly.fromJS(_data["assembly"]) : undefined;
12842
+ this.module = _data["module"] ? Module.fromJS(_data["module"]) : undefined;
12843
+ this.isNested = _data["isNested"];
12844
+ this.declaringType = _data["declaringType"] ? Type.fromJS(_data["declaringType"]) : undefined;
12845
+ this.declaringMethod = _data["declaringMethod"] ? MethodBase.fromJS(_data["declaringMethod"]) : undefined;
12846
+ this.reflectedType = _data["reflectedType"] ? Type.fromJS(_data["reflectedType"]) : undefined;
12847
+ this.underlyingSystemType = _data["underlyingSystemType"] ? Type.fromJS(_data["underlyingSystemType"]) : undefined;
12848
+ this.isTypeDefinition = _data["isTypeDefinition"];
12849
+ this.isArray = _data["isArray"];
12850
+ this.isByRef = _data["isByRef"];
12851
+ this.isPointer = _data["isPointer"];
12852
+ this.isConstructedGenericType = _data["isConstructedGenericType"];
12853
+ this.isGenericParameter = _data["isGenericParameter"];
12854
+ this.isGenericTypeParameter = _data["isGenericTypeParameter"];
12855
+ this.isGenericMethodParameter = _data["isGenericMethodParameter"];
12856
+ this.isGenericType = _data["isGenericType"];
12857
+ this.isGenericTypeDefinition = _data["isGenericTypeDefinition"];
12858
+ this.isSZArray = _data["isSZArray"];
12859
+ this.isVariableBoundArray = _data["isVariableBoundArray"];
12860
+ this.isByRefLike = _data["isByRefLike"];
12861
+ this.isFunctionPointer = _data["isFunctionPointer"];
12862
+ this.isUnmanagedFunctionPointer = _data["isUnmanagedFunctionPointer"];
12863
+ this.hasElementType = _data["hasElementType"];
12864
+ if (Array.isArray(_data["genericTypeArguments"])) {
12865
+ this.genericTypeArguments = [];
12866
+ for (let item of _data["genericTypeArguments"])
12867
+ this.genericTypeArguments.push(Type.fromJS(item));
12868
+ }
12869
+ this.genericParameterPosition = _data["genericParameterPosition"];
12870
+ this.genericParameterAttributes = _data["genericParameterAttributes"];
12871
+ this.attributes = _data["attributes"];
12872
+ this.isAbstract = _data["isAbstract"];
12873
+ this.isImport = _data["isImport"];
12874
+ this.isSealed = _data["isSealed"];
12875
+ this.isSpecialName = _data["isSpecialName"];
12876
+ this.isClass = _data["isClass"];
12877
+ this.isNestedAssembly = _data["isNestedAssembly"];
12878
+ this.isNestedFamANDAssem = _data["isNestedFamANDAssem"];
12879
+ this.isNestedFamily = _data["isNestedFamily"];
12880
+ this.isNestedFamORAssem = _data["isNestedFamORAssem"];
12881
+ this.isNestedPrivate = _data["isNestedPrivate"];
12882
+ this.isNestedPublic = _data["isNestedPublic"];
12883
+ this.isNotPublic = _data["isNotPublic"];
12884
+ this.isPublic = _data["isPublic"];
12885
+ this.isAutoLayout = _data["isAutoLayout"];
12886
+ this.isExplicitLayout = _data["isExplicitLayout"];
12887
+ this.isLayoutSequential = _data["isLayoutSequential"];
12888
+ this.isAnsiClass = _data["isAnsiClass"];
12889
+ this.isAutoClass = _data["isAutoClass"];
12890
+ this.isUnicodeClass = _data["isUnicodeClass"];
12891
+ this.isCOMObject = _data["isCOMObject"];
12892
+ this.isContextful = _data["isContextful"];
12893
+ this.isEnum = _data["isEnum"];
12894
+ this.isMarshalByRef = _data["isMarshalByRef"];
12895
+ this.isPrimitive = _data["isPrimitive"];
12896
+ this.isValueType = _data["isValueType"];
12897
+ this.isSignatureType = _data["isSignatureType"];
12898
+ this.isSecurityCritical = _data["isSecurityCritical"];
12899
+ this.isSecuritySafeCritical = _data["isSecuritySafeCritical"];
12900
+ this.isSecurityTransparent = _data["isSecurityTransparent"];
12901
+ this.structLayoutAttribute = _data["structLayoutAttribute"] ? StructLayoutAttribute.fromJS(_data["structLayoutAttribute"]) : undefined;
12902
+ this.typeInitializer = _data["typeInitializer"] ? ConstructorInfo.fromJS(_data["typeInitializer"]) : undefined;
12903
+ this.typeHandle = _data["typeHandle"] ? RuntimeTypeHandle.fromJS(_data["typeHandle"]) : undefined;
12904
+ this.guid = _data["guid"];
12905
+ this.baseType = _data["baseType"] ? Type.fromJS(_data["baseType"]) : undefined;
12906
+ this.isSerializable = _data["isSerializable"];
12907
+ this.containsGenericParameters = _data["containsGenericParameters"];
12908
+ this.isVisible = _data["isVisible"];
12909
+ if (Array.isArray(_data["genericTypeParameters"])) {
12910
+ this.genericTypeParameters = [];
12911
+ for (let item of _data["genericTypeParameters"])
12912
+ this.genericTypeParameters.push(Type.fromJS(item));
12913
+ }
12914
+ if (Array.isArray(_data["declaredConstructors"])) {
12915
+ this.declaredConstructors = [];
12916
+ for (let item of _data["declaredConstructors"])
12917
+ this.declaredConstructors.push(ConstructorInfo.fromJS(item));
12918
+ }
12919
+ if (Array.isArray(_data["declaredEvents"])) {
12920
+ this.declaredEvents = [];
12921
+ for (let item of _data["declaredEvents"])
12922
+ this.declaredEvents.push(EventInfo.fromJS(item));
12923
+ }
12924
+ if (Array.isArray(_data["declaredFields"])) {
12925
+ this.declaredFields = [];
12926
+ for (let item of _data["declaredFields"])
12927
+ this.declaredFields.push(FieldInfo.fromJS(item));
12928
+ }
12929
+ if (Array.isArray(_data["declaredMembers"])) {
12930
+ this.declaredMembers = [];
12931
+ for (let item of _data["declaredMembers"])
12932
+ this.declaredMembers.push(MemberInfo.fromJS(item));
12933
+ }
12934
+ if (Array.isArray(_data["declaredMethods"])) {
12935
+ this.declaredMethods = [];
12936
+ for (let item of _data["declaredMethods"])
12937
+ this.declaredMethods.push(MethodInfo.fromJS(item));
12938
+ }
12939
+ if (Array.isArray(_data["declaredNestedTypes"])) {
12940
+ this.declaredNestedTypes = [];
12941
+ for (let item of _data["declaredNestedTypes"])
12942
+ this.declaredNestedTypes.push(TypeInfo.fromJS(item));
12943
+ }
12944
+ if (Array.isArray(_data["declaredProperties"])) {
12945
+ this.declaredProperties = [];
12946
+ for (let item of _data["declaredProperties"])
12947
+ this.declaredProperties.push(PropertyInfo.fromJS(item));
12948
+ }
12949
+ if (Array.isArray(_data["implementedInterfaces"])) {
12950
+ this.implementedInterfaces = [];
12951
+ for (let item of _data["implementedInterfaces"])
12952
+ this.implementedInterfaces.push(Type.fromJS(item));
12953
+ }
12954
+ }
12955
+ }
12956
+ static fromJS(data) {
12957
+ data = typeof data === 'object' ? data : {};
12958
+ let result = new TypeInfo();
12959
+ result.init(data);
12960
+ return result;
12961
+ }
12962
+ toJSON(data) {
12963
+ data = typeof data === 'object' ? data : {};
12964
+ data["name"] = this.name;
12965
+ if (Array.isArray(this.customAttributes)) {
12966
+ data["customAttributes"] = [];
12967
+ for (let item of this.customAttributes)
12968
+ data["customAttributes"].push(item.toJSON());
12969
+ }
12970
+ data["isCollectible"] = this.isCollectible;
12971
+ data["metadataToken"] = this.metadataToken;
12972
+ data["isInterface"] = this.isInterface;
12973
+ data["memberType"] = this.memberType;
12974
+ data["namespace"] = this.namespace;
12975
+ data["assemblyQualifiedName"] = this.assemblyQualifiedName;
12976
+ data["fullName"] = this.fullName;
12977
+ data["assembly"] = this.assembly ? this.assembly.toJSON() : undefined;
12978
+ data["module"] = this.module ? this.module.toJSON() : undefined;
12979
+ data["isNested"] = this.isNested;
12980
+ data["declaringType"] = this.declaringType ? this.declaringType.toJSON() : undefined;
12981
+ data["declaringMethod"] = this.declaringMethod ? this.declaringMethod.toJSON() : undefined;
12982
+ data["reflectedType"] = this.reflectedType ? this.reflectedType.toJSON() : undefined;
12983
+ data["underlyingSystemType"] = this.underlyingSystemType ? this.underlyingSystemType.toJSON() : undefined;
12984
+ data["isTypeDefinition"] = this.isTypeDefinition;
12985
+ data["isArray"] = this.isArray;
12986
+ data["isByRef"] = this.isByRef;
12987
+ data["isPointer"] = this.isPointer;
12988
+ data["isConstructedGenericType"] = this.isConstructedGenericType;
12989
+ data["isGenericParameter"] = this.isGenericParameter;
12990
+ data["isGenericTypeParameter"] = this.isGenericTypeParameter;
12991
+ data["isGenericMethodParameter"] = this.isGenericMethodParameter;
12992
+ data["isGenericType"] = this.isGenericType;
12993
+ data["isGenericTypeDefinition"] = this.isGenericTypeDefinition;
12994
+ data["isSZArray"] = this.isSZArray;
12995
+ data["isVariableBoundArray"] = this.isVariableBoundArray;
12996
+ data["isByRefLike"] = this.isByRefLike;
12997
+ data["isFunctionPointer"] = this.isFunctionPointer;
12998
+ data["isUnmanagedFunctionPointer"] = this.isUnmanagedFunctionPointer;
12999
+ data["hasElementType"] = this.hasElementType;
13000
+ if (Array.isArray(this.genericTypeArguments)) {
13001
+ data["genericTypeArguments"] = [];
13002
+ for (let item of this.genericTypeArguments)
13003
+ data["genericTypeArguments"].push(item.toJSON());
13004
+ }
13005
+ data["genericParameterPosition"] = this.genericParameterPosition;
13006
+ data["genericParameterAttributes"] = this.genericParameterAttributes;
13007
+ data["attributes"] = this.attributes;
13008
+ data["isAbstract"] = this.isAbstract;
13009
+ data["isImport"] = this.isImport;
13010
+ data["isSealed"] = this.isSealed;
13011
+ data["isSpecialName"] = this.isSpecialName;
13012
+ data["isClass"] = this.isClass;
13013
+ data["isNestedAssembly"] = this.isNestedAssembly;
13014
+ data["isNestedFamANDAssem"] = this.isNestedFamANDAssem;
13015
+ data["isNestedFamily"] = this.isNestedFamily;
13016
+ data["isNestedFamORAssem"] = this.isNestedFamORAssem;
13017
+ data["isNestedPrivate"] = this.isNestedPrivate;
13018
+ data["isNestedPublic"] = this.isNestedPublic;
13019
+ data["isNotPublic"] = this.isNotPublic;
13020
+ data["isPublic"] = this.isPublic;
13021
+ data["isAutoLayout"] = this.isAutoLayout;
13022
+ data["isExplicitLayout"] = this.isExplicitLayout;
13023
+ data["isLayoutSequential"] = this.isLayoutSequential;
13024
+ data["isAnsiClass"] = this.isAnsiClass;
13025
+ data["isAutoClass"] = this.isAutoClass;
13026
+ data["isUnicodeClass"] = this.isUnicodeClass;
13027
+ data["isCOMObject"] = this.isCOMObject;
13028
+ data["isContextful"] = this.isContextful;
13029
+ data["isEnum"] = this.isEnum;
13030
+ data["isMarshalByRef"] = this.isMarshalByRef;
13031
+ data["isPrimitive"] = this.isPrimitive;
13032
+ data["isValueType"] = this.isValueType;
13033
+ data["isSignatureType"] = this.isSignatureType;
13034
+ data["isSecurityCritical"] = this.isSecurityCritical;
13035
+ data["isSecuritySafeCritical"] = this.isSecuritySafeCritical;
13036
+ data["isSecurityTransparent"] = this.isSecurityTransparent;
13037
+ data["structLayoutAttribute"] = this.structLayoutAttribute ? this.structLayoutAttribute.toJSON() : undefined;
13038
+ data["typeInitializer"] = this.typeInitializer ? this.typeInitializer.toJSON() : undefined;
13039
+ data["typeHandle"] = this.typeHandle ? this.typeHandle.toJSON() : undefined;
13040
+ data["guid"] = this.guid;
13041
+ data["baseType"] = this.baseType ? this.baseType.toJSON() : undefined;
13042
+ data["isSerializable"] = this.isSerializable;
13043
+ data["containsGenericParameters"] = this.containsGenericParameters;
13044
+ data["isVisible"] = this.isVisible;
13045
+ if (Array.isArray(this.genericTypeParameters)) {
13046
+ data["genericTypeParameters"] = [];
13047
+ for (let item of this.genericTypeParameters)
13048
+ data["genericTypeParameters"].push(item.toJSON());
13049
+ }
13050
+ if (Array.isArray(this.declaredConstructors)) {
13051
+ data["declaredConstructors"] = [];
13052
+ for (let item of this.declaredConstructors)
13053
+ data["declaredConstructors"].push(item.toJSON());
13054
+ }
13055
+ if (Array.isArray(this.declaredEvents)) {
13056
+ data["declaredEvents"] = [];
13057
+ for (let item of this.declaredEvents)
13058
+ data["declaredEvents"].push(item.toJSON());
13059
+ }
13060
+ if (Array.isArray(this.declaredFields)) {
13061
+ data["declaredFields"] = [];
13062
+ for (let item of this.declaredFields)
13063
+ data["declaredFields"].push(item.toJSON());
13064
+ }
13065
+ if (Array.isArray(this.declaredMembers)) {
13066
+ data["declaredMembers"] = [];
13067
+ for (let item of this.declaredMembers)
13068
+ data["declaredMembers"].push(item.toJSON());
13069
+ }
13070
+ if (Array.isArray(this.declaredMethods)) {
13071
+ data["declaredMethods"] = [];
13072
+ for (let item of this.declaredMethods)
13073
+ data["declaredMethods"].push(item.toJSON());
13074
+ }
13075
+ if (Array.isArray(this.declaredNestedTypes)) {
13076
+ data["declaredNestedTypes"] = [];
13077
+ for (let item of this.declaredNestedTypes)
13078
+ data["declaredNestedTypes"].push(item.toJSON());
13079
+ }
13080
+ if (Array.isArray(this.declaredProperties)) {
13081
+ data["declaredProperties"] = [];
13082
+ for (let item of this.declaredProperties)
13083
+ data["declaredProperties"].push(item.toJSON());
13084
+ }
13085
+ if (Array.isArray(this.implementedInterfaces)) {
13086
+ data["implementedInterfaces"] = [];
13087
+ for (let item of this.implementedInterfaces)
13088
+ data["implementedInterfaces"].push(item.toJSON());
13089
+ }
13090
+ return data;
13091
+ }
13092
+ }
11359
13093
  export class UpdateEntityInvestor {
11360
13094
  constructor(data) {
11361
13095
  if (data) {
@@ -12293,6 +14027,11 @@ export var SortOrder16;
12293
14027
  SortOrder16["Ascending"] = "Ascending";
12294
14028
  SortOrder16["Descending"] = "Descending";
12295
14029
  })(SortOrder16 || (SortOrder16 = {}));
14030
+ export var SortOrder17;
14031
+ (function (SortOrder17) {
14032
+ SortOrder17["Ascending"] = "Ascending";
14033
+ SortOrder17["Descending"] = "Descending";
14034
+ })(SortOrder17 || (SortOrder17 = {}));
12296
14035
  export var ResponsibleParty;
12297
14036
  (function (ResponsibleParty) {
12298
14037
  ResponsibleParty["Partner"] = "Partner";
@@ -12300,16 +14039,16 @@ export var ResponsibleParty;
12300
14039
  ResponsibleParty["Investor"] = "Investor";
12301
14040
  ResponsibleParty["Advisor"] = "Advisor";
12302
14041
  })(ResponsibleParty || (ResponsibleParty = {}));
12303
- export var SortOrder17;
12304
- (function (SortOrder17) {
12305
- SortOrder17["Ascending"] = "Ascending";
12306
- SortOrder17["Descending"] = "Descending";
12307
- })(SortOrder17 || (SortOrder17 = {}));
12308
14042
  export var SortOrder18;
12309
14043
  (function (SortOrder18) {
12310
14044
  SortOrder18["Ascending"] = "Ascending";
12311
14045
  SortOrder18["Descending"] = "Descending";
12312
14046
  })(SortOrder18 || (SortOrder18 = {}));
14047
+ export var SortOrder19;
14048
+ (function (SortOrder19) {
14049
+ SortOrder19["Ascending"] = "Ascending";
14050
+ SortOrder19["Descending"] = "Descending";
14051
+ })(SortOrder19 || (SortOrder19 = {}));
12313
14052
  export var EventType;
12314
14053
  (function (EventType) {
12315
14054
  EventType["PreIPOCompany"] = "PreIPOCompany";
@@ -12327,6 +14066,12 @@ export var DeliveryStatus;
12327
14066
  DeliveryStatus["Delivered"] = "Delivered";
12328
14067
  DeliveryStatus["Failed"] = "Failed";
12329
14068
  })(DeliveryStatus || (DeliveryStatus = {}));
14069
+ export var AssemblySecurityRuleSet;
14070
+ (function (AssemblySecurityRuleSet) {
14071
+ AssemblySecurityRuleSet["None"] = "None";
14072
+ AssemblySecurityRuleSet["Level1"] = "Level1";
14073
+ AssemblySecurityRuleSet["Level2"] = "Level2";
14074
+ })(AssemblySecurityRuleSet || (AssemblySecurityRuleSet = {}));
12330
14075
  export var BulkPreIPOCompanyType;
12331
14076
  (function (BulkPreIPOCompanyType) {
12332
14077
  BulkPreIPOCompanyType["SOLE_PROPRIETOR"] = "SOLE_PROPRIETOR";
@@ -12387,6 +14132,68 @@ export var BulkPreIPOCompanySPVMonarkStage;
12387
14132
  BulkPreIPOCompanySPVMonarkStage["LIQUIDATION"] = "LIQUIDATION";
12388
14133
  BulkPreIPOCompanySPVMonarkStage["DISSOLVED"] = "DISSOLVED";
12389
14134
  })(BulkPreIPOCompanySPVMonarkStage || (BulkPreIPOCompanySPVMonarkStage = {}));
14135
+ export var ConstructorInfoAttributes;
14136
+ (function (ConstructorInfoAttributes) {
14137
+ ConstructorInfoAttributes["PrivateScope"] = "PrivateScope";
14138
+ ConstructorInfoAttributes["Private"] = "Private";
14139
+ ConstructorInfoAttributes["FamANDAssem"] = "FamANDAssem";
14140
+ ConstructorInfoAttributes["Assembly"] = "Assembly";
14141
+ ConstructorInfoAttributes["Family"] = "Family";
14142
+ ConstructorInfoAttributes["FamORAssem"] = "FamORAssem";
14143
+ ConstructorInfoAttributes["Public"] = "Public";
14144
+ ConstructorInfoAttributes["MemberAccessMask"] = "MemberAccessMask";
14145
+ ConstructorInfoAttributes["UnmanagedExport"] = "UnmanagedExport";
14146
+ ConstructorInfoAttributes["Static"] = "Static";
14147
+ ConstructorInfoAttributes["Final"] = "Final";
14148
+ ConstructorInfoAttributes["Virtual"] = "Virtual";
14149
+ ConstructorInfoAttributes["HideBySig"] = "HideBySig";
14150
+ ConstructorInfoAttributes["NewSlot"] = "NewSlot";
14151
+ ConstructorInfoAttributes["CheckAccessOnOverride"] = "CheckAccessOnOverride";
14152
+ ConstructorInfoAttributes["Abstract"] = "Abstract";
14153
+ ConstructorInfoAttributes["SpecialName"] = "SpecialName";
14154
+ ConstructorInfoAttributes["RTSpecialName"] = "RTSpecialName";
14155
+ ConstructorInfoAttributes["PinvokeImpl"] = "PinvokeImpl";
14156
+ ConstructorInfoAttributes["HasSecurity"] = "HasSecurity";
14157
+ ConstructorInfoAttributes["RequireSecObject"] = "RequireSecObject";
14158
+ ConstructorInfoAttributes["ReservedMask"] = "ReservedMask";
14159
+ })(ConstructorInfoAttributes || (ConstructorInfoAttributes = {}));
14160
+ export var ConstructorInfoMethodImplementationFlags;
14161
+ (function (ConstructorInfoMethodImplementationFlags) {
14162
+ ConstructorInfoMethodImplementationFlags["IL"] = "IL";
14163
+ ConstructorInfoMethodImplementationFlags["Native"] = "Native";
14164
+ ConstructorInfoMethodImplementationFlags["OPTIL"] = "OPTIL";
14165
+ ConstructorInfoMethodImplementationFlags["CodeTypeMask"] = "CodeTypeMask";
14166
+ ConstructorInfoMethodImplementationFlags["ManagedMask"] = "ManagedMask";
14167
+ ConstructorInfoMethodImplementationFlags["NoInlining"] = "NoInlining";
14168
+ ConstructorInfoMethodImplementationFlags["ForwardRef"] = "ForwardRef";
14169
+ ConstructorInfoMethodImplementationFlags["Synchronized"] = "Synchronized";
14170
+ ConstructorInfoMethodImplementationFlags["NoOptimization"] = "NoOptimization";
14171
+ ConstructorInfoMethodImplementationFlags["PreserveSig"] = "PreserveSig";
14172
+ ConstructorInfoMethodImplementationFlags["AggressiveInlining"] = "AggressiveInlining";
14173
+ ConstructorInfoMethodImplementationFlags["AggressiveOptimization"] = "AggressiveOptimization";
14174
+ ConstructorInfoMethodImplementationFlags["InternalCall"] = "InternalCall";
14175
+ ConstructorInfoMethodImplementationFlags["MaxMethodImplVal"] = "MaxMethodImplVal";
14176
+ })(ConstructorInfoMethodImplementationFlags || (ConstructorInfoMethodImplementationFlags = {}));
14177
+ export var ConstructorInfoCallingConvention;
14178
+ (function (ConstructorInfoCallingConvention) {
14179
+ ConstructorInfoCallingConvention["Standard"] = "Standard";
14180
+ ConstructorInfoCallingConvention["VarArgs"] = "VarArgs";
14181
+ ConstructorInfoCallingConvention["Any"] = "Any";
14182
+ ConstructorInfoCallingConvention["HasThis"] = "HasThis";
14183
+ ConstructorInfoCallingConvention["ExplicitThis"] = "ExplicitThis";
14184
+ })(ConstructorInfoCallingConvention || (ConstructorInfoCallingConvention = {}));
14185
+ export var ConstructorInfoMemberType;
14186
+ (function (ConstructorInfoMemberType) {
14187
+ ConstructorInfoMemberType["Constructor"] = "Constructor";
14188
+ ConstructorInfoMemberType["Event"] = "Event";
14189
+ ConstructorInfoMemberType["Field"] = "Field";
14190
+ ConstructorInfoMemberType["Method"] = "Method";
14191
+ ConstructorInfoMemberType["Property"] = "Property";
14192
+ ConstructorInfoMemberType["TypeInfo"] = "TypeInfo";
14193
+ ConstructorInfoMemberType["Custom"] = "Custom";
14194
+ ConstructorInfoMemberType["NestedType"] = "NestedType";
14195
+ ConstructorInfoMemberType["All"] = "All";
14196
+ })(ConstructorInfoMemberType || (ConstructorInfoMemberType = {}));
12390
14197
  export var CreateInvestorType;
12391
14198
  (function (CreateInvestorType) {
12392
14199
  CreateInvestorType["IndividualInvestor"] = "IndividualInvestor";
@@ -12500,6 +14307,24 @@ export var EntityInvestorTrustType;
12500
14307
  EntityInvestorTrustType["REVOCABLE_TRUST"] = "REVOCABLE_TRUST";
12501
14308
  EntityInvestorTrustType["IRREVOCABLE_TRUST"] = "IRREVOCABLE_TRUST";
12502
14309
  })(EntityInvestorTrustType || (EntityInvestorTrustType = {}));
14310
+ export var EventInfoMemberType;
14311
+ (function (EventInfoMemberType) {
14312
+ EventInfoMemberType["Constructor"] = "Constructor";
14313
+ EventInfoMemberType["Event"] = "Event";
14314
+ EventInfoMemberType["Field"] = "Field";
14315
+ EventInfoMemberType["Method"] = "Method";
14316
+ EventInfoMemberType["Property"] = "Property";
14317
+ EventInfoMemberType["TypeInfo"] = "TypeInfo";
14318
+ EventInfoMemberType["Custom"] = "Custom";
14319
+ EventInfoMemberType["NestedType"] = "NestedType";
14320
+ EventInfoMemberType["All"] = "All";
14321
+ })(EventInfoMemberType || (EventInfoMemberType = {}));
14322
+ export var EventInfoAttributes;
14323
+ (function (EventInfoAttributes) {
14324
+ EventInfoAttributes["None"] = "None";
14325
+ EventInfoAttributes["SpecialName"] = "SpecialName";
14326
+ EventInfoAttributes["RTSpecialName"] = "RTSpecialName";
14327
+ })(EventInfoAttributes || (EventInfoAttributes = {}));
12503
14328
  export var FeeStructureFeeType;
12504
14329
  (function (FeeStructureFeeType) {
12505
14330
  FeeStructureFeeType["MANAGEMENT_FEE"] = "MANAGEMENT_FEE";
@@ -12508,6 +14333,40 @@ export var FeeStructureFeeType;
12508
14333
  FeeStructureFeeType["SALES_LOAD"] = "SALES_LOAD";
12509
14334
  FeeStructureFeeType["EARLY_REDEMPTION_FEE"] = "EARLY_REDEMPTION_FEE";
12510
14335
  })(FeeStructureFeeType || (FeeStructureFeeType = {}));
14336
+ export var FieldInfoMemberType;
14337
+ (function (FieldInfoMemberType) {
14338
+ FieldInfoMemberType["Constructor"] = "Constructor";
14339
+ FieldInfoMemberType["Event"] = "Event";
14340
+ FieldInfoMemberType["Field"] = "Field";
14341
+ FieldInfoMemberType["Method"] = "Method";
14342
+ FieldInfoMemberType["Property"] = "Property";
14343
+ FieldInfoMemberType["TypeInfo"] = "TypeInfo";
14344
+ FieldInfoMemberType["Custom"] = "Custom";
14345
+ FieldInfoMemberType["NestedType"] = "NestedType";
14346
+ FieldInfoMemberType["All"] = "All";
14347
+ })(FieldInfoMemberType || (FieldInfoMemberType = {}));
14348
+ export var FieldInfoAttributes;
14349
+ (function (FieldInfoAttributes) {
14350
+ FieldInfoAttributes["PrivateScope"] = "PrivateScope";
14351
+ FieldInfoAttributes["Private"] = "Private";
14352
+ FieldInfoAttributes["FamANDAssem"] = "FamANDAssem";
14353
+ FieldInfoAttributes["Assembly"] = "Assembly";
14354
+ FieldInfoAttributes["Family"] = "Family";
14355
+ FieldInfoAttributes["FamORAssem"] = "FamORAssem";
14356
+ FieldInfoAttributes["Public"] = "Public";
14357
+ FieldInfoAttributes["FieldAccessMask"] = "FieldAccessMask";
14358
+ FieldInfoAttributes["Static"] = "Static";
14359
+ FieldInfoAttributes["InitOnly"] = "InitOnly";
14360
+ FieldInfoAttributes["Literal"] = "Literal";
14361
+ FieldInfoAttributes["NotSerialized"] = "NotSerialized";
14362
+ FieldInfoAttributes["HasFieldRVA"] = "HasFieldRVA";
14363
+ FieldInfoAttributes["SpecialName"] = "SpecialName";
14364
+ FieldInfoAttributes["RTSpecialName"] = "RTSpecialName";
14365
+ FieldInfoAttributes["HasFieldMarshal"] = "HasFieldMarshal";
14366
+ FieldInfoAttributes["PinvokeImpl"] = "PinvokeImpl";
14367
+ FieldInfoAttributes["HasDefault"] = "HasDefault";
14368
+ FieldInfoAttributes["ReservedMask"] = "ReservedMask";
14369
+ })(FieldInfoAttributes || (FieldInfoAttributes = {}));
12511
14370
  export var FinancialInstitutionType;
12512
14371
  (function (FinancialInstitutionType) {
12513
14372
  FinancialInstitutionType["IntroducingBrokerDealer"] = "IntroducingBrokerDealer";
@@ -12630,6 +14489,142 @@ export var LayeredSPVFundStructure;
12630
14489
  LayeredSPVFundStructure["ThreeCOne"] = "ThreeCOne";
12631
14490
  LayeredSPVFundStructure["ThreeCSeven"] = "ThreeCSeven";
12632
14491
  })(LayeredSPVFundStructure || (LayeredSPVFundStructure = {}));
14492
+ export var MemberInfoMemberType;
14493
+ (function (MemberInfoMemberType) {
14494
+ MemberInfoMemberType["Constructor"] = "Constructor";
14495
+ MemberInfoMemberType["Event"] = "Event";
14496
+ MemberInfoMemberType["Field"] = "Field";
14497
+ MemberInfoMemberType["Method"] = "Method";
14498
+ MemberInfoMemberType["Property"] = "Property";
14499
+ MemberInfoMemberType["TypeInfo"] = "TypeInfo";
14500
+ MemberInfoMemberType["Custom"] = "Custom";
14501
+ MemberInfoMemberType["NestedType"] = "NestedType";
14502
+ MemberInfoMemberType["All"] = "All";
14503
+ })(MemberInfoMemberType || (MemberInfoMemberType = {}));
14504
+ export var MethodBaseMemberType;
14505
+ (function (MethodBaseMemberType) {
14506
+ MethodBaseMemberType["Constructor"] = "Constructor";
14507
+ MethodBaseMemberType["Event"] = "Event";
14508
+ MethodBaseMemberType["Field"] = "Field";
14509
+ MethodBaseMemberType["Method"] = "Method";
14510
+ MethodBaseMemberType["Property"] = "Property";
14511
+ MethodBaseMemberType["TypeInfo"] = "TypeInfo";
14512
+ MethodBaseMemberType["Custom"] = "Custom";
14513
+ MethodBaseMemberType["NestedType"] = "NestedType";
14514
+ MethodBaseMemberType["All"] = "All";
14515
+ })(MethodBaseMemberType || (MethodBaseMemberType = {}));
14516
+ export var MethodBaseAttributes;
14517
+ (function (MethodBaseAttributes) {
14518
+ MethodBaseAttributes["PrivateScope"] = "PrivateScope";
14519
+ MethodBaseAttributes["Private"] = "Private";
14520
+ MethodBaseAttributes["FamANDAssem"] = "FamANDAssem";
14521
+ MethodBaseAttributes["Assembly"] = "Assembly";
14522
+ MethodBaseAttributes["Family"] = "Family";
14523
+ MethodBaseAttributes["FamORAssem"] = "FamORAssem";
14524
+ MethodBaseAttributes["Public"] = "Public";
14525
+ MethodBaseAttributes["MemberAccessMask"] = "MemberAccessMask";
14526
+ MethodBaseAttributes["UnmanagedExport"] = "UnmanagedExport";
14527
+ MethodBaseAttributes["Static"] = "Static";
14528
+ MethodBaseAttributes["Final"] = "Final";
14529
+ MethodBaseAttributes["Virtual"] = "Virtual";
14530
+ MethodBaseAttributes["HideBySig"] = "HideBySig";
14531
+ MethodBaseAttributes["NewSlot"] = "NewSlot";
14532
+ MethodBaseAttributes["CheckAccessOnOverride"] = "CheckAccessOnOverride";
14533
+ MethodBaseAttributes["Abstract"] = "Abstract";
14534
+ MethodBaseAttributes["SpecialName"] = "SpecialName";
14535
+ MethodBaseAttributes["RTSpecialName"] = "RTSpecialName";
14536
+ MethodBaseAttributes["PinvokeImpl"] = "PinvokeImpl";
14537
+ MethodBaseAttributes["HasSecurity"] = "HasSecurity";
14538
+ MethodBaseAttributes["RequireSecObject"] = "RequireSecObject";
14539
+ MethodBaseAttributes["ReservedMask"] = "ReservedMask";
14540
+ })(MethodBaseAttributes || (MethodBaseAttributes = {}));
14541
+ export var MethodBaseMethodImplementationFlags;
14542
+ (function (MethodBaseMethodImplementationFlags) {
14543
+ MethodBaseMethodImplementationFlags["IL"] = "IL";
14544
+ MethodBaseMethodImplementationFlags["Native"] = "Native";
14545
+ MethodBaseMethodImplementationFlags["OPTIL"] = "OPTIL";
14546
+ MethodBaseMethodImplementationFlags["CodeTypeMask"] = "CodeTypeMask";
14547
+ MethodBaseMethodImplementationFlags["ManagedMask"] = "ManagedMask";
14548
+ MethodBaseMethodImplementationFlags["NoInlining"] = "NoInlining";
14549
+ MethodBaseMethodImplementationFlags["ForwardRef"] = "ForwardRef";
14550
+ MethodBaseMethodImplementationFlags["Synchronized"] = "Synchronized";
14551
+ MethodBaseMethodImplementationFlags["NoOptimization"] = "NoOptimization";
14552
+ MethodBaseMethodImplementationFlags["PreserveSig"] = "PreserveSig";
14553
+ MethodBaseMethodImplementationFlags["AggressiveInlining"] = "AggressiveInlining";
14554
+ MethodBaseMethodImplementationFlags["AggressiveOptimization"] = "AggressiveOptimization";
14555
+ MethodBaseMethodImplementationFlags["InternalCall"] = "InternalCall";
14556
+ MethodBaseMethodImplementationFlags["MaxMethodImplVal"] = "MaxMethodImplVal";
14557
+ })(MethodBaseMethodImplementationFlags || (MethodBaseMethodImplementationFlags = {}));
14558
+ export var MethodBaseCallingConvention;
14559
+ (function (MethodBaseCallingConvention) {
14560
+ MethodBaseCallingConvention["Standard"] = "Standard";
14561
+ MethodBaseCallingConvention["VarArgs"] = "VarArgs";
14562
+ MethodBaseCallingConvention["Any"] = "Any";
14563
+ MethodBaseCallingConvention["HasThis"] = "HasThis";
14564
+ MethodBaseCallingConvention["ExplicitThis"] = "ExplicitThis";
14565
+ })(MethodBaseCallingConvention || (MethodBaseCallingConvention = {}));
14566
+ export var MethodInfoAttributes;
14567
+ (function (MethodInfoAttributes) {
14568
+ MethodInfoAttributes["PrivateScope"] = "PrivateScope";
14569
+ MethodInfoAttributes["Private"] = "Private";
14570
+ MethodInfoAttributes["FamANDAssem"] = "FamANDAssem";
14571
+ MethodInfoAttributes["Assembly"] = "Assembly";
14572
+ MethodInfoAttributes["Family"] = "Family";
14573
+ MethodInfoAttributes["FamORAssem"] = "FamORAssem";
14574
+ MethodInfoAttributes["Public"] = "Public";
14575
+ MethodInfoAttributes["MemberAccessMask"] = "MemberAccessMask";
14576
+ MethodInfoAttributes["UnmanagedExport"] = "UnmanagedExport";
14577
+ MethodInfoAttributes["Static"] = "Static";
14578
+ MethodInfoAttributes["Final"] = "Final";
14579
+ MethodInfoAttributes["Virtual"] = "Virtual";
14580
+ MethodInfoAttributes["HideBySig"] = "HideBySig";
14581
+ MethodInfoAttributes["NewSlot"] = "NewSlot";
14582
+ MethodInfoAttributes["CheckAccessOnOverride"] = "CheckAccessOnOverride";
14583
+ MethodInfoAttributes["Abstract"] = "Abstract";
14584
+ MethodInfoAttributes["SpecialName"] = "SpecialName";
14585
+ MethodInfoAttributes["RTSpecialName"] = "RTSpecialName";
14586
+ MethodInfoAttributes["PinvokeImpl"] = "PinvokeImpl";
14587
+ MethodInfoAttributes["HasSecurity"] = "HasSecurity";
14588
+ MethodInfoAttributes["RequireSecObject"] = "RequireSecObject";
14589
+ MethodInfoAttributes["ReservedMask"] = "ReservedMask";
14590
+ })(MethodInfoAttributes || (MethodInfoAttributes = {}));
14591
+ export var MethodInfoMethodImplementationFlags;
14592
+ (function (MethodInfoMethodImplementationFlags) {
14593
+ MethodInfoMethodImplementationFlags["IL"] = "IL";
14594
+ MethodInfoMethodImplementationFlags["Native"] = "Native";
14595
+ MethodInfoMethodImplementationFlags["OPTIL"] = "OPTIL";
14596
+ MethodInfoMethodImplementationFlags["CodeTypeMask"] = "CodeTypeMask";
14597
+ MethodInfoMethodImplementationFlags["ManagedMask"] = "ManagedMask";
14598
+ MethodInfoMethodImplementationFlags["NoInlining"] = "NoInlining";
14599
+ MethodInfoMethodImplementationFlags["ForwardRef"] = "ForwardRef";
14600
+ MethodInfoMethodImplementationFlags["Synchronized"] = "Synchronized";
14601
+ MethodInfoMethodImplementationFlags["NoOptimization"] = "NoOptimization";
14602
+ MethodInfoMethodImplementationFlags["PreserveSig"] = "PreserveSig";
14603
+ MethodInfoMethodImplementationFlags["AggressiveInlining"] = "AggressiveInlining";
14604
+ MethodInfoMethodImplementationFlags["AggressiveOptimization"] = "AggressiveOptimization";
14605
+ MethodInfoMethodImplementationFlags["InternalCall"] = "InternalCall";
14606
+ MethodInfoMethodImplementationFlags["MaxMethodImplVal"] = "MaxMethodImplVal";
14607
+ })(MethodInfoMethodImplementationFlags || (MethodInfoMethodImplementationFlags = {}));
14608
+ export var MethodInfoCallingConvention;
14609
+ (function (MethodInfoCallingConvention) {
14610
+ MethodInfoCallingConvention["Standard"] = "Standard";
14611
+ MethodInfoCallingConvention["VarArgs"] = "VarArgs";
14612
+ MethodInfoCallingConvention["Any"] = "Any";
14613
+ MethodInfoCallingConvention["HasThis"] = "HasThis";
14614
+ MethodInfoCallingConvention["ExplicitThis"] = "ExplicitThis";
14615
+ })(MethodInfoCallingConvention || (MethodInfoCallingConvention = {}));
14616
+ export var MethodInfoMemberType;
14617
+ (function (MethodInfoMemberType) {
14618
+ MethodInfoMemberType["Constructor"] = "Constructor";
14619
+ MethodInfoMemberType["Event"] = "Event";
14620
+ MethodInfoMemberType["Field"] = "Field";
14621
+ MethodInfoMemberType["Method"] = "Method";
14622
+ MethodInfoMemberType["Property"] = "Property";
14623
+ MethodInfoMemberType["TypeInfo"] = "TypeInfo";
14624
+ MethodInfoMemberType["Custom"] = "Custom";
14625
+ MethodInfoMemberType["NestedType"] = "NestedType";
14626
+ MethodInfoMemberType["All"] = "All";
14627
+ })(MethodInfoMemberType || (MethodInfoMemberType = {}));
12633
14628
  export var ModifyIndividualInvestorQualifiedStatus;
12634
14629
  (function (ModifyIndividualInvestorQualifiedStatus) {
12635
14630
  ModifyIndividualInvestorQualifiedStatus["QUALIFIED_PURCHASER"] = "QUALIFIED_PURCHASER";
@@ -12657,6 +14652,20 @@ export var MonarkStageTransitionStage;
12657
14652
  MonarkStageTransitionStage["LIQUIDATION"] = "LIQUIDATION";
12658
14653
  MonarkStageTransitionStage["DISSOLVED"] = "DISSOLVED";
12659
14654
  })(MonarkStageTransitionStage || (MonarkStageTransitionStage = {}));
14655
+ export var ParameterInfoAttributes;
14656
+ (function (ParameterInfoAttributes) {
14657
+ ParameterInfoAttributes["None"] = "None";
14658
+ ParameterInfoAttributes["In"] = "In";
14659
+ ParameterInfoAttributes["Out"] = "Out";
14660
+ ParameterInfoAttributes["Lcid"] = "Lcid";
14661
+ ParameterInfoAttributes["Retval"] = "Retval";
14662
+ ParameterInfoAttributes["Optional"] = "Optional";
14663
+ ParameterInfoAttributes["HasDefault"] = "HasDefault";
14664
+ ParameterInfoAttributes["HasFieldMarshal"] = "HasFieldMarshal";
14665
+ ParameterInfoAttributes["Reserved3"] = "Reserved3";
14666
+ ParameterInfoAttributes["Reserved4"] = "Reserved4";
14667
+ ParameterInfoAttributes["ReservedMask"] = "ReservedMask";
14668
+ })(ParameterInfoAttributes || (ParameterInfoAttributes = {}));
12660
14669
  export var PartnerType;
12661
14670
  (function (PartnerType) {
12662
14671
  PartnerType["BrokerageFirm"] = "BrokerageFirm";
@@ -12750,6 +14759,93 @@ export var PreIPOCompanySPVMonarkStage;
12750
14759
  PreIPOCompanySPVMonarkStage["LIQUIDATION"] = "LIQUIDATION";
12751
14760
  PreIPOCompanySPVMonarkStage["DISSOLVED"] = "DISSOLVED";
12752
14761
  })(PreIPOCompanySPVMonarkStage || (PreIPOCompanySPVMonarkStage = {}));
14762
+ export var PropertyInfoMemberType;
14763
+ (function (PropertyInfoMemberType) {
14764
+ PropertyInfoMemberType["Constructor"] = "Constructor";
14765
+ PropertyInfoMemberType["Event"] = "Event";
14766
+ PropertyInfoMemberType["Field"] = "Field";
14767
+ PropertyInfoMemberType["Method"] = "Method";
14768
+ PropertyInfoMemberType["Property"] = "Property";
14769
+ PropertyInfoMemberType["TypeInfo"] = "TypeInfo";
14770
+ PropertyInfoMemberType["Custom"] = "Custom";
14771
+ PropertyInfoMemberType["NestedType"] = "NestedType";
14772
+ PropertyInfoMemberType["All"] = "All";
14773
+ })(PropertyInfoMemberType || (PropertyInfoMemberType = {}));
14774
+ export var PropertyInfoAttributes;
14775
+ (function (PropertyInfoAttributes) {
14776
+ PropertyInfoAttributes["None"] = "None";
14777
+ PropertyInfoAttributes["SpecialName"] = "SpecialName";
14778
+ PropertyInfoAttributes["RTSpecialName"] = "RTSpecialName";
14779
+ PropertyInfoAttributes["HasDefault"] = "HasDefault";
14780
+ PropertyInfoAttributes["Reserved2"] = "Reserved2";
14781
+ PropertyInfoAttributes["Reserved3"] = "Reserved3";
14782
+ PropertyInfoAttributes["Reserved4"] = "Reserved4";
14783
+ PropertyInfoAttributes["ReservedMask"] = "ReservedMask";
14784
+ })(PropertyInfoAttributes || (PropertyInfoAttributes = {}));
14785
+ export var QuestionnaireAnswerApiResponseStatusCode;
14786
+ (function (QuestionnaireAnswerApiResponseStatusCode) {
14787
+ QuestionnaireAnswerApiResponseStatusCode["Continue"] = "Continue";
14788
+ QuestionnaireAnswerApiResponseStatusCode["SwitchingProtocols"] = "SwitchingProtocols";
14789
+ QuestionnaireAnswerApiResponseStatusCode["Processing"] = "Processing";
14790
+ QuestionnaireAnswerApiResponseStatusCode["EarlyHints"] = "EarlyHints";
14791
+ QuestionnaireAnswerApiResponseStatusCode["OK"] = "OK";
14792
+ QuestionnaireAnswerApiResponseStatusCode["Created"] = "Created";
14793
+ QuestionnaireAnswerApiResponseStatusCode["Accepted"] = "Accepted";
14794
+ QuestionnaireAnswerApiResponseStatusCode["NonAuthoritativeInformation"] = "NonAuthoritativeInformation";
14795
+ QuestionnaireAnswerApiResponseStatusCode["NoContent"] = "NoContent";
14796
+ QuestionnaireAnswerApiResponseStatusCode["ResetContent"] = "ResetContent";
14797
+ QuestionnaireAnswerApiResponseStatusCode["PartialContent"] = "PartialContent";
14798
+ QuestionnaireAnswerApiResponseStatusCode["MultiStatus"] = "MultiStatus";
14799
+ QuestionnaireAnswerApiResponseStatusCode["AlreadyReported"] = "AlreadyReported";
14800
+ QuestionnaireAnswerApiResponseStatusCode["IMUsed"] = "IMUsed";
14801
+ QuestionnaireAnswerApiResponseStatusCode["MultipleChoices"] = "MultipleChoices";
14802
+ QuestionnaireAnswerApiResponseStatusCode["MovedPermanently"] = "MovedPermanently";
14803
+ QuestionnaireAnswerApiResponseStatusCode["Found"] = "Found";
14804
+ QuestionnaireAnswerApiResponseStatusCode["SeeOther"] = "SeeOther";
14805
+ QuestionnaireAnswerApiResponseStatusCode["NotModified"] = "NotModified";
14806
+ QuestionnaireAnswerApiResponseStatusCode["UseProxy"] = "UseProxy";
14807
+ QuestionnaireAnswerApiResponseStatusCode["Unused"] = "Unused";
14808
+ QuestionnaireAnswerApiResponseStatusCode["TemporaryRedirect"] = "TemporaryRedirect";
14809
+ QuestionnaireAnswerApiResponseStatusCode["PermanentRedirect"] = "PermanentRedirect";
14810
+ QuestionnaireAnswerApiResponseStatusCode["BadRequest"] = "BadRequest";
14811
+ QuestionnaireAnswerApiResponseStatusCode["Unauthorized"] = "Unauthorized";
14812
+ QuestionnaireAnswerApiResponseStatusCode["PaymentRequired"] = "PaymentRequired";
14813
+ QuestionnaireAnswerApiResponseStatusCode["Forbidden"] = "Forbidden";
14814
+ QuestionnaireAnswerApiResponseStatusCode["NotFound"] = "NotFound";
14815
+ QuestionnaireAnswerApiResponseStatusCode["MethodNotAllowed"] = "MethodNotAllowed";
14816
+ QuestionnaireAnswerApiResponseStatusCode["NotAcceptable"] = "NotAcceptable";
14817
+ QuestionnaireAnswerApiResponseStatusCode["ProxyAuthenticationRequired"] = "ProxyAuthenticationRequired";
14818
+ QuestionnaireAnswerApiResponseStatusCode["RequestTimeout"] = "RequestTimeout";
14819
+ QuestionnaireAnswerApiResponseStatusCode["Conflict"] = "Conflict";
14820
+ QuestionnaireAnswerApiResponseStatusCode["Gone"] = "Gone";
14821
+ QuestionnaireAnswerApiResponseStatusCode["LengthRequired"] = "LengthRequired";
14822
+ QuestionnaireAnswerApiResponseStatusCode["PreconditionFailed"] = "PreconditionFailed";
14823
+ QuestionnaireAnswerApiResponseStatusCode["RequestEntityTooLarge"] = "RequestEntityTooLarge";
14824
+ QuestionnaireAnswerApiResponseStatusCode["RequestUriTooLong"] = "RequestUriTooLong";
14825
+ QuestionnaireAnswerApiResponseStatusCode["UnsupportedMediaType"] = "UnsupportedMediaType";
14826
+ QuestionnaireAnswerApiResponseStatusCode["RequestedRangeNotSatisfiable"] = "RequestedRangeNotSatisfiable";
14827
+ QuestionnaireAnswerApiResponseStatusCode["ExpectationFailed"] = "ExpectationFailed";
14828
+ QuestionnaireAnswerApiResponseStatusCode["MisdirectedRequest"] = "MisdirectedRequest";
14829
+ QuestionnaireAnswerApiResponseStatusCode["UnprocessableEntity"] = "UnprocessableEntity";
14830
+ QuestionnaireAnswerApiResponseStatusCode["Locked"] = "Locked";
14831
+ QuestionnaireAnswerApiResponseStatusCode["FailedDependency"] = "FailedDependency";
14832
+ QuestionnaireAnswerApiResponseStatusCode["UpgradeRequired"] = "UpgradeRequired";
14833
+ QuestionnaireAnswerApiResponseStatusCode["PreconditionRequired"] = "PreconditionRequired";
14834
+ QuestionnaireAnswerApiResponseStatusCode["TooManyRequests"] = "TooManyRequests";
14835
+ QuestionnaireAnswerApiResponseStatusCode["RequestHeaderFieldsTooLarge"] = "RequestHeaderFieldsTooLarge";
14836
+ QuestionnaireAnswerApiResponseStatusCode["UnavailableForLegalReasons"] = "UnavailableForLegalReasons";
14837
+ QuestionnaireAnswerApiResponseStatusCode["InternalServerError"] = "InternalServerError";
14838
+ QuestionnaireAnswerApiResponseStatusCode["NotImplemented"] = "NotImplemented";
14839
+ QuestionnaireAnswerApiResponseStatusCode["BadGateway"] = "BadGateway";
14840
+ QuestionnaireAnswerApiResponseStatusCode["ServiceUnavailable"] = "ServiceUnavailable";
14841
+ QuestionnaireAnswerApiResponseStatusCode["GatewayTimeout"] = "GatewayTimeout";
14842
+ QuestionnaireAnswerApiResponseStatusCode["HttpVersionNotSupported"] = "HttpVersionNotSupported";
14843
+ QuestionnaireAnswerApiResponseStatusCode["VariantAlsoNegotiates"] = "VariantAlsoNegotiates";
14844
+ QuestionnaireAnswerApiResponseStatusCode["InsufficientStorage"] = "InsufficientStorage";
14845
+ QuestionnaireAnswerApiResponseStatusCode["LoopDetected"] = "LoopDetected";
14846
+ QuestionnaireAnswerApiResponseStatusCode["NotExtended"] = "NotExtended";
14847
+ QuestionnaireAnswerApiResponseStatusCode["NetworkAuthenticationRequired"] = "NetworkAuthenticationRequired";
14848
+ })(QuestionnaireAnswerApiResponseStatusCode || (QuestionnaireAnswerApiResponseStatusCode = {}));
12753
14849
  export var QuestionnaireQuestionStatus;
12754
14850
  (function (QuestionnaireQuestionStatus) {
12755
14851
  QuestionnaireQuestionStatus["DISABLED"] = "DISABLED";
@@ -12841,6 +14937,116 @@ export var RegisteredFundSubscriptionActionResponsibleParty;
12841
14937
  RegisteredFundSubscriptionActionResponsibleParty["Investor"] = "Investor";
12842
14938
  RegisteredFundSubscriptionActionResponsibleParty["Advisor"] = "Advisor";
12843
14939
  })(RegisteredFundSubscriptionActionResponsibleParty || (RegisteredFundSubscriptionActionResponsibleParty = {}));
14940
+ export var StructLayoutAttributeValue;
14941
+ (function (StructLayoutAttributeValue) {
14942
+ StructLayoutAttributeValue["Sequential"] = "Sequential";
14943
+ StructLayoutAttributeValue["Explicit"] = "Explicit";
14944
+ StructLayoutAttributeValue["Auto"] = "Auto";
14945
+ })(StructLayoutAttributeValue || (StructLayoutAttributeValue = {}));
14946
+ export var TypeMemberType;
14947
+ (function (TypeMemberType) {
14948
+ TypeMemberType["Constructor"] = "Constructor";
14949
+ TypeMemberType["Event"] = "Event";
14950
+ TypeMemberType["Field"] = "Field";
14951
+ TypeMemberType["Method"] = "Method";
14952
+ TypeMemberType["Property"] = "Property";
14953
+ TypeMemberType["TypeInfo"] = "TypeInfo";
14954
+ TypeMemberType["Custom"] = "Custom";
14955
+ TypeMemberType["NestedType"] = "NestedType";
14956
+ TypeMemberType["All"] = "All";
14957
+ })(TypeMemberType || (TypeMemberType = {}));
14958
+ export var TypeGenericParameterAttributes;
14959
+ (function (TypeGenericParameterAttributes) {
14960
+ TypeGenericParameterAttributes["None"] = "None";
14961
+ TypeGenericParameterAttributes["Covariant"] = "Covariant";
14962
+ TypeGenericParameterAttributes["Contravariant"] = "Contravariant";
14963
+ TypeGenericParameterAttributes["VarianceMask"] = "VarianceMask";
14964
+ TypeGenericParameterAttributes["ReferenceTypeConstraint"] = "ReferenceTypeConstraint";
14965
+ TypeGenericParameterAttributes["NotNullableValueTypeConstraint"] = "NotNullableValueTypeConstraint";
14966
+ TypeGenericParameterAttributes["DefaultConstructorConstraint"] = "DefaultConstructorConstraint";
14967
+ TypeGenericParameterAttributes["SpecialConstraintMask"] = "SpecialConstraintMask";
14968
+ })(TypeGenericParameterAttributes || (TypeGenericParameterAttributes = {}));
14969
+ export var TypeAttributes;
14970
+ (function (TypeAttributes) {
14971
+ TypeAttributes["NotPublic"] = "NotPublic";
14972
+ TypeAttributes["Public"] = "Public";
14973
+ TypeAttributes["NestedPublic"] = "NestedPublic";
14974
+ TypeAttributes["NestedPrivate"] = "NestedPrivate";
14975
+ TypeAttributes["NestedFamily"] = "NestedFamily";
14976
+ TypeAttributes["NestedAssembly"] = "NestedAssembly";
14977
+ TypeAttributes["NestedFamANDAssem"] = "NestedFamANDAssem";
14978
+ TypeAttributes["VisibilityMask"] = "VisibilityMask";
14979
+ TypeAttributes["SequentialLayout"] = "SequentialLayout";
14980
+ TypeAttributes["ExplicitLayout"] = "ExplicitLayout";
14981
+ TypeAttributes["LayoutMask"] = "LayoutMask";
14982
+ TypeAttributes["Interface"] = "Interface";
14983
+ TypeAttributes["Abstract"] = "Abstract";
14984
+ TypeAttributes["Sealed"] = "Sealed";
14985
+ TypeAttributes["SpecialName"] = "SpecialName";
14986
+ TypeAttributes["RTSpecialName"] = "RTSpecialName";
14987
+ TypeAttributes["Import"] = "Import";
14988
+ TypeAttributes["Serializable"] = "Serializable";
14989
+ TypeAttributes["WindowsRuntime"] = "WindowsRuntime";
14990
+ TypeAttributes["UnicodeClass"] = "UnicodeClass";
14991
+ TypeAttributes["AutoClass"] = "AutoClass";
14992
+ TypeAttributes["StringFormatMask"] = "StringFormatMask";
14993
+ TypeAttributes["HasSecurity"] = "HasSecurity";
14994
+ TypeAttributes["ReservedMask"] = "ReservedMask";
14995
+ TypeAttributes["BeforeFieldInit"] = "BeforeFieldInit";
14996
+ TypeAttributes["CustomFormatMask"] = "CustomFormatMask";
14997
+ })(TypeAttributes || (TypeAttributes = {}));
14998
+ export var TypeInfoMemberType;
14999
+ (function (TypeInfoMemberType) {
15000
+ TypeInfoMemberType["Constructor"] = "Constructor";
15001
+ TypeInfoMemberType["Event"] = "Event";
15002
+ TypeInfoMemberType["Field"] = "Field";
15003
+ TypeInfoMemberType["Method"] = "Method";
15004
+ TypeInfoMemberType["Property"] = "Property";
15005
+ TypeInfoMemberType["TypeInfo"] = "TypeInfo";
15006
+ TypeInfoMemberType["Custom"] = "Custom";
15007
+ TypeInfoMemberType["NestedType"] = "NestedType";
15008
+ TypeInfoMemberType["All"] = "All";
15009
+ })(TypeInfoMemberType || (TypeInfoMemberType = {}));
15010
+ export var TypeInfoGenericParameterAttributes;
15011
+ (function (TypeInfoGenericParameterAttributes) {
15012
+ TypeInfoGenericParameterAttributes["None"] = "None";
15013
+ TypeInfoGenericParameterAttributes["Covariant"] = "Covariant";
15014
+ TypeInfoGenericParameterAttributes["Contravariant"] = "Contravariant";
15015
+ TypeInfoGenericParameterAttributes["VarianceMask"] = "VarianceMask";
15016
+ TypeInfoGenericParameterAttributes["ReferenceTypeConstraint"] = "ReferenceTypeConstraint";
15017
+ TypeInfoGenericParameterAttributes["NotNullableValueTypeConstraint"] = "NotNullableValueTypeConstraint";
15018
+ TypeInfoGenericParameterAttributes["DefaultConstructorConstraint"] = "DefaultConstructorConstraint";
15019
+ TypeInfoGenericParameterAttributes["SpecialConstraintMask"] = "SpecialConstraintMask";
15020
+ })(TypeInfoGenericParameterAttributes || (TypeInfoGenericParameterAttributes = {}));
15021
+ export var TypeInfoAttributes;
15022
+ (function (TypeInfoAttributes) {
15023
+ TypeInfoAttributes["NotPublic"] = "NotPublic";
15024
+ TypeInfoAttributes["Public"] = "Public";
15025
+ TypeInfoAttributes["NestedPublic"] = "NestedPublic";
15026
+ TypeInfoAttributes["NestedPrivate"] = "NestedPrivate";
15027
+ TypeInfoAttributes["NestedFamily"] = "NestedFamily";
15028
+ TypeInfoAttributes["NestedAssembly"] = "NestedAssembly";
15029
+ TypeInfoAttributes["NestedFamANDAssem"] = "NestedFamANDAssem";
15030
+ TypeInfoAttributes["VisibilityMask"] = "VisibilityMask";
15031
+ TypeInfoAttributes["SequentialLayout"] = "SequentialLayout";
15032
+ TypeInfoAttributes["ExplicitLayout"] = "ExplicitLayout";
15033
+ TypeInfoAttributes["LayoutMask"] = "LayoutMask";
15034
+ TypeInfoAttributes["Interface"] = "Interface";
15035
+ TypeInfoAttributes["Abstract"] = "Abstract";
15036
+ TypeInfoAttributes["Sealed"] = "Sealed";
15037
+ TypeInfoAttributes["SpecialName"] = "SpecialName";
15038
+ TypeInfoAttributes["RTSpecialName"] = "RTSpecialName";
15039
+ TypeInfoAttributes["Import"] = "Import";
15040
+ TypeInfoAttributes["Serializable"] = "Serializable";
15041
+ TypeInfoAttributes["WindowsRuntime"] = "WindowsRuntime";
15042
+ TypeInfoAttributes["UnicodeClass"] = "UnicodeClass";
15043
+ TypeInfoAttributes["AutoClass"] = "AutoClass";
15044
+ TypeInfoAttributes["StringFormatMask"] = "StringFormatMask";
15045
+ TypeInfoAttributes["HasSecurity"] = "HasSecurity";
15046
+ TypeInfoAttributes["ReservedMask"] = "ReservedMask";
15047
+ TypeInfoAttributes["BeforeFieldInit"] = "BeforeFieldInit";
15048
+ TypeInfoAttributes["CustomFormatMask"] = "CustomFormatMask";
15049
+ })(TypeInfoAttributes || (TypeInfoAttributes = {}));
12844
15050
  export var UpdateEntityInvestorEntityType;
12845
15051
  (function (UpdateEntityInvestorEntityType) {
12846
15052
  UpdateEntityInvestorEntityType["SOLE_PROPRIETOR"] = "SOLE_PROPRIETOR";