@gofynd/fdk-client-javascript 1.0.0 → 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 +393 -393
- package/documentation/application/CONTENT.md +15 -1
- package/documentation/application/ORDER.md +268 -268
- package/documentation/application/PAYMENT.md +249 -249
- package/documentation/application/POSCART.md +297 -297
- package/documentation/platform/CART.md +499 -499
- package/documentation/platform/CATALOG.md +3497 -3097
- package/documentation/platform/COMPANYPROFILE.md +207 -207
- package/documentation/platform/CONTENT.md +123 -1
- package/documentation/platform/ORDER.md +1518 -1324
- package/documentation/platform/PARTNER.md +7 -7
- package/documentation/platform/PAYMENT.md +96 -96
- package/index.js +7 -1
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.js +865 -52
- package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
- package/sdk/application/Cart/CartApplicationModel.js +335 -335
- package/sdk/application/Cart/CartApplicationValidator.js +1 -0
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
- package/sdk/application/Catalog/CatalogApplicationClient.js +1034 -60
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +19 -19
- package/sdk/application/Catalog/CatalogApplicationModel.js +532 -532
- package/sdk/application/Catalog/CatalogApplicationValidator.js +1 -0
- package/sdk/application/Common/CommonApplicationClient.js +66 -4
- package/sdk/application/Common/CommonApplicationValidator.js +1 -0
- package/sdk/application/Communication/CommunicationApplicationClient.js +108 -6
- package/sdk/application/Communication/CommunicationApplicationValidator.js +1 -0
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +558 -32
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
- package/sdk/application/Content/ContentApplicationClient.js +621 -38
- package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
- package/sdk/application/Content/ContentApplicationModel.js +11 -1
- package/sdk/application/Content/ContentApplicationValidator.js +1 -0
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +101 -6
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +1 -0
- package/sdk/application/Lead/LeadApplicationClient.js +229 -14
- package/sdk/application/Lead/LeadApplicationValidator.js +1 -0
- package/sdk/application/Logistic/LogisticApplicationClient.js +134 -8
- package/sdk/application/Logistic/LogisticApplicationValidator.js +1 -0
- package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
- package/sdk/application/Order/OrderApplicationClient.js +403 -24
- package/sdk/application/Order/OrderApplicationModel.d.ts +20 -20
- package/sdk/application/Order/OrderApplicationModel.js +334 -334
- package/sdk/application/Order/OrderApplicationValidator.js +1 -0
- package/sdk/application/Payment/PaymentApplicationClient.js +1381 -78
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +2 -2
- package/sdk/application/Payment/PaymentApplicationModel.js +350 -350
- package/sdk/application/Payment/PaymentApplicationValidator.js +1 -0
- package/sdk/application/PosCart/PosCartApplicationClient.js +914 -54
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
- package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
- package/sdk/application/PosCart/PosCartApplicationValidator.js +1 -0
- package/sdk/application/Rewards/RewardsApplicationClient.js +235 -14
- package/sdk/application/Rewards/RewardsApplicationValidator.js +1 -0
- package/sdk/application/Share/ShareApplicationClient.js +226 -14
- package/sdk/application/Share/ShareApplicationValidator.js +1 -0
- package/sdk/application/Theme/ThemeApplicationClient.js +130 -8
- package/sdk/application/Theme/ThemeApplicationValidator.js +1 -0
- package/sdk/application/User/UserApplicationClient.js +1133 -70
- package/sdk/application/User/UserApplicationValidator.js +1 -0
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +287 -16
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +153 -8
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +141 -8
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +429 -24
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +617 -34
- package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
- package/sdk/platform/Cart/CartPlatformModel.js +617 -617
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +191 -138
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2202 -302
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +11 -11
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +45 -45
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +344 -226
- package/sdk/platform/Catalog/CatalogPlatformClient.js +3282 -488
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +110 -100
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2073 -1795
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +23 -21
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +103 -84
- package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
- package/sdk/platform/Common/CommonPlatformClient.js +73 -4
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1499 -80
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +41 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +486 -26
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +9 -9
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +274 -274
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1022 -56
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +693 -36
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2446 -140
- 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 +400 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +148 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +214 -12
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
- package/sdk/platform/Inventory/InventoryPlatformClient.js +449 -24
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +447 -26
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
- package/sdk/platform/Lead/LeadPlatformClient.js +384 -22
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +125 -6
- package/sdk/platform/Order/OrderPlatformClient.d.ts +108 -47
- package/sdk/platform/Order/OrderPlatformClient.js +1641 -100
- package/sdk/platform/Order/OrderPlatformModel.d.ts +69 -58
- package/sdk/platform/Order/OrderPlatformModel.js +1485 -1493
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +2 -1
- package/sdk/platform/Order/OrderPlatformValidator.js +15 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +74 -4
- 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 +418 -22
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
- package/sdk/platform/Payment/PaymentPlatformClient.js +374 -20
- package/sdk/platform/Payment/PaymentPlatformModel.js +139 -139
- package/sdk/platform/PlatformApplicationClient.d.ts +2973 -2827
- package/sdk/platform/PlatformApplicationClient.js +3461 -3263
- package/sdk/platform/PlatformClient.d.ts +2973 -2827
- package/sdk/platform/PlatformClient.js +3461 -3263
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +449 -26
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
- package/sdk/platform/Share/SharePlatformApplicationClient.js +139 -8
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +816 -48
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +417 -24
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
- package/sdk/platform/Webhook/WebhookPlatformClient.js +229 -12
- package/sdk/public/Configuration/ConfigurationPublicClient.js +72 -4
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +3 -1
- package/sdk/public/Inventory/InventoryPublicClient.js +210 -12
- package/sdk/public/Inventory/InventoryPublicValidator.js +3 -1
- package/sdk/public/Webhook/WebhookPublicClient.js +74 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +3 -1
|
@@ -2,43 +2,61 @@ export = OrderModel;
|
|
|
2
2
|
declare class OrderModel {
|
|
3
3
|
static FilterInfoOption(): any;
|
|
4
4
|
static FiltersInfo(): any;
|
|
5
|
-
static ShipmentItemFulFillingStore(): any;
|
|
6
|
-
static ShipmentStatus(): any;
|
|
7
5
|
static PaymentModeInfo(): any;
|
|
8
|
-
static PlatformItem(): any;
|
|
9
|
-
static Prices(): any;
|
|
10
6
|
static GSTDetailsData(): any;
|
|
7
|
+
static Prices(): any;
|
|
8
|
+
static PlatformItem(): any;
|
|
11
9
|
static BagUnit(): any;
|
|
10
|
+
static ShipmentItemFulFillingStore(): any;
|
|
11
|
+
static ShipmentStatus(): any;
|
|
12
12
|
static UserDataInfo(): any;
|
|
13
13
|
static ShipmentItem(): any;
|
|
14
14
|
static ShipmentInternalPlatformViewResponse(): any;
|
|
15
15
|
static Error(): any;
|
|
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;
|
|
16
27
|
static FulfillingStore(): any;
|
|
28
|
+
static UserDetailsData(): any;
|
|
29
|
+
static Dimensions(): any;
|
|
30
|
+
static Meta(): any;
|
|
31
|
+
static ShipmentPayments(): any;
|
|
32
|
+
static TrackingList(): any;
|
|
33
|
+
static InvoiceInfo(): any;
|
|
17
34
|
static BagConfigs(): any;
|
|
18
|
-
static
|
|
35
|
+
static OrderBagArticle(): any;
|
|
19
36
|
static ItemCriterias(): any;
|
|
20
37
|
static BuyRules(): any;
|
|
38
|
+
static DiscountRules(): any;
|
|
21
39
|
static AppliedPromos(): any;
|
|
22
|
-
static BagGST(): any;
|
|
23
|
-
static OrderBagArticle(): any;
|
|
24
40
|
static BagStateMapper(): any;
|
|
25
41
|
static CurrentStatus(): any;
|
|
42
|
+
static OrderBrandName(): any;
|
|
43
|
+
static PlatformDeliveryAddress(): any;
|
|
26
44
|
static Identifier(): any;
|
|
27
45
|
static FinancialBreakup(): any;
|
|
28
|
-
static
|
|
29
|
-
static OrderBrandName(): any;
|
|
46
|
+
static BagGST(): any;
|
|
30
47
|
static OrderBags(): any;
|
|
31
|
-
static ShipmentPayments(): any;
|
|
32
|
-
static UserDetailsData(): any;
|
|
33
|
-
static BagStatusHistory(): any;
|
|
34
|
-
static OrderDetailsData(): any;
|
|
35
|
-
static TrackingList(): any;
|
|
36
|
-
static DPDetailsData(): any;
|
|
37
48
|
static ShipmentStatusData(): any;
|
|
38
|
-
static
|
|
49
|
+
static BagStatusHistory(): any;
|
|
39
50
|
static OrderingStoreDetails(): any;
|
|
51
|
+
static CompanyDetails(): any;
|
|
52
|
+
static OrderDetailsData(): any;
|
|
40
53
|
static PlatformShipment(): any;
|
|
54
|
+
static ShipmentInfoResponse(): any;
|
|
55
|
+
static TransactionData(): any;
|
|
56
|
+
static BillingStaffDetails(): any;
|
|
57
|
+
static PlatformUserDetails(): any;
|
|
41
58
|
static OrderMeta(): any;
|
|
59
|
+
static TaxDetails(): any;
|
|
42
60
|
static OrderDict(): any;
|
|
43
61
|
static ShipmentDetailsResponse(): any;
|
|
44
62
|
static SubLane(): any;
|
|
@@ -63,11 +81,11 @@ declare class OrderModel {
|
|
|
63
81
|
static JioCodeUpsertResponse(): any;
|
|
64
82
|
static BulkInvoicingResponse(): any;
|
|
65
83
|
static BulkInvoiceLabelResponse(): any;
|
|
66
|
-
static URL(): any;
|
|
67
84
|
static FileUploadResponse(): any;
|
|
85
|
+
static URL(): any;
|
|
68
86
|
static FileResponse(): any;
|
|
69
|
-
static BulkListingPage(): any;
|
|
70
87
|
static bulkListingData(): any;
|
|
88
|
+
static BulkListingPage(): any;
|
|
71
89
|
static BulkListingResponse(): any;
|
|
72
90
|
static QuestionSet(): any;
|
|
73
91
|
static Reason(): any;
|
|
@@ -76,40 +94,28 @@ declare class OrderModel {
|
|
|
76
94
|
static BulkActionResponse(): any;
|
|
77
95
|
static BulkActionDetailsDataField(): any;
|
|
78
96
|
static BulkActionDetailsResponse(): any;
|
|
79
|
-
static AffiliateMeta(): any;
|
|
80
97
|
static AffiliateBagDetails(): any;
|
|
81
|
-
static BagGSTDetails(): any;
|
|
82
98
|
static ReturnConfig(): any;
|
|
83
|
-
static Dimensions(): any;
|
|
84
99
|
static Weight(): any;
|
|
85
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;
|
|
107
|
+
static BagReturnableCancelableStatus(): any;
|
|
108
|
+
static BagGSTDetails(): any;
|
|
86
109
|
static ArticleDetails(): any;
|
|
87
|
-
static
|
|
88
|
-
static
|
|
89
|
-
static
|
|
90
|
-
static ShipmentTimeStamp(): any;
|
|
91
|
-
static BuyerDetails(): any;
|
|
92
|
-
static DebugInfo(): any;
|
|
93
|
-
static Formatted(): any;
|
|
94
|
-
static ShipmentMeta(): any;
|
|
95
|
-
static PDFLinks(): any;
|
|
96
|
-
static AffiliateDetails(): any;
|
|
97
|
-
static StoreAddress(): any;
|
|
110
|
+
static StoreEwaybill(): any;
|
|
111
|
+
static StoreEinvoice(): any;
|
|
112
|
+
static StoreGstCredentials(): any;
|
|
98
113
|
static EInvoicePortalDetails(): any;
|
|
99
114
|
static Document(): any;
|
|
100
115
|
static StoreDocuments(): any;
|
|
101
|
-
static StoreEinvoice(): any;
|
|
102
|
-
static StoreEwaybill(): any;
|
|
103
|
-
static StoreGstCredentials(): any;
|
|
104
116
|
static StoreMeta(): any;
|
|
117
|
+
static StoreAddress(): any;
|
|
105
118
|
static Store(): any;
|
|
106
|
-
static Attributes(): any;
|
|
107
|
-
static Item(): any;
|
|
108
|
-
static B2BPODetails(): any;
|
|
109
|
-
static BagMeta(): any;
|
|
110
|
-
static Dates(): any;
|
|
111
|
-
static Brand(): any;
|
|
112
|
-
static BagReturnableCancelableStatus(): any;
|
|
113
119
|
static BagDetailsPlatformResponse(): any;
|
|
114
120
|
static ErrorResponse(): any;
|
|
115
121
|
static Page1(): any;
|
|
@@ -136,8 +142,8 @@ declare class OrderModel {
|
|
|
136
142
|
static DataUpdates(): any;
|
|
137
143
|
static EntityReasonData(): any;
|
|
138
144
|
static EntitiesReasons(): any;
|
|
139
|
-
static ProductsReasonsFilters(): any;
|
|
140
145
|
static ProductsReasonsData(): any;
|
|
146
|
+
static ProductsReasonsFilters(): any;
|
|
141
147
|
static ProductsReasons(): any;
|
|
142
148
|
static ReasonsData(): any;
|
|
143
149
|
static Products(): any;
|
|
@@ -147,26 +153,26 @@ declare class OrderModel {
|
|
|
147
153
|
static ShipmentsResponse(): any;
|
|
148
154
|
static StatuesResponse(): any;
|
|
149
155
|
static UpdateShipmentStatusResponseBody(): any;
|
|
150
|
-
static
|
|
151
|
-
static
|
|
156
|
+
static AffiliateStoreIdMapping(): any;
|
|
157
|
+
static AffiliateInventoryOrderConfig(): any;
|
|
152
158
|
static AffiliateInventoryPaymentConfig(): any;
|
|
159
|
+
static AffiliateInventoryLogisticsConfig(): any;
|
|
160
|
+
static AffiliateInventoryArticleAssignmentConfig(): any;
|
|
153
161
|
static AffiliateInventoryStoreConfig(): any;
|
|
154
|
-
static AffiliateInventoryOrderConfig(): any;
|
|
155
162
|
static AffiliateInventoryConfig(): any;
|
|
156
163
|
static AffiliateAppConfigMeta(): any;
|
|
157
164
|
static AffiliateAppConfig(): any;
|
|
158
165
|
static AffiliateConfig(): any;
|
|
159
166
|
static Affiliate(): any;
|
|
160
|
-
static AffiliateStoreIdMapping(): any;
|
|
161
167
|
static OrderConfig(): any;
|
|
162
168
|
static OrderUser(): any;
|
|
163
|
-
static UserData(): any;
|
|
164
|
-
static OrderPriority(): any;
|
|
165
169
|
static MarketPlacePdf(): any;
|
|
166
170
|
static AffiliateBag(): any;
|
|
171
|
+
static OrderPriority(): any;
|
|
172
|
+
static UserData(): any;
|
|
167
173
|
static ArticleDetails1(): any;
|
|
168
|
-
static ShipmentDetails(): any;
|
|
169
174
|
static LocationDetails(): any;
|
|
175
|
+
static ShipmentDetails(): any;
|
|
170
176
|
static ShipmentConfig(): any;
|
|
171
177
|
static ShipmentData(): any;
|
|
172
178
|
static OrderInfo(): any;
|
|
@@ -179,34 +185,39 @@ declare class OrderModel {
|
|
|
179
185
|
static HistoryDict(): any;
|
|
180
186
|
static ShipmentHistoryResponse(): any;
|
|
181
187
|
static ErrorDetail(): any;
|
|
188
|
+
static PostHistoryData(): any;
|
|
189
|
+
static PostHistoryFilters(): any;
|
|
190
|
+
static PostActivityHistory(): any;
|
|
191
|
+
static PostHistoryDict(): any;
|
|
192
|
+
static PostShipmentHistory(): any;
|
|
182
193
|
static SmsDataPayload(): any;
|
|
183
194
|
static SendSmsPayload(): any;
|
|
184
|
-
static
|
|
185
|
-
static Meta(): any;
|
|
195
|
+
static Meta1(): any;
|
|
186
196
|
static ShipmentDetail(): any;
|
|
197
|
+
static OrderDetails(): any;
|
|
187
198
|
static OrderStatusData(): any;
|
|
188
199
|
static OrderStatusResult(): any;
|
|
189
200
|
static ManualAssignDPToShipment(): any;
|
|
190
201
|
static ManualAssignDPToShipmentResponse(): any;
|
|
191
|
-
static
|
|
202
|
+
static PaymentMethod(): any;
|
|
203
|
+
static PaymentInfo(): any;
|
|
192
204
|
static ShippingInfo(): any;
|
|
193
205
|
static Tax(): any;
|
|
194
206
|
static Charge(): any;
|
|
195
|
-
static ProcessingDates(): any;
|
|
196
207
|
static LineItem(): any;
|
|
208
|
+
static ProcessingDates(): any;
|
|
197
209
|
static Shipment(): any;
|
|
198
|
-
static PaymentMethod(): any;
|
|
199
|
-
static PaymentInfo(): any;
|
|
200
210
|
static BillingInfo(): any;
|
|
211
|
+
static TaxInfo(): any;
|
|
201
212
|
static CreateOrderAPI(): any;
|
|
202
213
|
static CreateOrderErrorReponse(): any;
|
|
214
|
+
static DpConfiguration(): any;
|
|
203
215
|
static PaymentMethods(): any;
|
|
204
216
|
static CreateChannelPaymentInfo(): any;
|
|
205
|
-
static DpConfiguration(): any;
|
|
206
217
|
static CreateChannelConfig(): any;
|
|
207
218
|
static CreateChannelConfigData(): any;
|
|
208
|
-
static CreateChannelConfigResponse(): any;
|
|
209
219
|
static CreateChannelConifgErrorResponse(): any;
|
|
220
|
+
static CreateChannelConfigResponse(): any;
|
|
210
221
|
static UploadConsent(): any;
|
|
211
222
|
static PlatformOrderUpdate(): any;
|
|
212
223
|
static ResponseDetail(): any;
|