@gofynd/fdk-client-javascript 1.0.1 → 1.0.2
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/documentation/application/CART.md +251 -251
- package/documentation/application/CATALOG.md +414 -414
- package/documentation/application/CONTENT.md +15 -1
- package/documentation/application/ORDER.md +290 -290
- package/documentation/application/PAYMENT.md +255 -255
- package/documentation/application/POSCART.md +297 -297
- package/documentation/platform/CART.md +499 -499
- package/documentation/platform/CATALOG.md +3088 -2702
- package/documentation/platform/COMPANYPROFILE.md +201 -201
- package/documentation/platform/CONTENT.md +123 -1
- package/documentation/platform/ORDER.md +1233 -1158
- package/documentation/platform/PARTNER.md +7 -7
- package/documentation/platform/PAYMENT.md +83 -83
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +619 -108
- package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
- package/sdk/application/Cart/CartApplicationModel.js +335 -335
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
- package/sdk/application/Catalog/CatalogApplicationClient.js +730 -134
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +21 -21
- package/sdk/application/Catalog/CatalogApplicationModel.js +547 -547
- package/sdk/application/Common/CommonApplicationClient.js +48 -8
- package/sdk/application/Communication/CommunicationApplicationClient.js +75 -14
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +392 -66
- package/sdk/application/Content/ContentApplicationClient.js +444 -76
- package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
- package/sdk/application/Content/ContentApplicationModel.js +11 -1
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +74 -12
- package/sdk/application/Lead/LeadApplicationClient.js +164 -30
- package/sdk/application/Logistic/LogisticApplicationClient.js +98 -16
- package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
- package/sdk/application/Order/OrderApplicationClient.js +287 -54
- package/sdk/application/Order/OrderApplicationModel.d.ts +19 -19
- package/sdk/application/Order/OrderApplicationModel.js +357 -357
- package/sdk/application/Payment/PaymentApplicationClient.js +961 -186
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +3 -3
- package/sdk/application/Payment/PaymentApplicationModel.js +352 -352
- package/sdk/application/PosCart/PosCartApplicationClient.js +645 -114
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
- package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
- package/sdk/application/Rewards/RewardsApplicationClient.js +168 -28
- package/sdk/application/Share/ShareApplicationClient.js +157 -32
- package/sdk/application/Theme/ThemeApplicationClient.js +94 -16
- package/sdk/application/User/UserApplicationClient.js +806 -148
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +191 -34
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +103 -16
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +299 -54
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +409 -72
- package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
- package/sdk/platform/Cart/CartPlatformModel.js +617 -617
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +167 -114
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1562 -453
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +39 -39
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +314 -196
- package/sdk/platform/Catalog/CatalogPlatformClient.js +2459 -718
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +103 -94
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2063 -1797
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +17 -15
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +95 -76
- package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
- package/sdk/platform/Common/CommonPlatformClient.js +51 -8
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1000 -168
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +335 -54
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +10 -10
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +278 -278
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +702 -118
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +457 -82
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1724 -284
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -0
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +7 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +4 -0
- package/sdk/platform/Content/ContentPlatformModel.js +43 -1
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +21 -10
- package/sdk/platform/Discount/DiscountPlatformClient.js +270 -44
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +102 -16
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +150 -24
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
- package/sdk/platform/Inventory/InventoryPlatformClient.js +316 -52
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +311 -52
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +266 -44
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +78 -14
- package/sdk/platform/Order/OrderPlatformClient.d.ts +95 -43
- package/sdk/platform/Order/OrderPlatformClient.js +1062 -180
- package/sdk/platform/Order/OrderPlatformModel.d.ts +64 -60
- package/sdk/platform/Order/OrderPlatformModel.js +1481 -1425
- package/sdk/platform/Order/OrderPlatformValidator.js +5 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +22 -11
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +287 -56
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
- package/sdk/platform/Payment/PaymentPlatformClient.js +263 -48
- package/sdk/platform/Payment/PaymentPlatformModel.js +122 -122
- package/sdk/platform/PlatformApplicationClient.d.ts +2959 -2787
- package/sdk/platform/PlatformApplicationClient.js +3420 -3212
- package/sdk/platform/PlatformClient.d.ts +2959 -2787
- package/sdk/platform/PlatformClient.js +3420 -3212
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +308 -54
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +94 -16
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +571 -96
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +296 -48
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
- package/sdk/platform/Webhook/WebhookPlatformClient.js +157 -30
- package/sdk/public/Configuration/ConfigurationPublicClient.js +51 -8
- package/sdk/public/Inventory/InventoryPublicClient.js +149 -26
- package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
|
@@ -2,65 +2,69 @@ export = OrderModel;
|
|
|
2
2
|
declare class OrderModel {
|
|
3
3
|
static FilterInfoOption(): any;
|
|
4
4
|
static FiltersInfo(): any;
|
|
5
|
-
static UserDataInfo(): any;
|
|
6
5
|
static PaymentModeInfo(): any;
|
|
7
|
-
static ShipmentItemFulFillingStore(): any;
|
|
8
|
-
static Prices(): any;
|
|
9
|
-
static ShipmentStatus(): any;
|
|
10
6
|
static GSTDetailsData(): any;
|
|
7
|
+
static Prices(): any;
|
|
11
8
|
static PlatformItem(): any;
|
|
12
9
|
static BagUnit(): any;
|
|
10
|
+
static ShipmentItemFulFillingStore(): any;
|
|
11
|
+
static ShipmentStatus(): any;
|
|
12
|
+
static UserDataInfo(): any;
|
|
13
13
|
static ShipmentItem(): any;
|
|
14
14
|
static ShipmentInternalPlatformViewResponse(): any;
|
|
15
15
|
static Error(): any;
|
|
16
|
-
static BagStateMapper(): any;
|
|
17
|
-
static BagStatusHistory(): any;
|
|
18
|
-
static TrackingList(): any;
|
|
19
16
|
static DPDetailsData(): any;
|
|
17
|
+
static LockData(): any;
|
|
18
|
+
static Formatted(): any;
|
|
19
|
+
static DebugInfo(): any;
|
|
20
|
+
static EinvoiceInfo(): any;
|
|
21
|
+
static BuyerDetails(): any;
|
|
22
|
+
static ShipmentTimeStamp(): any;
|
|
23
|
+
static ShipmentMeta(): any;
|
|
24
|
+
static PDFLinks(): any;
|
|
25
|
+
static AffiliateMeta(): any;
|
|
26
|
+
static AffiliateDetails(): any;
|
|
27
|
+
static FulfillingStore(): any;
|
|
28
|
+
static UserDetailsData(): any;
|
|
20
29
|
static Dimensions(): any;
|
|
21
30
|
static Meta(): any;
|
|
22
31
|
static ShipmentPayments(): any;
|
|
32
|
+
static TrackingList(): any;
|
|
23
33
|
static InvoiceInfo(): any;
|
|
24
|
-
static ShipmentStatusData(): any;
|
|
25
|
-
static CurrentStatus(): any;
|
|
26
|
-
static Identifier(): any;
|
|
27
|
-
static FinancialBreakup(): any;
|
|
28
|
-
static BagGST(): any;
|
|
29
|
-
static OrderBagArticle(): any;
|
|
30
|
-
static PlatformDeliveryAddress(): any;
|
|
31
34
|
static BagConfigs(): any;
|
|
35
|
+
static OrderBagArticle(): any;
|
|
32
36
|
static ItemCriterias(): any;
|
|
33
37
|
static BuyRules(): any;
|
|
34
38
|
static DiscountRules(): any;
|
|
35
39
|
static AppliedPromos(): any;
|
|
40
|
+
static BagStateMapper(): any;
|
|
41
|
+
static CurrentStatus(): any;
|
|
36
42
|
static OrderBrandName(): any;
|
|
43
|
+
static PlatformDeliveryAddress(): any;
|
|
44
|
+
static Identifier(): any;
|
|
45
|
+
static FinancialBreakup(): any;
|
|
46
|
+
static BagGST(): any;
|
|
37
47
|
static OrderBags(): any;
|
|
48
|
+
static ShipmentStatusData(): any;
|
|
49
|
+
static BagStatusHistory(): any;
|
|
38
50
|
static OrderingStoreDetails(): any;
|
|
39
|
-
static
|
|
40
|
-
static FulfillingStore(): any;
|
|
41
|
-
static ShipmentTimeStamp(): any;
|
|
42
|
-
static LockData(): any;
|
|
43
|
-
static DebugInfo(): any;
|
|
44
|
-
static EInvoice(): any;
|
|
45
|
-
static EinvoiceInfo(): any;
|
|
46
|
-
static BuyerDetails(): any;
|
|
47
|
-
static Formatted(): any;
|
|
48
|
-
static ShipmentMeta(): any;
|
|
49
|
-
static PDFLinks(): any;
|
|
50
|
-
static AffiliateMeta(): any;
|
|
51
|
-
static AffiliateDetails(): any;
|
|
51
|
+
static CompanyDetails(): any;
|
|
52
52
|
static OrderDetailsData(): any;
|
|
53
53
|
static PlatformShipment(): any;
|
|
54
54
|
static ShipmentInfoResponse(): any;
|
|
55
|
+
static TransactionData(): any;
|
|
56
|
+
static BillingStaffDetails(): any;
|
|
57
|
+
static PlatformUserDetails(): any;
|
|
55
58
|
static OrderMeta(): any;
|
|
59
|
+
static TaxDetails(): any;
|
|
56
60
|
static OrderDict(): any;
|
|
57
61
|
static ShipmentDetailsResponse(): any;
|
|
58
62
|
static SubLane(): any;
|
|
59
63
|
static SuperLane(): any;
|
|
60
64
|
static LaneConfigResponse(): any;
|
|
61
65
|
static Page(): any;
|
|
62
|
-
static PlatformBreakupValues(): any;
|
|
63
66
|
static PlatformChannel(): any;
|
|
67
|
+
static PlatformBreakupValues(): any;
|
|
64
68
|
static PlatformOrderItems(): any;
|
|
65
69
|
static OrderListingResponse(): any;
|
|
66
70
|
static Options(): any;
|
|
@@ -80,8 +84,8 @@ declare class OrderModel {
|
|
|
80
84
|
static FileUploadResponse(): any;
|
|
81
85
|
static URL(): any;
|
|
82
86
|
static FileResponse(): any;
|
|
83
|
-
static BulkListingPage(): any;
|
|
84
87
|
static bulkListingData(): any;
|
|
88
|
+
static BulkListingPage(): any;
|
|
85
89
|
static BulkListingResponse(): any;
|
|
86
90
|
static QuestionSet(): any;
|
|
87
91
|
static Reason(): any;
|
|
@@ -90,28 +94,28 @@ declare class OrderModel {
|
|
|
90
94
|
static BulkActionResponse(): any;
|
|
91
95
|
static BulkActionDetailsDataField(): any;
|
|
92
96
|
static BulkActionDetailsResponse(): any;
|
|
93
|
-
static
|
|
94
|
-
static B2BPODetails(): any;
|
|
95
|
-
static BagMeta(): any;
|
|
97
|
+
static AffiliateBagDetails(): any;
|
|
96
98
|
static ReturnConfig(): any;
|
|
97
99
|
static Weight(): any;
|
|
98
100
|
static Article(): any;
|
|
101
|
+
static B2BPODetails(): any;
|
|
102
|
+
static BagMeta(): any;
|
|
103
|
+
static Dates(): any;
|
|
104
|
+
static Brand(): any;
|
|
105
|
+
static Attributes(): any;
|
|
106
|
+
static Item(): any;
|
|
99
107
|
static BagReturnableCancelableStatus(): any;
|
|
108
|
+
static BagGSTDetails(): any;
|
|
100
109
|
static ArticleDetails(): any;
|
|
101
|
-
static Document(): any;
|
|
102
|
-
static StoreDocuments(): any;
|
|
103
|
-
static EInvoicePortalDetails(): any;
|
|
104
110
|
static StoreEwaybill(): any;
|
|
105
111
|
static StoreEinvoice(): any;
|
|
106
112
|
static StoreGstCredentials(): any;
|
|
113
|
+
static EInvoicePortalDetails(): any;
|
|
114
|
+
static Document(): any;
|
|
115
|
+
static StoreDocuments(): any;
|
|
107
116
|
static StoreMeta(): any;
|
|
108
117
|
static StoreAddress(): any;
|
|
109
118
|
static Store(): any;
|
|
110
|
-
static AffiliateBagDetails(): any;
|
|
111
|
-
static Dates(): any;
|
|
112
|
-
static Brand(): any;
|
|
113
|
-
static Attributes(): any;
|
|
114
|
-
static Item(): any;
|
|
115
119
|
static BagDetailsPlatformResponse(): any;
|
|
116
120
|
static ErrorResponse(): any;
|
|
117
121
|
static Page1(): any;
|
|
@@ -124,53 +128,53 @@ declare class OrderModel {
|
|
|
124
128
|
static StoreReassignResponse(): any;
|
|
125
129
|
static Entities(): any;
|
|
126
130
|
static UpdateShipmentLockPayload(): any;
|
|
127
|
-
static OriginalFilter(): any;
|
|
128
131
|
static Bags(): any;
|
|
132
|
+
static OriginalFilter(): any;
|
|
129
133
|
static CheckResponse(): any;
|
|
130
134
|
static UpdateShipmentLockResponse(): any;
|
|
131
135
|
static AnnouncementResponse(): any;
|
|
132
136
|
static AnnouncementsResponse(): any;
|
|
133
137
|
static BaseResponse(): any;
|
|
134
138
|
static Click2CallResponse(): any;
|
|
139
|
+
static EntitiesDataUpdates(): any;
|
|
135
140
|
static ProductsDataUpdatesFilters(): any;
|
|
136
141
|
static ProductsDataUpdates(): any;
|
|
137
|
-
static EntitiesDataUpdates(): any;
|
|
138
142
|
static DataUpdates(): any;
|
|
139
|
-
static
|
|
143
|
+
static EntityReasonData(): any;
|
|
144
|
+
static EntitiesReasons(): any;
|
|
140
145
|
static ProductsReasonsData(): any;
|
|
141
146
|
static ProductsReasonsFilters(): any;
|
|
142
147
|
static ProductsReasons(): any;
|
|
143
|
-
static EntityReasonData(): any;
|
|
144
|
-
static EntitiesReasons(): any;
|
|
145
148
|
static ReasonsData(): any;
|
|
149
|
+
static Products(): any;
|
|
146
150
|
static ShipmentsRequest(): any;
|
|
147
151
|
static StatuesRequest(): any;
|
|
148
152
|
static UpdateShipmentStatusRequest(): any;
|
|
149
153
|
static ShipmentsResponse(): any;
|
|
150
154
|
static StatuesResponse(): any;
|
|
151
155
|
static UpdateShipmentStatusResponseBody(): any;
|
|
152
|
-
static
|
|
153
|
-
static AffiliateAppConfig(): any;
|
|
154
|
-
static AffiliateInventoryArticleAssignmentConfig(): any;
|
|
155
|
-
static AffiliateInventoryPaymentConfig(): any;
|
|
156
|
-
static AffiliateInventoryStoreConfig(): any;
|
|
156
|
+
static AffiliateStoreIdMapping(): any;
|
|
157
157
|
static AffiliateInventoryOrderConfig(): any;
|
|
158
|
+
static AffiliateInventoryPaymentConfig(): any;
|
|
158
159
|
static AffiliateInventoryLogisticsConfig(): any;
|
|
160
|
+
static AffiliateInventoryArticleAssignmentConfig(): any;
|
|
161
|
+
static AffiliateInventoryStoreConfig(): any;
|
|
159
162
|
static AffiliateInventoryConfig(): any;
|
|
163
|
+
static AffiliateAppConfigMeta(): any;
|
|
164
|
+
static AffiliateAppConfig(): any;
|
|
160
165
|
static AffiliateConfig(): any;
|
|
161
166
|
static Affiliate(): any;
|
|
162
|
-
static AffiliateStoreIdMapping(): any;
|
|
163
167
|
static OrderConfig(): any;
|
|
164
168
|
static OrderUser(): any;
|
|
169
|
+
static MarketPlacePdf(): any;
|
|
170
|
+
static AffiliateBag(): any;
|
|
171
|
+
static OrderPriority(): any;
|
|
165
172
|
static UserData(): any;
|
|
166
173
|
static ArticleDetails1(): any;
|
|
167
174
|
static LocationDetails(): any;
|
|
168
175
|
static ShipmentDetails(): any;
|
|
169
176
|
static ShipmentConfig(): any;
|
|
170
177
|
static ShipmentData(): any;
|
|
171
|
-
static MarketPlacePdf(): any;
|
|
172
|
-
static AffiliateBag(): any;
|
|
173
|
-
static OrderPriority(): any;
|
|
174
178
|
static OrderInfo(): any;
|
|
175
179
|
static CreateOrderPayload(): any;
|
|
176
180
|
static CreateOrderResponse(): any;
|
|
@@ -188,28 +192,28 @@ declare class OrderModel {
|
|
|
188
192
|
static PostShipmentHistory(): any;
|
|
189
193
|
static SmsDataPayload(): any;
|
|
190
194
|
static SendSmsPayload(): any;
|
|
191
|
-
static OrderDetails(): any;
|
|
192
195
|
static Meta1(): any;
|
|
193
196
|
static ShipmentDetail(): any;
|
|
197
|
+
static OrderDetails(): any;
|
|
194
198
|
static OrderStatusData(): any;
|
|
195
199
|
static OrderStatusResult(): any;
|
|
196
200
|
static ManualAssignDPToShipment(): any;
|
|
197
201
|
static ManualAssignDPToShipmentResponse(): any;
|
|
198
|
-
static TaxInfo(): any;
|
|
199
|
-
static BillingInfo(): any;
|
|
200
|
-
static ShippingInfo(): any;
|
|
201
202
|
static PaymentMethod(): any;
|
|
202
203
|
static PaymentInfo(): any;
|
|
204
|
+
static ShippingInfo(): any;
|
|
203
205
|
static Tax(): any;
|
|
204
206
|
static Charge(): any;
|
|
205
|
-
static ProcessingDates(): any;
|
|
206
207
|
static LineItem(): any;
|
|
208
|
+
static ProcessingDates(): any;
|
|
207
209
|
static Shipment(): any;
|
|
210
|
+
static BillingInfo(): any;
|
|
211
|
+
static TaxInfo(): any;
|
|
208
212
|
static CreateOrderAPI(): any;
|
|
209
213
|
static CreateOrderErrorReponse(): any;
|
|
214
|
+
static DpConfiguration(): any;
|
|
210
215
|
static PaymentMethods(): any;
|
|
211
216
|
static CreateChannelPaymentInfo(): any;
|
|
212
|
-
static DpConfiguration(): any;
|
|
213
217
|
static CreateChannelConfig(): any;
|
|
214
218
|
static CreateChannelConfigData(): any;
|
|
215
219
|
static CreateChannelConifgErrorResponse(): any;
|