@monarkmarkets/api-client 1.2.5 → 1.2.6

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