@monarkmarkets/api-client 1.1.107 → 1.1.109
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.
- package/dist/Client.d.ts +91 -12
- package/dist/Client.js +231 -6
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -682,6 +682,28 @@ export declare class Client {
|
|
|
682
682
|
*/
|
|
683
683
|
document3(id: string): Promise<FileResponse>;
|
|
684
684
|
protected processDocument3(response: Response): Promise<FileResponse>;
|
|
685
|
+
/**
|
|
686
|
+
* Get all RegisteredFundSubscriptionActions by RegisteredFundSubscription.
|
|
687
|
+
* @param registeredFundSubscriptionId The ID of the RegisteredFundSubscription to get the actions for.
|
|
688
|
+
* @param responsibleParty (optional) Optional filter by responsible party.
|
|
689
|
+
* @return OK
|
|
690
|
+
*/
|
|
691
|
+
registeredFundSubscriptionAll(registeredFundSubscriptionId: string, responsibleParty: ResponsibleParty | undefined): Promise<RegisteredFundSubscriptionAction[]>;
|
|
692
|
+
protected processRegisteredFundSubscriptionAll(response: Response): Promise<RegisteredFundSubscriptionAction[]>;
|
|
693
|
+
/**
|
|
694
|
+
* Get a RegisteredFundSubscriptionAction by Id
|
|
695
|
+
* @param id ID of the RegisteredFundSubscriptionAction to find.
|
|
696
|
+
* @return OK
|
|
697
|
+
*/
|
|
698
|
+
registeredFundSubscriptionAction(id: string): Promise<RegisteredFundSubscriptionAction>;
|
|
699
|
+
protected processRegisteredFundSubscriptionAction(response: Response): Promise<RegisteredFundSubscriptionAction>;
|
|
700
|
+
/**
|
|
701
|
+
* Complete a RegisteredFundSubscriptionAction.
|
|
702
|
+
* @param id The ID of the RegisteredFundSubscriptionAction to complete.
|
|
703
|
+
* @return No Content
|
|
704
|
+
*/
|
|
705
|
+
complete2(id: string): Promise<void>;
|
|
706
|
+
protected processComplete2(response: Response): Promise<void>;
|
|
685
707
|
/**
|
|
686
708
|
* Get the API version
|
|
687
709
|
* @return Returns the API version
|
|
@@ -3494,12 +3516,6 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
|
|
|
3494
3516
|
remainingShareAllocation?: number;
|
|
3495
3517
|
/** Indicates whether the SPV will be prefunded. */
|
|
3496
3518
|
preFundedInventory?: boolean;
|
|
3497
|
-
/** Size, in USD, of the brokerage commission associated with this PreIPOCompanySPV. This is the amount left over after the ERA pays its fees out of the cash withheld from the up front management fee. */
|
|
3498
|
-
totalCommission?: number | undefined;
|
|
3499
|
-
/** The percentage of the TotalCommission that will be paid to MMM Securities LLC. */
|
|
3500
|
-
monarkCommissionSplit?: number | undefined;
|
|
3501
|
-
/** The percentage of the TotalCommission that will be paid to the Partner distributing the SPV. */
|
|
3502
|
-
demandSideCommissionSplit?: number | undefined;
|
|
3503
3519
|
/** The price per share of the PreIPOCompany, excluding fees, that an investor will pay when they invest in an SPV. */
|
|
3504
3520
|
investorPricePerShare?: number | undefined;
|
|
3505
3521
|
/** The fee per share of the PreIPOCompany, that an Investor will pay when they invest in an SPV on the primary issuance. The InvestorPricePerShare plus the InvestorFeePerShare will determine the AllInPricePerShare. */
|
|
@@ -3575,12 +3591,6 @@ export interface IPreIPOCompanySPV {
|
|
|
3575
3591
|
remainingShareAllocation?: number;
|
|
3576
3592
|
/** Indicates whether the SPV will be prefunded. */
|
|
3577
3593
|
preFundedInventory?: boolean;
|
|
3578
|
-
/** Size, in USD, of the brokerage commission associated with this PreIPOCompanySPV. This is the amount left over after the ERA pays its fees out of the cash withheld from the up front management fee. */
|
|
3579
|
-
totalCommission?: number | undefined;
|
|
3580
|
-
/** The percentage of the TotalCommission that will be paid to MMM Securities LLC. */
|
|
3581
|
-
monarkCommissionSplit?: number | undefined;
|
|
3582
|
-
/** The percentage of the TotalCommission that will be paid to the Partner distributing the SPV. */
|
|
3583
|
-
demandSideCommissionSplit?: number | undefined;
|
|
3584
3594
|
/** The price per share of the PreIPOCompany, excluding fees, that an investor will pay when they invest in an SPV. */
|
|
3585
3595
|
investorPricePerShare?: number | undefined;
|
|
3586
3596
|
/** The fee per share of the PreIPOCompany, that an Investor will pay when they invest in an SPV on the primary issuance. The InvestorPricePerShare plus the InvestorFeePerShare will determine the AllInPricePerShare. */
|
|
@@ -4020,6 +4030,50 @@ export interface IRegisteredFundSubscription {
|
|
|
4020
4030
|
/** Full name of the associated investor. */
|
|
4021
4031
|
investorFullName?: string | undefined;
|
|
4022
4032
|
}
|
|
4033
|
+
export declare class RegisteredFundSubscriptionAction implements IRegisteredFundSubscriptionAction {
|
|
4034
|
+
/** Unique ID associated with an InvestorSubscriptionAction. */
|
|
4035
|
+
id?: string;
|
|
4036
|
+
/** RegisteredFund SubscriptionId for the RegisteredFundSubscriptionAction record. */
|
|
4037
|
+
registeredFundSubscriptionId?: string;
|
|
4038
|
+
/** The name of this RegisteredFundSubscriptionAction. */
|
|
4039
|
+
name: string | undefined;
|
|
4040
|
+
/** A description for this action. */
|
|
4041
|
+
description?: string | undefined;
|
|
4042
|
+
/** Optional DataId for related object. */
|
|
4043
|
+
dataId?: string | undefined;
|
|
4044
|
+
/** The current status of this RegisteredFund SubscriptionAction. */
|
|
4045
|
+
status: RegisteredFundSubscriptionActionStatus;
|
|
4046
|
+
/** The type of action required to be performed by the Investor, as part of executing the Subscription. DocumentSign and DocumentAcknowledge can both be completed by “signing” the associated document. RegisteredFundSubscriptionActions with a type of DocumentSign mean that the associated document, once signed, will be populated with an automatically generated signature. InvestorSubscriptionActions with a type of DocumentAcknowledge mean that the associated document, once signed, will be counted as acknowledged but are not required to be populated by a signature. */
|
|
4047
|
+
type: RegisteredFundSubscriptionActionType;
|
|
4048
|
+
/** This describes the entity responsible for acknowledging that the Action has been completed. Partners acknowledge that actions have been completed on behalf of their Investors. */
|
|
4049
|
+
responsibleParty: RegisteredFundSubscriptionActionResponsibleParty;
|
|
4050
|
+
/** Text for an action that is a text acknowledgement. */
|
|
4051
|
+
actionText?: string | undefined;
|
|
4052
|
+
constructor(data?: IRegisteredFundSubscriptionAction);
|
|
4053
|
+
init(_data?: any): void;
|
|
4054
|
+
static fromJS(data: any): RegisteredFundSubscriptionAction;
|
|
4055
|
+
toJSON(data?: any): any;
|
|
4056
|
+
}
|
|
4057
|
+
export interface IRegisteredFundSubscriptionAction {
|
|
4058
|
+
/** Unique ID associated with an InvestorSubscriptionAction. */
|
|
4059
|
+
id?: string;
|
|
4060
|
+
/** RegisteredFund SubscriptionId for the RegisteredFundSubscriptionAction record. */
|
|
4061
|
+
registeredFundSubscriptionId?: string;
|
|
4062
|
+
/** The name of this RegisteredFundSubscriptionAction. */
|
|
4063
|
+
name: string | undefined;
|
|
4064
|
+
/** A description for this action. */
|
|
4065
|
+
description?: string | undefined;
|
|
4066
|
+
/** Optional DataId for related object. */
|
|
4067
|
+
dataId?: string | undefined;
|
|
4068
|
+
/** The current status of this RegisteredFund SubscriptionAction. */
|
|
4069
|
+
status: RegisteredFundSubscriptionActionStatus;
|
|
4070
|
+
/** The type of action required to be performed by the Investor, as part of executing the Subscription. DocumentSign and DocumentAcknowledge can both be completed by “signing” the associated document. RegisteredFundSubscriptionActions with a type of DocumentSign mean that the associated document, once signed, will be populated with an automatically generated signature. InvestorSubscriptionActions with a type of DocumentAcknowledge mean that the associated document, once signed, will be counted as acknowledged but are not required to be populated by a signature. */
|
|
4071
|
+
type: RegisteredFundSubscriptionActionType;
|
|
4072
|
+
/** This describes the entity responsible for acknowledging that the Action has been completed. Partners acknowledge that actions have been completed on behalf of their Investors. */
|
|
4073
|
+
responsibleParty: RegisteredFundSubscriptionActionResponsibleParty;
|
|
4074
|
+
/** Text for an action that is a text acknowledgement. */
|
|
4075
|
+
actionText?: string | undefined;
|
|
4076
|
+
}
|
|
4023
4077
|
export declare class RegisteredFundSubscriptionApiResponse implements IRegisteredFundSubscriptionApiResponse {
|
|
4024
4078
|
items?: RegisteredFundSubscription[] | undefined;
|
|
4025
4079
|
pagination?: Pagination | undefined;
|
|
@@ -4912,6 +4966,12 @@ export declare enum SortOrder15 {
|
|
|
4912
4966
|
Ascending = "Ascending",
|
|
4913
4967
|
Descending = "Descending"
|
|
4914
4968
|
}
|
|
4969
|
+
export declare enum ResponsibleParty {
|
|
4970
|
+
Partner = "Partner",
|
|
4971
|
+
Monark = "Monark",
|
|
4972
|
+
Investor = "Investor",
|
|
4973
|
+
Advisor = "Advisor"
|
|
4974
|
+
}
|
|
4915
4975
|
export declare enum SortOrder16 {
|
|
4916
4976
|
Ascending = "Ascending",
|
|
4917
4977
|
Descending = "Descending"
|
|
@@ -5298,6 +5358,25 @@ export declare enum RegisteredFundSubscriptionStatus {
|
|
|
5298
5358
|
InvestorSigned = "InvestorSigned",
|
|
5299
5359
|
AdvisorSigned = "AdvisorSigned"
|
|
5300
5360
|
}
|
|
5361
|
+
export declare enum RegisteredFundSubscriptionActionStatus {
|
|
5362
|
+
Pending = "Pending",
|
|
5363
|
+
Complete = "Complete"
|
|
5364
|
+
}
|
|
5365
|
+
export declare enum RegisteredFundSubscriptionActionType {
|
|
5366
|
+
Other = "Other",
|
|
5367
|
+
DocumentSign = "DocumentSign",
|
|
5368
|
+
DocumentAcknowledge = "DocumentAcknowledge",
|
|
5369
|
+
CashMovement = "CashMovement",
|
|
5370
|
+
ApiCall = "ApiCall",
|
|
5371
|
+
TextAcknowledge = "TextAcknowledge",
|
|
5372
|
+
KYCAML = "KYCAML"
|
|
5373
|
+
}
|
|
5374
|
+
export declare enum RegisteredFundSubscriptionActionResponsibleParty {
|
|
5375
|
+
Partner = "Partner",
|
|
5376
|
+
Monark = "Monark",
|
|
5377
|
+
Investor = "Investor",
|
|
5378
|
+
Advisor = "Advisor"
|
|
5379
|
+
}
|
|
5301
5380
|
export declare enum UpdateEntityInvestorEntityType {
|
|
5302
5381
|
SOLE_PROPRIETOR = "SOLE_PROPRIETOR",
|
|
5303
5382
|
SINGLE_MEMBER_LLC = "SINGLE_MEMBER_LLC",
|
package/dist/Client.js
CHANGED
|
@@ -4847,6 +4847,166 @@ export class Client {
|
|
|
4847
4847
|
}
|
|
4848
4848
|
return Promise.resolve(null);
|
|
4849
4849
|
}
|
|
4850
|
+
/**
|
|
4851
|
+
* Get all RegisteredFundSubscriptionActions by RegisteredFundSubscription.
|
|
4852
|
+
* @param registeredFundSubscriptionId The ID of the RegisteredFundSubscription to get the actions for.
|
|
4853
|
+
* @param responsibleParty (optional) Optional filter by responsible party.
|
|
4854
|
+
* @return OK
|
|
4855
|
+
*/
|
|
4856
|
+
registeredFundSubscriptionAll(registeredFundSubscriptionId, responsibleParty) {
|
|
4857
|
+
let url_ = this.baseUrl + "/primary/v1/registered-fund-subscription-action/registered-fund-subscription/{registeredFundSubscriptionId}?";
|
|
4858
|
+
if (registeredFundSubscriptionId === undefined || registeredFundSubscriptionId === null)
|
|
4859
|
+
throw new Error("The parameter 'registeredFundSubscriptionId' must be defined.");
|
|
4860
|
+
url_ = url_.replace("{registeredFundSubscriptionId}", encodeURIComponent("" + registeredFundSubscriptionId));
|
|
4861
|
+
if (responsibleParty === null)
|
|
4862
|
+
throw new Error("The parameter 'responsibleParty' cannot be null.");
|
|
4863
|
+
else if (responsibleParty !== undefined)
|
|
4864
|
+
url_ += "responsibleParty=" + encodeURIComponent("" + responsibleParty) + "&";
|
|
4865
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
4866
|
+
let options_ = {
|
|
4867
|
+
method: "GET",
|
|
4868
|
+
headers: {
|
|
4869
|
+
"Accept": "application/json"
|
|
4870
|
+
}
|
|
4871
|
+
};
|
|
4872
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
4873
|
+
return this.processRegisteredFundSubscriptionAll(_response);
|
|
4874
|
+
});
|
|
4875
|
+
}
|
|
4876
|
+
processRegisteredFundSubscriptionAll(response) {
|
|
4877
|
+
const status = response.status;
|
|
4878
|
+
let _headers = {};
|
|
4879
|
+
if (response.headers && response.headers.forEach) {
|
|
4880
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
4881
|
+
}
|
|
4882
|
+
;
|
|
4883
|
+
if (status === 200) {
|
|
4884
|
+
return response.text().then((_responseText) => {
|
|
4885
|
+
let result200 = null;
|
|
4886
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
4887
|
+
if (Array.isArray(resultData200)) {
|
|
4888
|
+
result200 = [];
|
|
4889
|
+
for (let item of resultData200)
|
|
4890
|
+
result200.push(RegisteredFundSubscriptionAction.fromJS(item));
|
|
4891
|
+
}
|
|
4892
|
+
else {
|
|
4893
|
+
result200 = null;
|
|
4894
|
+
}
|
|
4895
|
+
return result200;
|
|
4896
|
+
});
|
|
4897
|
+
}
|
|
4898
|
+
else if (status === 404) {
|
|
4899
|
+
return response.text().then((_responseText) => {
|
|
4900
|
+
let result404 = null;
|
|
4901
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
4902
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
4903
|
+
return throwException("Not Found", status, _responseText, _headers, result404);
|
|
4904
|
+
});
|
|
4905
|
+
}
|
|
4906
|
+
else if (status !== 200 && status !== 204) {
|
|
4907
|
+
return response.text().then((_responseText) => {
|
|
4908
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
4909
|
+
});
|
|
4910
|
+
}
|
|
4911
|
+
return Promise.resolve(null);
|
|
4912
|
+
}
|
|
4913
|
+
/**
|
|
4914
|
+
* Get a RegisteredFundSubscriptionAction by Id
|
|
4915
|
+
* @param id ID of the RegisteredFundSubscriptionAction to find.
|
|
4916
|
+
* @return OK
|
|
4917
|
+
*/
|
|
4918
|
+
registeredFundSubscriptionAction(id) {
|
|
4919
|
+
let url_ = this.baseUrl + "/primary/v1/registered-fund-subscription-action/{id}";
|
|
4920
|
+
if (id === undefined || id === null)
|
|
4921
|
+
throw new Error("The parameter 'id' must be defined.");
|
|
4922
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
4923
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
4924
|
+
let options_ = {
|
|
4925
|
+
method: "GET",
|
|
4926
|
+
headers: {
|
|
4927
|
+
"Accept": "application/json"
|
|
4928
|
+
}
|
|
4929
|
+
};
|
|
4930
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
4931
|
+
return this.processRegisteredFundSubscriptionAction(_response);
|
|
4932
|
+
});
|
|
4933
|
+
}
|
|
4934
|
+
processRegisteredFundSubscriptionAction(response) {
|
|
4935
|
+
const status = response.status;
|
|
4936
|
+
let _headers = {};
|
|
4937
|
+
if (response.headers && response.headers.forEach) {
|
|
4938
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
4939
|
+
}
|
|
4940
|
+
;
|
|
4941
|
+
if (status === 200) {
|
|
4942
|
+
return response.text().then((_responseText) => {
|
|
4943
|
+
let result200 = null;
|
|
4944
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
4945
|
+
result200 = RegisteredFundSubscriptionAction.fromJS(resultData200);
|
|
4946
|
+
return result200;
|
|
4947
|
+
});
|
|
4948
|
+
}
|
|
4949
|
+
else if (status === 404) {
|
|
4950
|
+
return response.text().then((_responseText) => {
|
|
4951
|
+
let result404 = null;
|
|
4952
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
4953
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
4954
|
+
return throwException("Not Found", status, _responseText, _headers, result404);
|
|
4955
|
+
});
|
|
4956
|
+
}
|
|
4957
|
+
else if (status !== 200 && status !== 204) {
|
|
4958
|
+
return response.text().then((_responseText) => {
|
|
4959
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
4960
|
+
});
|
|
4961
|
+
}
|
|
4962
|
+
return Promise.resolve(null);
|
|
4963
|
+
}
|
|
4964
|
+
/**
|
|
4965
|
+
* Complete a RegisteredFundSubscriptionAction.
|
|
4966
|
+
* @param id The ID of the RegisteredFundSubscriptionAction to complete.
|
|
4967
|
+
* @return No Content
|
|
4968
|
+
*/
|
|
4969
|
+
complete2(id) {
|
|
4970
|
+
let url_ = this.baseUrl + "/primary/v1/registered-fund-subscription-action/{id}/complete";
|
|
4971
|
+
if (id === undefined || id === null)
|
|
4972
|
+
throw new Error("The parameter 'id' must be defined.");
|
|
4973
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
4974
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
4975
|
+
let options_ = {
|
|
4976
|
+
method: "PUT",
|
|
4977
|
+
headers: {}
|
|
4978
|
+
};
|
|
4979
|
+
return this.http.fetch(url_, options_).then((_response) => {
|
|
4980
|
+
return this.processComplete2(_response);
|
|
4981
|
+
});
|
|
4982
|
+
}
|
|
4983
|
+
processComplete2(response) {
|
|
4984
|
+
const status = response.status;
|
|
4985
|
+
let _headers = {};
|
|
4986
|
+
if (response.headers && response.headers.forEach) {
|
|
4987
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
4988
|
+
}
|
|
4989
|
+
;
|
|
4990
|
+
if (status === 204) {
|
|
4991
|
+
return response.text().then((_responseText) => {
|
|
4992
|
+
return;
|
|
4993
|
+
});
|
|
4994
|
+
}
|
|
4995
|
+
else if (status === 404) {
|
|
4996
|
+
return response.text().then((_responseText) => {
|
|
4997
|
+
let result404 = null;
|
|
4998
|
+
let resultData404 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
4999
|
+
result404 = ProblemDetails.fromJS(resultData404);
|
|
5000
|
+
return throwException("Not Found", status, _responseText, _headers, result404);
|
|
5001
|
+
});
|
|
5002
|
+
}
|
|
5003
|
+
else if (status !== 200 && status !== 204) {
|
|
5004
|
+
return response.text().then((_responseText) => {
|
|
5005
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
5006
|
+
});
|
|
5007
|
+
}
|
|
5008
|
+
return Promise.resolve(null);
|
|
5009
|
+
}
|
|
4850
5010
|
/**
|
|
4851
5011
|
* Get the API version
|
|
4852
5012
|
* @return Returns the API version
|
|
@@ -8130,9 +8290,6 @@ export class PreIPOCompanySPV {
|
|
|
8130
8290
|
this.remainingDollarAllocation = _data["remainingDollarAllocation"];
|
|
8131
8291
|
this.remainingShareAllocation = _data["remainingShareAllocation"];
|
|
8132
8292
|
this.preFundedInventory = _data["preFundedInventory"];
|
|
8133
|
-
this.totalCommission = _data["totalCommission"];
|
|
8134
|
-
this.monarkCommissionSplit = _data["monarkCommissionSplit"];
|
|
8135
|
-
this.demandSideCommissionSplit = _data["demandSideCommissionSplit"];
|
|
8136
8293
|
this.investorPricePerShare = _data["investorPricePerShare"];
|
|
8137
8294
|
this.investorFeePerShare = _data["investorFeePerShare"];
|
|
8138
8295
|
this.allInPricePerShare = _data["allInPricePerShare"];
|
|
@@ -8193,9 +8350,6 @@ export class PreIPOCompanySPV {
|
|
|
8193
8350
|
data["remainingDollarAllocation"] = this.remainingDollarAllocation;
|
|
8194
8351
|
data["remainingShareAllocation"] = this.remainingShareAllocation;
|
|
8195
8352
|
data["preFundedInventory"] = this.preFundedInventory;
|
|
8196
|
-
data["totalCommission"] = this.totalCommission;
|
|
8197
|
-
data["monarkCommissionSplit"] = this.monarkCommissionSplit;
|
|
8198
|
-
data["demandSideCommissionSplit"] = this.demandSideCommissionSplit;
|
|
8199
8353
|
data["investorPricePerShare"] = this.investorPricePerShare;
|
|
8200
8354
|
data["investorFeePerShare"] = this.investorFeePerShare;
|
|
8201
8355
|
data["allInPricePerShare"] = this.allInPricePerShare;
|
|
@@ -8724,6 +8878,48 @@ export class RegisteredFundSubscription {
|
|
|
8724
8878
|
return data;
|
|
8725
8879
|
}
|
|
8726
8880
|
}
|
|
8881
|
+
export class RegisteredFundSubscriptionAction {
|
|
8882
|
+
constructor(data) {
|
|
8883
|
+
if (data) {
|
|
8884
|
+
for (var property in data) {
|
|
8885
|
+
if (data.hasOwnProperty(property))
|
|
8886
|
+
this[property] = data[property];
|
|
8887
|
+
}
|
|
8888
|
+
}
|
|
8889
|
+
}
|
|
8890
|
+
init(_data) {
|
|
8891
|
+
if (_data) {
|
|
8892
|
+
this.id = _data["id"];
|
|
8893
|
+
this.registeredFundSubscriptionId = _data["registeredFundSubscriptionId"];
|
|
8894
|
+
this.name = _data["name"];
|
|
8895
|
+
this.description = _data["description"];
|
|
8896
|
+
this.dataId = _data["dataId"];
|
|
8897
|
+
this.status = _data["status"];
|
|
8898
|
+
this.type = _data["type"];
|
|
8899
|
+
this.responsibleParty = _data["responsibleParty"];
|
|
8900
|
+
this.actionText = _data["actionText"];
|
|
8901
|
+
}
|
|
8902
|
+
}
|
|
8903
|
+
static fromJS(data) {
|
|
8904
|
+
data = typeof data === 'object' ? data : {};
|
|
8905
|
+
let result = new RegisteredFundSubscriptionAction();
|
|
8906
|
+
result.init(data);
|
|
8907
|
+
return result;
|
|
8908
|
+
}
|
|
8909
|
+
toJSON(data) {
|
|
8910
|
+
data = typeof data === 'object' ? data : {};
|
|
8911
|
+
data["id"] = this.id;
|
|
8912
|
+
data["registeredFundSubscriptionId"] = this.registeredFundSubscriptionId;
|
|
8913
|
+
data["name"] = this.name;
|
|
8914
|
+
data["description"] = this.description;
|
|
8915
|
+
data["dataId"] = this.dataId;
|
|
8916
|
+
data["status"] = this.status;
|
|
8917
|
+
data["type"] = this.type;
|
|
8918
|
+
data["responsibleParty"] = this.responsibleParty;
|
|
8919
|
+
data["actionText"] = this.actionText;
|
|
8920
|
+
return data;
|
|
8921
|
+
}
|
|
8922
|
+
}
|
|
8727
8923
|
export class RegisteredFundSubscriptionApiResponse {
|
|
8728
8924
|
constructor(data) {
|
|
8729
8925
|
if (data) {
|
|
@@ -9698,6 +9894,13 @@ export var SortOrder15;
|
|
|
9698
9894
|
SortOrder15["Ascending"] = "Ascending";
|
|
9699
9895
|
SortOrder15["Descending"] = "Descending";
|
|
9700
9896
|
})(SortOrder15 || (SortOrder15 = {}));
|
|
9897
|
+
export var ResponsibleParty;
|
|
9898
|
+
(function (ResponsibleParty) {
|
|
9899
|
+
ResponsibleParty["Partner"] = "Partner";
|
|
9900
|
+
ResponsibleParty["Monark"] = "Monark";
|
|
9901
|
+
ResponsibleParty["Investor"] = "Investor";
|
|
9902
|
+
ResponsibleParty["Advisor"] = "Advisor";
|
|
9903
|
+
})(ResponsibleParty || (ResponsibleParty = {}));
|
|
9701
9904
|
export var SortOrder16;
|
|
9702
9905
|
(function (SortOrder16) {
|
|
9703
9906
|
SortOrder16["Ascending"] = "Ascending";
|
|
@@ -10130,6 +10333,28 @@ export var RegisteredFundSubscriptionStatus;
|
|
|
10130
10333
|
RegisteredFundSubscriptionStatus["InvestorSigned"] = "InvestorSigned";
|
|
10131
10334
|
RegisteredFundSubscriptionStatus["AdvisorSigned"] = "AdvisorSigned";
|
|
10132
10335
|
})(RegisteredFundSubscriptionStatus || (RegisteredFundSubscriptionStatus = {}));
|
|
10336
|
+
export var RegisteredFundSubscriptionActionStatus;
|
|
10337
|
+
(function (RegisteredFundSubscriptionActionStatus) {
|
|
10338
|
+
RegisteredFundSubscriptionActionStatus["Pending"] = "Pending";
|
|
10339
|
+
RegisteredFundSubscriptionActionStatus["Complete"] = "Complete";
|
|
10340
|
+
})(RegisteredFundSubscriptionActionStatus || (RegisteredFundSubscriptionActionStatus = {}));
|
|
10341
|
+
export var RegisteredFundSubscriptionActionType;
|
|
10342
|
+
(function (RegisteredFundSubscriptionActionType) {
|
|
10343
|
+
RegisteredFundSubscriptionActionType["Other"] = "Other";
|
|
10344
|
+
RegisteredFundSubscriptionActionType["DocumentSign"] = "DocumentSign";
|
|
10345
|
+
RegisteredFundSubscriptionActionType["DocumentAcknowledge"] = "DocumentAcknowledge";
|
|
10346
|
+
RegisteredFundSubscriptionActionType["CashMovement"] = "CashMovement";
|
|
10347
|
+
RegisteredFundSubscriptionActionType["ApiCall"] = "ApiCall";
|
|
10348
|
+
RegisteredFundSubscriptionActionType["TextAcknowledge"] = "TextAcknowledge";
|
|
10349
|
+
RegisteredFundSubscriptionActionType["KYCAML"] = "KYCAML";
|
|
10350
|
+
})(RegisteredFundSubscriptionActionType || (RegisteredFundSubscriptionActionType = {}));
|
|
10351
|
+
export var RegisteredFundSubscriptionActionResponsibleParty;
|
|
10352
|
+
(function (RegisteredFundSubscriptionActionResponsibleParty) {
|
|
10353
|
+
RegisteredFundSubscriptionActionResponsibleParty["Partner"] = "Partner";
|
|
10354
|
+
RegisteredFundSubscriptionActionResponsibleParty["Monark"] = "Monark";
|
|
10355
|
+
RegisteredFundSubscriptionActionResponsibleParty["Investor"] = "Investor";
|
|
10356
|
+
RegisteredFundSubscriptionActionResponsibleParty["Advisor"] = "Advisor";
|
|
10357
|
+
})(RegisteredFundSubscriptionActionResponsibleParty || (RegisteredFundSubscriptionActionResponsibleParty = {}));
|
|
10133
10358
|
export var UpdateEntityInvestorEntityType;
|
|
10134
10359
|
(function (UpdateEntityInvestorEntityType) {
|
|
10135
10360
|
UpdateEntityInvestorEntityType["SOLE_PROPRIETOR"] = "SOLE_PROPRIETOR";
|