@gofynd/fdk-client-javascript 0.1.35
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/.github/workflows/on_create_release.yml +23 -0
- package/.github/workflows/on_merge_main.yml +38 -0
- package/.github/workflows/on_pull_request.yml +35 -0
- package/.prettierrc +5 -0
- package/LICENSE +21 -0
- package/README.md +118 -0
- package/application.d.ts +3 -0
- package/application.js +6 -0
- package/common.d.ts +4 -0
- package/common.js +9 -0
- package/documentation/application/CART.md +7290 -0
- package/documentation/application/CATALOG.md +9570 -0
- package/documentation/application/COMMON.md +448 -0
- package/documentation/application/COMMUNICATION.md +463 -0
- package/documentation/application/CONFIGURATION.md +2902 -0
- package/documentation/application/CONTENT.md +3350 -0
- package/documentation/application/FILESTORAGE.md +491 -0
- package/documentation/application/LEAD.md +1891 -0
- package/documentation/application/LOGISTIC.md +439 -0
- package/documentation/application/ORDER.md +3428 -0
- package/documentation/application/PAYMENT.md +5035 -0
- package/documentation/application/POSCART.md +7889 -0
- package/documentation/application/README.md +21 -0
- package/documentation/application/REWARDS.md +714 -0
- package/documentation/application/SHARE.md +729 -0
- package/documentation/application/THEME.md +5796 -0
- package/documentation/application/USER.md +4326 -0
- package/documentation/platform/ANALYTICS.md +1150 -0
- package/documentation/platform/AUDITTRAIL.md +572 -0
- package/documentation/platform/BILLING.md +2396 -0
- package/documentation/platform/CART.md +5539 -0
- package/documentation/platform/CATALOG.md +21624 -0
- package/documentation/platform/COMMON.md +448 -0
- package/documentation/platform/COMMUNICATION.md +5714 -0
- package/documentation/platform/COMPANYPROFILE.md +2141 -0
- package/documentation/platform/CONFIGURATION.md +7335 -0
- package/documentation/platform/CONTENT.md +8989 -0
- package/documentation/platform/DISCOUNT.md +773 -0
- package/documentation/platform/FILESTORAGE.md +994 -0
- package/documentation/platform/INVENTORY.md +1775 -0
- package/documentation/platform/LEAD.md +4736 -0
- package/documentation/platform/ORDER.md +3764 -0
- package/documentation/platform/PARTNER.md +216 -0
- package/documentation/platform/PAYMENT.md +3444 -0
- package/documentation/platform/README.md +27 -0
- package/documentation/platform/REWARDS.md +871 -0
- package/documentation/platform/SHARE.md +602 -0
- package/documentation/platform/THEME.md +35725 -0
- package/documentation/platform/USER.md +2305 -0
- package/documentation/platform/WEBHOOK.md +587 -0
- package/documentation/public/CONFIGURATION.md +448 -0
- package/documentation/public/INVENTORY.md +686 -0
- package/documentation/public/WEBHOOK.md +348 -0
- package/index.d.ts +10 -0
- package/index.js +18 -0
- package/jest.config.d.ts +4 -0
- package/jest.config.js +6 -0
- package/package.json +35 -0
- package/platform.d.ts +3 -0
- package/platform.js +6 -0
- package/public.d.ts +3 -0
- package/public.js +6 -0
- package/sdk/application/ApplicationAPIClient.d.ts +11 -0
- package/sdk/application/ApplicationAPIClient.js +44 -0
- package/sdk/application/ApplicationClient.d.ts +40 -0
- package/sdk/application/ApplicationClient.js +84 -0
- package/sdk/application/ApplicationConfig.d.ts +19 -0
- package/sdk/application/ApplicationConfig.js +55 -0
- package/sdk/application/ApplicationModels.d.ts +826 -0
- package/sdk/application/ApplicationModels.js +10474 -0
- package/sdk/application/client/CartApplicationClient.d.ts +432 -0
- package/sdk/application/client/CartApplicationClient.js +1066 -0
- package/sdk/application/client/CatalogApplicationClient.d.ts +694 -0
- package/sdk/application/client/CatalogApplicationClient.js +1629 -0
- package/sdk/application/client/CommonApplicationClient.d.ts +38 -0
- package/sdk/application/client/CommonApplicationClient.js +105 -0
- package/sdk/application/client/CommunicationApplicationClient.d.ts +39 -0
- package/sdk/application/client/CommunicationApplicationClient.js +131 -0
- package/sdk/application/client/ConfigurationApplicationClient.d.ts +210 -0
- package/sdk/application/client/ConfigurationApplicationClient.js +649 -0
- package/sdk/application/client/ContentApplicationClient.d.ts +256 -0
- package/sdk/application/client/ContentApplicationClient.js +785 -0
- package/sdk/application/client/FileStorageApplicationClient.d.ts +88 -0
- package/sdk/application/client/FileStorageApplicationClient.js +214 -0
- package/sdk/application/client/LeadApplicationClient.d.ts +90 -0
- package/sdk/application/client/LeadApplicationClient.js +264 -0
- package/sdk/application/client/LogisticApplicationClient.d.ts +42 -0
- package/sdk/application/client/LogisticApplicationClient.js +128 -0
- package/sdk/application/client/OrderApplicationClient.d.ts +190 -0
- package/sdk/application/client/OrderApplicationClient.js +479 -0
- package/sdk/application/client/PaymentApplicationClient.d.ts +454 -0
- package/sdk/application/client/PaymentApplicationClient.js +1378 -0
- package/sdk/application/client/PosCartApplicationClient.d.ts +449 -0
- package/sdk/application/client/PosCartApplicationClient.js +1123 -0
- package/sdk/application/client/RewardsApplicationClient.d.ts +93 -0
- package/sdk/application/client/RewardsApplicationClient.js +293 -0
- package/sdk/application/client/ShareApplicationClient.d.ts +87 -0
- package/sdk/application/client/ShareApplicationClient.js +268 -0
- package/sdk/application/client/ThemeApplicationClient.d.ts +52 -0
- package/sdk/application/client/ThemeApplicationClient.js +161 -0
- package/sdk/application/client/UserApplicationClient.d.ts +446 -0
- package/sdk/application/client/UserApplicationClient.js +1275 -0
- package/sdk/application/constructUrl.d.ts +5 -0
- package/sdk/application/constructUrl.js +13 -0
- package/sdk/application/index.d.ts +2 -0
- package/sdk/application/index.js +4 -0
- package/sdk/application/models/CartValidator.d.ts +29 -0
- package/sdk/application/models/CartValidator.js +223 -0
- package/sdk/application/models/CatalogValidator.d.ts +33 -0
- package/sdk/application/models/CatalogValidator.js +233 -0
- package/sdk/application/models/CommonValidator.d.ts +5 -0
- package/sdk/application/models/CommonValidator.js +18 -0
- package/sdk/application/models/CommunicationValidator.d.ts +6 -0
- package/sdk/application/models/CommunicationValidator.js +20 -0
- package/sdk/application/models/ConfigurationValidator.d.ts +19 -0
- package/sdk/application/models/ConfigurationValidator.js +88 -0
- package/sdk/application/models/ContentValidator.d.ts +22 -0
- package/sdk/application/models/ContentValidator.js +106 -0
- package/sdk/application/models/FileStorageValidator.d.ts +6 -0
- package/sdk/application/models/FileStorageValidator.js +24 -0
- package/sdk/application/models/LeadValidator.d.ts +10 -0
- package/sdk/application/models/LeadValidator.js +48 -0
- package/sdk/application/models/LogisticValidator.d.ts +6 -0
- package/sdk/application/models/LogisticValidator.js +22 -0
- package/sdk/application/models/OrderValidator.d.ts +15 -0
- package/sdk/application/models/OrderValidator.js +87 -0
- package/sdk/application/models/PaymentValidator.d.ts +40 -0
- package/sdk/application/models/PaymentValidator.js +235 -0
- package/sdk/application/models/PosCartValidator.d.ts +30 -0
- package/sdk/application/models/PosCartValidator.js +232 -0
- package/sdk/application/models/RewardsValidator.d.ts +10 -0
- package/sdk/application/models/RewardsValidator.js +43 -0
- package/sdk/application/models/ShareValidator.d.ts +10 -0
- package/sdk/application/models/ShareValidator.js +44 -0
- package/sdk/application/models/ThemeValidator.d.ts +7 -0
- package/sdk/application/models/ThemeValidator.js +27 -0
- package/sdk/application/models/UserValidator.d.ts +38 -0
- package/sdk/application/models/UserValidator.js +233 -0
- package/sdk/common/AxiosHelper.d.ts +1 -0
- package/sdk/common/AxiosHelper.js +141 -0
- package/sdk/common/Constant.d.ts +294 -0
- package/sdk/common/Constant.js +332 -0
- package/sdk/common/FDKError.d.ts +26 -0
- package/sdk/common/FDKError.js +51 -0
- package/sdk/common/Logger.d.ts +2 -0
- package/sdk/common/Logger.js +85 -0
- package/sdk/common/Paginator.d.ts +16 -0
- package/sdk/common/Paginator.js +26 -0
- package/sdk/common/RequestSigner.d.ts +1 -0
- package/sdk/common/RequestSigner.js +306 -0
- package/sdk/common/Utility.d.ts +9 -0
- package/sdk/common/Utility.js +86 -0
- package/sdk/common/utils.d.ts +14 -0
- package/sdk/common/utils.js +165 -0
- package/sdk/platform/OAuthClient.d.ts +26 -0
- package/sdk/platform/OAuthClient.js +221 -0
- package/sdk/platform/PlatformAPIClient.d.ts +12 -0
- package/sdk/platform/PlatformAPIClient.js +43 -0
- package/sdk/platform/PlatformApplicationClient.d.ts +24398 -0
- package/sdk/platform/PlatformApplicationClient.js +23185 -0
- package/sdk/platform/PlatformApplicationModels.d.ts +333 -0
- package/sdk/platform/PlatformApplicationModels.js +21262 -0
- package/sdk/platform/PlatformClient.d.ts +9535 -0
- package/sdk/platform/PlatformClient.js +12336 -0
- package/sdk/platform/PlatformConfig.d.ts +29 -0
- package/sdk/platform/PlatformConfig.js +36 -0
- package/sdk/platform/PlatformModels.d.ts +1396 -0
- package/sdk/platform/PlatformModels.js +19222 -0
- package/sdk/platform/client/AnalyticsPlatformClient.d.ts +84 -0
- package/sdk/platform/client/AnalyticsPlatformClient.js +215 -0
- package/sdk/platform/client/AuditTrailPlatformClient.d.ts +38 -0
- package/sdk/platform/client/AuditTrailPlatformClient.js +133 -0
- package/sdk/platform/client/BillingPlatformClient.d.ts +109 -0
- package/sdk/platform/client/BillingPlatformClient.js +381 -0
- package/sdk/platform/client/CatalogPlatformClient.d.ts +806 -0
- package/sdk/platform/client/CatalogPlatformClient.js +2462 -0
- package/sdk/platform/client/CommonPlatformClient.d.ts +30 -0
- package/sdk/platform/client/CommonPlatformClient.js +84 -0
- package/sdk/platform/client/CommunicationPlatformClient.d.ts +26 -0
- package/sdk/platform/client/CommunicationPlatformClient.js +72 -0
- package/sdk/platform/client/CompanyProfilePlatformClient.d.ts +182 -0
- package/sdk/platform/client/CompanyProfilePlatformClient.js +540 -0
- package/sdk/platform/client/ConfigurationPlatformClient.d.ts +277 -0
- package/sdk/platform/client/ConfigurationPlatformClient.js +806 -0
- package/sdk/platform/client/DiscountPlatformClient.d.ts +118 -0
- package/sdk/platform/client/DiscountPlatformClient.js +364 -0
- package/sdk/platform/client/FileStoragePlatformClient.d.ts +111 -0
- package/sdk/platform/client/FileStoragePlatformClient.js +268 -0
- package/sdk/platform/client/InventoryPlatformClient.d.ts +125 -0
- package/sdk/platform/client/InventoryPlatformClient.js +409 -0
- package/sdk/platform/client/LeadPlatformClient.d.ts +150 -0
- package/sdk/platform/client/LeadPlatformClient.js +439 -0
- package/sdk/platform/client/OrderPlatformClient.d.ts +190 -0
- package/sdk/platform/client/OrderPlatformClient.js +521 -0
- package/sdk/platform/client/PaymentPlatformClient.d.ts +98 -0
- package/sdk/platform/client/PaymentPlatformClient.js +331 -0
- package/sdk/platform/client/WebhookPlatformClient.d.ts +64 -0
- package/sdk/platform/client/WebhookPlatformClient.js +207 -0
- package/sdk/platform/index.d.ts +2 -0
- package/sdk/platform/index.js +4 -0
- package/sdk/platform/models/AnalyticsValidator.d.ts +7 -0
- package/sdk/platform/models/AnalyticsValidator.js +36 -0
- package/sdk/platform/models/AuditTrailValidator.d.ts +7 -0
- package/sdk/platform/models/AuditTrailValidator.js +26 -0
- package/sdk/platform/models/BillingValidator.d.ts +15 -0
- package/sdk/platform/models/BillingValidator.js +72 -0
- package/sdk/platform/models/CartValidator.d.ts +0 -0
- package/sdk/platform/models/CartValidator.js +0 -0
- package/sdk/platform/models/CatalogValidator.d.ts +74 -0
- package/sdk/platform/models/CatalogValidator.js +484 -0
- package/sdk/platform/models/CommonValidator.d.ts +5 -0
- package/sdk/platform/models/CommonValidator.js +18 -0
- package/sdk/platform/models/CommunicationValidator.d.ts +4 -0
- package/sdk/platform/models/CommunicationValidator.js +11 -0
- package/sdk/platform/models/CompanyProfileValidator.d.ts +17 -0
- package/sdk/platform/models/CompanyProfileValidator.js +93 -0
- package/sdk/platform/models/ConfigurationValidator.d.ts +21 -0
- package/sdk/platform/models/ConfigurationValidator.js +134 -0
- package/sdk/platform/models/ContentValidator.d.ts +0 -0
- package/sdk/platform/models/ContentValidator.js +0 -0
- package/sdk/platform/models/DiscountValidator.d.ts +13 -0
- package/sdk/platform/models/DiscountValidator.js +75 -0
- package/sdk/platform/models/FileStorageValidator.d.ts +9 -0
- package/sdk/platform/models/FileStorageValidator.js +44 -0
- package/sdk/platform/models/InventoryValidator.d.ts +15 -0
- package/sdk/platform/models/InventoryValidator.js +81 -0
- package/sdk/platform/models/LeadValidator.d.ts +14 -0
- package/sdk/platform/models/LeadValidator.js +78 -0
- package/sdk/platform/models/OrderValidator.d.ts +14 -0
- package/sdk/platform/models/OrderValidator.js +110 -0
- package/sdk/platform/models/PartnerValidator.d.ts +0 -0
- package/sdk/platform/models/PartnerValidator.js +0 -0
- package/sdk/platform/models/PaymentValidator.d.ts +13 -0
- package/sdk/platform/models/PaymentValidator.js +65 -0
- package/sdk/platform/models/RewardsValidator.d.ts +0 -0
- package/sdk/platform/models/RewardsValidator.js +0 -0
- package/sdk/platform/models/ShareValidator.d.ts +0 -0
- package/sdk/platform/models/ShareValidator.js +0 -0
- package/sdk/platform/models/ThemeValidator.d.ts +0 -0
- package/sdk/platform/models/ThemeValidator.js +0 -0
- package/sdk/platform/models/UserValidator.d.ts +0 -0
- package/sdk/platform/models/UserValidator.js +0 -0
- package/sdk/platform/models/WebhookValidator.d.ts +9 -0
- package/sdk/platform/models/WebhookValidator.js +42 -0
- package/sdk/public/PublicAPIClient.d.ts +11 -0
- package/sdk/public/PublicAPIClient.js +38 -0
- package/sdk/public/PublicClient.d.ts +12 -0
- package/sdk/public/PublicClient.js +24 -0
- package/sdk/public/PublicConfig.d.ts +10 -0
- package/sdk/public/PublicConfig.js +12 -0
- package/sdk/public/PublicModels.d.ts +50 -0
- package/sdk/public/PublicModels.js +712 -0
- package/sdk/public/client/ConfigurationPublicClient.d.ts +38 -0
- package/sdk/public/client/ConfigurationPublicClient.js +102 -0
- package/sdk/public/client/InventoryPublicClient.d.ts +81 -0
- package/sdk/public/client/InventoryPublicClient.js +239 -0
- package/sdk/public/client/WebhookPublicClient.d.ts +28 -0
- package/sdk/public/client/WebhookPublicClient.js +92 -0
- package/sdk/public/constructUrl.d.ts +5 -0
- package/sdk/public/constructUrl.js +13 -0
- package/sdk/public/index.d.ts +2 -0
- package/sdk/public/index.js +4 -0
- package/sdk/public/models/ConfigurationValidator.d.ts +5 -0
- package/sdk/public/models/ConfigurationValidator.js +18 -0
- package/sdk/public/models/InventoryValidator.d.ts +9 -0
- package/sdk/public/models/InventoryValidator.js +43 -0
- package/sdk/public/models/WebhookValidator.d.ts +5 -0
- package/sdk/public/models/WebhookValidator.js +14 -0
- package/tests/application/catalog.spec.js +47 -0
- package/tests/common/action-url.spec.js +35 -0
- package/tests/common/schema/action-url.json +163 -0
- package/tests/common/schema/url-action.json +667 -0
- package/tests/common/url-action.spec.js +48 -0
- package/tests/helpers/cookie.helper.js +31 -0
- package/tests/helpers/oauth.helper.js +43 -0
- package/tests/platform/catalog.spec.js +49 -0
- package/tests/public/location.spec.js +39 -0
|
@@ -0,0 +1,1396 @@
|
|
|
1
|
+
export = Validator;
|
|
2
|
+
declare class Validator {
|
|
3
|
+
static ApplicationResponse(): any;
|
|
4
|
+
static Currency(): any;
|
|
5
|
+
static Domain(): any;
|
|
6
|
+
static ApplicationWebsite(): any;
|
|
7
|
+
static ApplicationCors(): any;
|
|
8
|
+
static ApplicationAuth(): any;
|
|
9
|
+
static ApplicationRedirections(): any;
|
|
10
|
+
static ApplicationMeta(): any;
|
|
11
|
+
static SecureUrl(): any;
|
|
12
|
+
static Application(): any;
|
|
13
|
+
static NotFound(): any;
|
|
14
|
+
static BadRequest(): any;
|
|
15
|
+
static LocationDefaultLanguage(): any;
|
|
16
|
+
static LocationDefaultCurrency(): any;
|
|
17
|
+
static LocationCountry(): any;
|
|
18
|
+
static Locations(): any;
|
|
19
|
+
static TicketList(): any;
|
|
20
|
+
static Page(): any;
|
|
21
|
+
static TicketHistoryList(): any;
|
|
22
|
+
static CustomFormList(): any;
|
|
23
|
+
static CreateCustomFormPayload(): any;
|
|
24
|
+
static EditCustomFormPayload(): any;
|
|
25
|
+
static EditTicketPayload(): any;
|
|
26
|
+
static AgentChangePayload(): any;
|
|
27
|
+
static CreateVideoRoomResponse(): any;
|
|
28
|
+
static CloseVideoRoomResponse(): any;
|
|
29
|
+
static CreateVideoRoomPayload(): any;
|
|
30
|
+
static NotifyUser(): any;
|
|
31
|
+
static Filter(): any;
|
|
32
|
+
static TicketHistoryPayload(): any;
|
|
33
|
+
static CustomFormSubmissionPayload(): any;
|
|
34
|
+
static GetTokenForVideoRoomResponse(): any;
|
|
35
|
+
static GetParticipantsInsideVideoRoomResponse(): any;
|
|
36
|
+
static Participant(): any;
|
|
37
|
+
static Email(): any;
|
|
38
|
+
static Debug(): any;
|
|
39
|
+
static SubmitCustomFormResponse(): any;
|
|
40
|
+
static TicketContext(): any;
|
|
41
|
+
static CreatedOn(): any;
|
|
42
|
+
static TicketAsset(): any;
|
|
43
|
+
static TicketContent(): any;
|
|
44
|
+
static AddTicketPayload(): any;
|
|
45
|
+
static Priority(): any;
|
|
46
|
+
static Status(): any;
|
|
47
|
+
static TicketFeedbackForm(): any;
|
|
48
|
+
static TicketFeedbackList(): any;
|
|
49
|
+
static TicketFeedbackPayload(): any;
|
|
50
|
+
static SubmitButton(): any;
|
|
51
|
+
static PollForAssignment(): any;
|
|
52
|
+
static CustomForm(): any;
|
|
53
|
+
static CommunicationDetails(): any;
|
|
54
|
+
static SupportGeneralConfig(): any;
|
|
55
|
+
static FeedbackForm(): any;
|
|
56
|
+
static TicketSubCategory(): any;
|
|
57
|
+
static TicketCategory(): any;
|
|
58
|
+
static CategoryData(): any;
|
|
59
|
+
static IntegrationConfig(): any;
|
|
60
|
+
static FeedbackResponseItem(): any;
|
|
61
|
+
static TicketFeedback(): any;
|
|
62
|
+
static TicketHistory(): any;
|
|
63
|
+
static Ticket(): any;
|
|
64
|
+
static PriorityEnum(): any;
|
|
65
|
+
static HistoryTypeEnum(): any;
|
|
66
|
+
static TicketAssetTypeEnum(): any;
|
|
67
|
+
static TicketSourceEnum(): any;
|
|
68
|
+
static TicketIntegrationDetails(): any;
|
|
69
|
+
static AvailablePageSchema(): any;
|
|
70
|
+
static AvailablePageSectionMetaAttributes(): any;
|
|
71
|
+
static AvailablePageSeo(): any;
|
|
72
|
+
static AvailablePageSchemaSections(): any;
|
|
73
|
+
static AvailablePageScreenPredicate(): any;
|
|
74
|
+
static AvailablePageUserPredicate(): any;
|
|
75
|
+
static AvailablePageRoutePredicate(): any;
|
|
76
|
+
static AvailablePagePredicate(): any;
|
|
77
|
+
static AllAvailablePageSchema(): any;
|
|
78
|
+
static PaginationSchema(): any;
|
|
79
|
+
static ThemesListingResponseSchema(): any;
|
|
80
|
+
static AddThemeRequestSchema(): any;
|
|
81
|
+
static UpgradableThemeSchema(): any;
|
|
82
|
+
static FontsSchema(): any;
|
|
83
|
+
static BlitzkriegApiErrorSchema(): any;
|
|
84
|
+
static BlitzkriegNotFoundSchema(): any;
|
|
85
|
+
static BlitzkriegInternalServerErrorSchema(): any;
|
|
86
|
+
static FontsSchemaItems(): any;
|
|
87
|
+
static FontsSchemaItemsFiles(): any;
|
|
88
|
+
static ThemesSchema(): any;
|
|
89
|
+
static availableSectionSchema(): any;
|
|
90
|
+
static Information(): any;
|
|
91
|
+
static Images(): any;
|
|
92
|
+
static Src(): any;
|
|
93
|
+
static AssetsSchema(): any;
|
|
94
|
+
static UmdJs(): any;
|
|
95
|
+
static CommonJs(): any;
|
|
96
|
+
static Css(): any;
|
|
97
|
+
static Sections(): any;
|
|
98
|
+
static Config(): any;
|
|
99
|
+
static Preset(): any;
|
|
100
|
+
static GlobalSchema(): any;
|
|
101
|
+
static ListSchemaItem(): any;
|
|
102
|
+
static Colors(): any;
|
|
103
|
+
static Custom(): any;
|
|
104
|
+
static ConfigPage(): any;
|
|
105
|
+
static Font(): any;
|
|
106
|
+
static Variants(): any;
|
|
107
|
+
static Medium(): any;
|
|
108
|
+
static SemiBold(): any;
|
|
109
|
+
static Bold(): any;
|
|
110
|
+
static Light(): any;
|
|
111
|
+
static Regular(): any;
|
|
112
|
+
static Blocks(): any;
|
|
113
|
+
static GlobalSchemaProps(): any;
|
|
114
|
+
static BlocksProps(): any;
|
|
115
|
+
static BlockUserRequestSchema(): any;
|
|
116
|
+
static ArchiveUserRequestSchema(): any;
|
|
117
|
+
static DeleteApplicationUserRequestSchema(): any;
|
|
118
|
+
static UnDeleteUserRequestSchema(): any;
|
|
119
|
+
static EditEmailRequestSchema(): any;
|
|
120
|
+
static SendVerificationLinkMobileRequestSchema(): any;
|
|
121
|
+
static EditMobileRequestSchema(): any;
|
|
122
|
+
static EditProfileRequestSchema(): any;
|
|
123
|
+
static EditProfileMobileSchema(): any;
|
|
124
|
+
static SendEmailOtpRequestSchema(): any;
|
|
125
|
+
static VerifyEmailOtpRequestSchema(): any;
|
|
126
|
+
static VerifyOtpRequestSchema(): any;
|
|
127
|
+
static SendMobileOtpRequestSchema(): any;
|
|
128
|
+
static UpdatePasswordRequestSchema(): any;
|
|
129
|
+
static FormRegisterRequestSchema(): any;
|
|
130
|
+
static TokenRequestBodySchema(): any;
|
|
131
|
+
static ForgotPasswordRequestSchema(): any;
|
|
132
|
+
static CodeRequestBodySchema(): any;
|
|
133
|
+
static SendResetPasswordEmailRequestSchema(): any;
|
|
134
|
+
static SendResetPasswordMobileRequestSchema(): any;
|
|
135
|
+
static PasswordLoginRequestSchema(): any;
|
|
136
|
+
static SendOtpRequestSchema(): any;
|
|
137
|
+
static OAuthRequestSchema(): any;
|
|
138
|
+
static OAuthRequestAppleSchema(): any;
|
|
139
|
+
static UserObjectSchema(): any;
|
|
140
|
+
static AuthSuccess(): any;
|
|
141
|
+
static SendOtpResponse(): any;
|
|
142
|
+
static ProfileEditSuccess(): any;
|
|
143
|
+
static LoginSuccess(): any;
|
|
144
|
+
static VerifyOtpSuccess(): any;
|
|
145
|
+
static ResetPasswordSuccess(): any;
|
|
146
|
+
static RegisterFormSuccess(): any;
|
|
147
|
+
static VerifyEmailSuccess(): any;
|
|
148
|
+
static HasPasswordSuccess(): any;
|
|
149
|
+
static LogoutSuccess(): any;
|
|
150
|
+
static BlockUserSuccess(): any;
|
|
151
|
+
static ArchiveUserSuccess(): any;
|
|
152
|
+
static DeleteUserSuccess(): any;
|
|
153
|
+
static UnDeleteUserSuccess(): any;
|
|
154
|
+
static OtpSuccess(): any;
|
|
155
|
+
static EmailOtpSuccess(): any;
|
|
156
|
+
static SessionListSuccess(): any;
|
|
157
|
+
static VerifyMobileOTPSuccess(): any;
|
|
158
|
+
static VerifyEmailOTPSuccess(): any;
|
|
159
|
+
static SendMobileVerifyLinkSuccess(): any;
|
|
160
|
+
static SendEmailVerifyLinkSuccess(): any;
|
|
161
|
+
static UserSearchResponseSchema(): any;
|
|
162
|
+
static CustomerListResponseSchema(): any;
|
|
163
|
+
static SessionListResponseSchema(): any;
|
|
164
|
+
static SessionDeleteResponseSchema(): any;
|
|
165
|
+
static UnauthorizedSchema(): any;
|
|
166
|
+
static UnauthenticatedSchema(): any;
|
|
167
|
+
static NotFoundSchema(): any;
|
|
168
|
+
static AuthenticationInternalServerErrorSchema(): any;
|
|
169
|
+
static AuthenticationApiErrorSchema(): any;
|
|
170
|
+
static ProfileEditSuccessSchema(): any;
|
|
171
|
+
static FormRegisterRequestSchemaPhone(): any;
|
|
172
|
+
static OAuthRequestSchemaOauth2(): any;
|
|
173
|
+
static OAuthRequestSchemaProfile(): any;
|
|
174
|
+
static OAuthRequestAppleSchemaOauth(): any;
|
|
175
|
+
static OAuthRequestAppleSchemaProfile(): any;
|
|
176
|
+
static AuthSuccessUser(): any;
|
|
177
|
+
static AuthSuccessUserDebug(): any;
|
|
178
|
+
static AuthSuccessUserEmails(): any;
|
|
179
|
+
static CreateUserRequestSchema(): any;
|
|
180
|
+
static CreateUserResponseSchema(): any;
|
|
181
|
+
static CreateUserSessionRequestSchema(): any;
|
|
182
|
+
static CreateUserSessionResponseSchema(): any;
|
|
183
|
+
static PlatformSchema(): any;
|
|
184
|
+
static LookAndFeel(): any;
|
|
185
|
+
static Login(): any;
|
|
186
|
+
static MetaSchema(): any;
|
|
187
|
+
static Social(): any;
|
|
188
|
+
static RequiredFields(): any;
|
|
189
|
+
static PlatformEmail(): any;
|
|
190
|
+
static PlatformMobile(): any;
|
|
191
|
+
static RegisterRequiredFields(): any;
|
|
192
|
+
static RegisterRequiredFieldsEmail(): any;
|
|
193
|
+
static RegisterRequiredFieldsMobile(): any;
|
|
194
|
+
static FlashCard(): any;
|
|
195
|
+
static SocialTokens(): any;
|
|
196
|
+
static DeleteAccountReasons(): any;
|
|
197
|
+
static DeleteAccountConsent(): any;
|
|
198
|
+
static Facebook(): any;
|
|
199
|
+
static Accountkit(): any;
|
|
200
|
+
static Google(): any;
|
|
201
|
+
static UpdateUserRequestSchema(): any;
|
|
202
|
+
static UserSchema(): any;
|
|
203
|
+
static PhoneNumber(): any;
|
|
204
|
+
static ApplicationLegal(): any;
|
|
205
|
+
static ApplicationLegalFAQ(): any;
|
|
206
|
+
static PathMappingSchema(): any;
|
|
207
|
+
static SeoComponent(): any;
|
|
208
|
+
static SeoSchema(): any;
|
|
209
|
+
static CustomMetaTag(): any;
|
|
210
|
+
static Detail(): any;
|
|
211
|
+
static AnnouncementPageSchema(): any;
|
|
212
|
+
static EditorMeta(): any;
|
|
213
|
+
static AnnouncementAuthorSchema(): any;
|
|
214
|
+
static AdminAnnouncementSchema(): any;
|
|
215
|
+
static ScheduleSchema(): any;
|
|
216
|
+
static NextSchedule(): any;
|
|
217
|
+
static AnnouncementSchema(): any;
|
|
218
|
+
static ScheduleStartSchema(): any;
|
|
219
|
+
static BlogGetResponse(): any;
|
|
220
|
+
static ResourceContent(): any;
|
|
221
|
+
static Asset(): any;
|
|
222
|
+
static Author(): any;
|
|
223
|
+
static BlogSchema(): any;
|
|
224
|
+
static SEO(): any;
|
|
225
|
+
static SEOImage(): any;
|
|
226
|
+
static DateMeta(): any;
|
|
227
|
+
static BlogRequest(): any;
|
|
228
|
+
static GetAnnouncementListSchema(): any;
|
|
229
|
+
static CreateAnnouncementSchema(): any;
|
|
230
|
+
static DataLoaderResponseSchema(): any;
|
|
231
|
+
static DataLoaderResetResponseSchema(): any;
|
|
232
|
+
static Navigation(): any;
|
|
233
|
+
static LocaleLanguage(): any;
|
|
234
|
+
static Language(): any;
|
|
235
|
+
static Action(): any;
|
|
236
|
+
static ActionPage(): any;
|
|
237
|
+
static NavigationReference(): any;
|
|
238
|
+
static SubNavigationReference(): any;
|
|
239
|
+
static LandingPage(): any;
|
|
240
|
+
static ConfigurationSchema(): any;
|
|
241
|
+
static SlideshowMedia(): any;
|
|
242
|
+
static Slideshow(): any;
|
|
243
|
+
static AnnouncementsResponseSchema(): any;
|
|
244
|
+
static FaqResponseSchema(): any;
|
|
245
|
+
static UpdateHandpickedSchema(): any;
|
|
246
|
+
static HandpickedTagSchema(): any;
|
|
247
|
+
static RemoveHandpickedSchema(): any;
|
|
248
|
+
static CreateTagSchema(): any;
|
|
249
|
+
static CreateTagRequestSchema(): any;
|
|
250
|
+
static DataLoaderSchema(): any;
|
|
251
|
+
static DataLoaderSourceSchema(): any;
|
|
252
|
+
static DataLoadersSchema(): any;
|
|
253
|
+
static TagDeleteSuccessResponse(): any;
|
|
254
|
+
static ContentAPIError(): any;
|
|
255
|
+
static CommonError(): any;
|
|
256
|
+
static CategorySchema(): any;
|
|
257
|
+
static ChildrenSchema(): any;
|
|
258
|
+
static CategoryRequestSchema(): any;
|
|
259
|
+
static FAQCategorySchema(): any;
|
|
260
|
+
static FaqSchema(): any;
|
|
261
|
+
static FAQ(): any;
|
|
262
|
+
static CreateFaqResponseSchema(): any;
|
|
263
|
+
static CreateFaqSchema(): any;
|
|
264
|
+
static GetFaqSchema(): any;
|
|
265
|
+
static UpdateFaqCategoryRequestSchema(): any;
|
|
266
|
+
static CreateFaqCategoryRequestSchema(): any;
|
|
267
|
+
static CreateFaqCategorySchema(): any;
|
|
268
|
+
static GetFaqCategoriesSchema(): any;
|
|
269
|
+
static GetFaqCategoryBySlugSchema(): any;
|
|
270
|
+
static LandingPageGetResponse(): any;
|
|
271
|
+
static LandingPageSchema(): any;
|
|
272
|
+
static DefaultNavigationResponse(): any;
|
|
273
|
+
static NavigationGetResponse(): any;
|
|
274
|
+
static Orientation(): any;
|
|
275
|
+
static NavigationSchema(): any;
|
|
276
|
+
static NavigationRequest(): any;
|
|
277
|
+
static CustomPageSchema(): any;
|
|
278
|
+
static ContentSchema(): any;
|
|
279
|
+
static CustomPage(): any;
|
|
280
|
+
static FeatureImage(): any;
|
|
281
|
+
static PageGetResponse(): any;
|
|
282
|
+
static PageSpec(): any;
|
|
283
|
+
static PageSpecParam(): any;
|
|
284
|
+
static PageSpecItem(): any;
|
|
285
|
+
static PageSchema(): any;
|
|
286
|
+
static CreatedBySchema(): any;
|
|
287
|
+
static PageContent(): any;
|
|
288
|
+
static PageMeta(): any;
|
|
289
|
+
static PageRequest(): any;
|
|
290
|
+
static CronSchedule(): any;
|
|
291
|
+
static PagePublishRequest(): any;
|
|
292
|
+
static PageMetaSchema(): any;
|
|
293
|
+
static SlideshowGetResponse(): any;
|
|
294
|
+
static SlideshowSchema(): any;
|
|
295
|
+
static SlideshowRequest(): any;
|
|
296
|
+
static Support(): any;
|
|
297
|
+
static PhoneProperties(): any;
|
|
298
|
+
static PhoneSchema(): any;
|
|
299
|
+
static EmailProperties(): any;
|
|
300
|
+
static EmailSchema(): any;
|
|
301
|
+
static ContactSchema(): any;
|
|
302
|
+
static TagsSchema(): any;
|
|
303
|
+
static TagSchema(): any;
|
|
304
|
+
static TagSourceSchema(): any;
|
|
305
|
+
static PageType(): any;
|
|
306
|
+
static UnauthenticatedUser(): any;
|
|
307
|
+
static UnauthenticatedApplication(): any;
|
|
308
|
+
static ResourceNotFound(): any;
|
|
309
|
+
static InternalServerError(): any;
|
|
310
|
+
static CheckValidityResponse(): any;
|
|
311
|
+
static PlanRecurring(): any;
|
|
312
|
+
static Plan(): any;
|
|
313
|
+
static DetailedPlanComponents(): any;
|
|
314
|
+
static DetailedPlan(): any;
|
|
315
|
+
static SubscriptionTrialPeriod(): any;
|
|
316
|
+
static EntityChargePrice(): any;
|
|
317
|
+
static EntityChargeRecurring(): any;
|
|
318
|
+
static ChargeLineItem(): any;
|
|
319
|
+
static CreateSubscriptionCharge(): any;
|
|
320
|
+
static CurrentPeriod(): any;
|
|
321
|
+
static SubscriptionCharge(): any;
|
|
322
|
+
static EntitySubscription(): any;
|
|
323
|
+
static CreateSubscriptionResponse(): any;
|
|
324
|
+
static InvoiceDetailsPeriod(): any;
|
|
325
|
+
static InvoiceDetailsClient(): any;
|
|
326
|
+
static InvoiceDetailsStatusTrail(): any;
|
|
327
|
+
static InvoiceDetailsPaymentMethodsDataChecks(): any;
|
|
328
|
+
static InvoiceDetailsPaymentMethodsDataNetworks(): any;
|
|
329
|
+
static InvoiceDetailsPaymentMethodsDataThreeDSecureUsage(): any;
|
|
330
|
+
static InvoiceDetailsPaymentMethodsData(): any;
|
|
331
|
+
static InvoiceDetailsPaymentMethods(): any;
|
|
332
|
+
static InvoicePaymentMethod(): any;
|
|
333
|
+
static InvoiceDetails(): any;
|
|
334
|
+
static InvoiceItemsPlanRecurring(): any;
|
|
335
|
+
static InvoiceItemsPlan(): any;
|
|
336
|
+
static InvoiceItemsPeriod(): any;
|
|
337
|
+
static InvoiceItems(): any;
|
|
338
|
+
static Invoice(): any;
|
|
339
|
+
static InvoicesDataClient(): any;
|
|
340
|
+
static InvoicesDataPeriod(): any;
|
|
341
|
+
static InvoicesDataPaymentMethod(): any;
|
|
342
|
+
static InvoicesData(): any;
|
|
343
|
+
static Invoices(): any;
|
|
344
|
+
static Phone(): any;
|
|
345
|
+
static SubscriptionBillingAddress(): any;
|
|
346
|
+
static SubscriptionCustomer(): any;
|
|
347
|
+
static SubscriptionCustomerCreate(): any;
|
|
348
|
+
static SubscriptionCurrentPeriod(): any;
|
|
349
|
+
static SubscriptionPauseCollection(): any;
|
|
350
|
+
static SubscriptionTrial(): any;
|
|
351
|
+
static SubscriptionInvoiceSettings(): any;
|
|
352
|
+
static Subscription(): any;
|
|
353
|
+
static SubscriptionStatus(): any;
|
|
354
|
+
static SubscriptionLimitApplication(): any;
|
|
355
|
+
static SubscriptionLimitMarketplace(): any;
|
|
356
|
+
static SubscriptionLimitOtherPlatform(): any;
|
|
357
|
+
static SubscriptionLimitTeam(): any;
|
|
358
|
+
static SubscriptionLimitProducts(): any;
|
|
359
|
+
static SubscriptionLimitExtensions(): any;
|
|
360
|
+
static SubscriptionLimitIntegrations(): any;
|
|
361
|
+
static SubscriptionLimit(): any;
|
|
362
|
+
static SubscriptionActivateReq(): any;
|
|
363
|
+
static SubscriptionActivateRes(): any;
|
|
364
|
+
static CancelSubscriptionReq(): any;
|
|
365
|
+
static CancelSubscriptionRes(): any;
|
|
366
|
+
static StatsImported(): any;
|
|
367
|
+
static StatsProcessedEmail(): any;
|
|
368
|
+
static StatsProcessedSms(): any;
|
|
369
|
+
static StatsProcessed(): any;
|
|
370
|
+
static Stats(): any;
|
|
371
|
+
static GetStats(): any;
|
|
372
|
+
static CampaignReq(): any;
|
|
373
|
+
static RecipientHeaders(): any;
|
|
374
|
+
static CampaignEmailTemplate(): any;
|
|
375
|
+
static CampignEmailProvider(): any;
|
|
376
|
+
static CampaignEmail(): any;
|
|
377
|
+
static Campaign(): any;
|
|
378
|
+
static Campaigns(): any;
|
|
379
|
+
static BadRequestSchema(): any;
|
|
380
|
+
static BigqueryHeadersReq(): any;
|
|
381
|
+
static BigqueryHeadersResHeaders(): any;
|
|
382
|
+
static BigqueryHeadersRes(): any;
|
|
383
|
+
static GetNRecordsCsvReq(): any;
|
|
384
|
+
static GetNRecordsCsvResItems(): any;
|
|
385
|
+
static GetNRecordsCsvRes(): any;
|
|
386
|
+
static AudienceReq(): any;
|
|
387
|
+
static Audience(): any;
|
|
388
|
+
static Audiences(): any;
|
|
389
|
+
static EmailProviderReqFrom(): any;
|
|
390
|
+
static EmailProviderReq(): any;
|
|
391
|
+
static EmailProvider(): any;
|
|
392
|
+
static EmailProviders(): any;
|
|
393
|
+
static EmailTemplateDeleteSuccessRes(): any;
|
|
394
|
+
static EmailTemplateDeleteFailureRes(): any;
|
|
395
|
+
static EmailTemplateKeys(): any;
|
|
396
|
+
static EmailTemplateHeaders(): any;
|
|
397
|
+
static EmailTemplateReq(): any;
|
|
398
|
+
static TemplateAndType(): any;
|
|
399
|
+
static EmailTemplateRes(): any;
|
|
400
|
+
static EmailTemplate(): any;
|
|
401
|
+
static SystemEmailTemplate(): any;
|
|
402
|
+
static EmailTemplates(): any;
|
|
403
|
+
static SystemEmailTemplates(): any;
|
|
404
|
+
static PayloadEmailTemplateStructure(): any;
|
|
405
|
+
static PayloadEmailProviderStructure(): any;
|
|
406
|
+
static PayloadEmailStructure(): any;
|
|
407
|
+
static PayloadSmsTemplateStructure(): any;
|
|
408
|
+
static PayloadSmsProviderStructure(): any;
|
|
409
|
+
static PayloadSmsStructure(): any;
|
|
410
|
+
static PayloadStructure(): any;
|
|
411
|
+
static MetaStructure(): any;
|
|
412
|
+
static EngineRequest(): any;
|
|
413
|
+
static EngineResponse(): any;
|
|
414
|
+
static EventSubscriptionTemplateSms(): any;
|
|
415
|
+
static EventSubscriptionTemplateEmail(): any;
|
|
416
|
+
static EventSubscriptionTemplate(): any;
|
|
417
|
+
static EventSubscription(): any;
|
|
418
|
+
static EventSubscriptions(): any;
|
|
419
|
+
static TriggerJobResponse(): any;
|
|
420
|
+
static TriggerJobRequest(): any;
|
|
421
|
+
static Job(): any;
|
|
422
|
+
static Jobs(): any;
|
|
423
|
+
static JobLog(): any;
|
|
424
|
+
static JobLogs(): any;
|
|
425
|
+
static LogEmail(): any;
|
|
426
|
+
static LogPushnotification(): any;
|
|
427
|
+
static LogMeta(): any;
|
|
428
|
+
static Log(): any;
|
|
429
|
+
static Logs(): any;
|
|
430
|
+
static SendOtpSmsCommsTemplate(): any;
|
|
431
|
+
static SendOtpSmsCommsProvider(): any;
|
|
432
|
+
static SendOtpEmailCommsTemplate(): any;
|
|
433
|
+
static SendOtpCommsReqData(): any;
|
|
434
|
+
static SendOtpCommsReqSms(): any;
|
|
435
|
+
static SendOtpCommsReqEmail(): any;
|
|
436
|
+
static SendOtpCommsResSms(): any;
|
|
437
|
+
static SendOtpCommsResEmail(): any;
|
|
438
|
+
static SendOtpCommsReq(): any;
|
|
439
|
+
static SendOtpCommsRes(): any;
|
|
440
|
+
static VerifyOtpCommsReq(): any;
|
|
441
|
+
static VerifyOtpCommsSuccessRes(): any;
|
|
442
|
+
static VerifyOtpCommsErrorRes(): any;
|
|
443
|
+
static PushtokenReq(): any;
|
|
444
|
+
static PushtokenRes(): any;
|
|
445
|
+
static SmsProviderReq(): any;
|
|
446
|
+
static SmsProvider(): any;
|
|
447
|
+
static SmsProviders(): any;
|
|
448
|
+
static SmsTemplateDeleteSuccessRes(): any;
|
|
449
|
+
static SmsTemplateDeleteFailureRes(): any;
|
|
450
|
+
static SmsTemplateMessage(): any;
|
|
451
|
+
static SmsTemplateReq(): any;
|
|
452
|
+
static SmsTemplateRes(): any;
|
|
453
|
+
static SmsTemplate(): any;
|
|
454
|
+
static SystemSmsTemplate(): any;
|
|
455
|
+
static SmsTemplates(): any;
|
|
456
|
+
static SystemSmsTemplates(): any;
|
|
457
|
+
static Notification(): any;
|
|
458
|
+
static SystemNotificationUser(): any;
|
|
459
|
+
static SystemNotificationSettings(): any;
|
|
460
|
+
static SystemNotification(): any;
|
|
461
|
+
static SystemNotificationsPage(): any;
|
|
462
|
+
static SystemNotifications(): any;
|
|
463
|
+
static PaymentGatewayConfigResponse(): any;
|
|
464
|
+
static ErrorCodeDescription(): any;
|
|
465
|
+
static PaymentGatewayConfig(): any;
|
|
466
|
+
static PaymentGatewayConfigRequest(): any;
|
|
467
|
+
static PaymentGatewayToBeReviewed(): any;
|
|
468
|
+
static ErrorCodeAndDescription(): any;
|
|
469
|
+
static HttpErrorCodeAndResponse(): any;
|
|
470
|
+
static IntentAppErrorList(): any;
|
|
471
|
+
static PaymentModeLogo(): any;
|
|
472
|
+
static IntentApp(): any;
|
|
473
|
+
static PaymentModeList(): any;
|
|
474
|
+
static RootPaymentMode(): any;
|
|
475
|
+
static PaymentOptions(): any;
|
|
476
|
+
static PaymentOptionsResponse(): any;
|
|
477
|
+
static PayoutsResponse(): any;
|
|
478
|
+
static PayoutBankDetails(): any;
|
|
479
|
+
static PayoutRequest(): any;
|
|
480
|
+
static PayoutResponse(): any;
|
|
481
|
+
static UpdatePayoutResponse(): any;
|
|
482
|
+
static UpdatePayoutRequest(): any;
|
|
483
|
+
static DeletePayoutResponse(): any;
|
|
484
|
+
static SubscriptionPaymentMethodResponse(): any;
|
|
485
|
+
static DeleteSubscriptionPaymentMethodResponse(): any;
|
|
486
|
+
static SubscriptionConfigResponse(): any;
|
|
487
|
+
static SaveSubscriptionSetupIntentRequest(): any;
|
|
488
|
+
static SaveSubscriptionSetupIntentResponse(): any;
|
|
489
|
+
static RefundAccountResponse(): any;
|
|
490
|
+
static NotFoundResourceError(): any;
|
|
491
|
+
static BankDetailsForOTP(): any;
|
|
492
|
+
static AddBeneficiaryDetailsOTPRequest(): any;
|
|
493
|
+
static IfscCodeResponse(): any;
|
|
494
|
+
static OrderBeneficiaryDetails(): any;
|
|
495
|
+
static OrderBeneficiaryResponse(): any;
|
|
496
|
+
static MultiTenderPaymentMeta(): any;
|
|
497
|
+
static MultiTenderPaymentMethod(): any;
|
|
498
|
+
static PaymentConfirmationRequest(): any;
|
|
499
|
+
static PaymentConfirmationResponse(): any;
|
|
500
|
+
static CODdata(): any;
|
|
501
|
+
static GetUserCODLimitResponse(): any;
|
|
502
|
+
static SetCODForUserRequest(): any;
|
|
503
|
+
static SetCODOptionResponse(): any;
|
|
504
|
+
static GetActivityStatus(): any;
|
|
505
|
+
static ActivityHistory(): any;
|
|
506
|
+
static CanBreakRequestBody(): any;
|
|
507
|
+
static CanBreakResponse(): any;
|
|
508
|
+
static FailedOrders(): any;
|
|
509
|
+
static FailOrder(): any;
|
|
510
|
+
static MarketplaceOrder(): any;
|
|
511
|
+
static TotalDiscountsSet(): any;
|
|
512
|
+
static PresentmentMoney(): any;
|
|
513
|
+
static ShopMoney(): any;
|
|
514
|
+
static TotalPriceSet(): any;
|
|
515
|
+
static TotalPriceSetShopMoney(): any;
|
|
516
|
+
static TotalPriceSetPresentmentMoney(): any;
|
|
517
|
+
static TotalTaxSet(): any;
|
|
518
|
+
static TotalTaxSetShopMoney(): any;
|
|
519
|
+
static TotalTaxSetPresentmentMoney(): any;
|
|
520
|
+
static SubtotalPriceSet(): any;
|
|
521
|
+
static SubtotalPriceSetShopMoney(): any;
|
|
522
|
+
static SubtotalPriceSetPresentmentMoney(): any;
|
|
523
|
+
static LineItems(): any;
|
|
524
|
+
static LineItemsArticle(): any;
|
|
525
|
+
static Quantities(): any;
|
|
526
|
+
static NotAvailable(): any;
|
|
527
|
+
static Sellable(): any;
|
|
528
|
+
static OrderCommitted(): any;
|
|
529
|
+
static Damaged(): any;
|
|
530
|
+
static Manufacturer(): any;
|
|
531
|
+
static ArticlePrice(): any;
|
|
532
|
+
static Company(): any;
|
|
533
|
+
static FailOrderDateMeta(): any;
|
|
534
|
+
static MarketplaceIdentifiers(): any;
|
|
535
|
+
static TatacliqLuxury(): any;
|
|
536
|
+
static Dimension(): any;
|
|
537
|
+
static Weight(): any;
|
|
538
|
+
static Store(): any;
|
|
539
|
+
static ArticleMeta(): any;
|
|
540
|
+
static ArticleBrand(): any;
|
|
541
|
+
static LineItemsArticleIdentifier(): any;
|
|
542
|
+
static PriceSet(): any;
|
|
543
|
+
static PriceSetShopMoney(): any;
|
|
544
|
+
static PriceSetPresentmentMoney(): any;
|
|
545
|
+
static TaxLines(): any;
|
|
546
|
+
static TaxLinesPriceSet(): any;
|
|
547
|
+
static TaxLinesPriceSetShopMoney(): any;
|
|
548
|
+
static TaxLinesPriceSetPresentmentMoney(): any;
|
|
549
|
+
static TotalDiscountSet(): any;
|
|
550
|
+
static TotalDiscountSetPresentmentMoney(): any;
|
|
551
|
+
static TotalDiscountSetShopMoney(): any;
|
|
552
|
+
static BillingAddress(): any;
|
|
553
|
+
static TotalShippingPriceSet(): any;
|
|
554
|
+
static TotalShippingPriceSetShopMoney(): any;
|
|
555
|
+
static TotalShippingPriceSetPresentmentMoney(): any;
|
|
556
|
+
static Customer(): any;
|
|
557
|
+
static DefaultAddress(): any;
|
|
558
|
+
static TotalLineItemsPriceSet(): any;
|
|
559
|
+
static TotalLineItemsPriceSetShopMoney(): any;
|
|
560
|
+
static TotalLineItemsPriceSetPresentmentMoney(): any;
|
|
561
|
+
static OrderShippingAddress(): any;
|
|
562
|
+
static OrderListing(): any;
|
|
563
|
+
static OrderItems(): any;
|
|
564
|
+
static PlatformOrderUserInfo(): any;
|
|
565
|
+
static PlatformDeliveryAddress(): any;
|
|
566
|
+
static Channel(): any;
|
|
567
|
+
static PlatformApplication(): any;
|
|
568
|
+
static PlatformShipment(): any;
|
|
569
|
+
static PlatformShipmentStatus(): any;
|
|
570
|
+
static Bags(): any;
|
|
571
|
+
static BagItem(): any;
|
|
572
|
+
static BagItemAttributes(): any;
|
|
573
|
+
static ShipmentPrices(): any;
|
|
574
|
+
static Payments(): any;
|
|
575
|
+
static Filters(): any;
|
|
576
|
+
static Stage(): any;
|
|
577
|
+
static StagesFilters(): any;
|
|
578
|
+
static Options(): any;
|
|
579
|
+
static PlatformOrderPage(): any;
|
|
580
|
+
static AppliedFilters(): any;
|
|
581
|
+
static OrderDetails(): any;
|
|
582
|
+
static OrderDetailsItem(): any;
|
|
583
|
+
static PlatformBreakupValues(): any;
|
|
584
|
+
static ArticleAssignment(): any;
|
|
585
|
+
static PlatformShipmentDetails(): any;
|
|
586
|
+
static PlatformShipmentDetailsStatus(): any;
|
|
587
|
+
static BagsDetails(): any;
|
|
588
|
+
static BagFinancialBreakup(): any;
|
|
589
|
+
static Identifiers(): any;
|
|
590
|
+
static BagCurrStatus(): any;
|
|
591
|
+
static BagArticle(): any;
|
|
592
|
+
static ArticleIdentifiers(): any;
|
|
593
|
+
static Set(): any;
|
|
594
|
+
static SetSizeDistribution(): any;
|
|
595
|
+
static Sizes(): any;
|
|
596
|
+
static BagArticleReturnConfig(): any;
|
|
597
|
+
static GstDetails(): any;
|
|
598
|
+
static BagBreakupValues(): any;
|
|
599
|
+
static BagCurrentStatus(): any;
|
|
600
|
+
static BagStateMapper(): any;
|
|
601
|
+
static BagStatus(): any;
|
|
602
|
+
static BagStatusBagStateMapper(): any;
|
|
603
|
+
static BagPrices(): any;
|
|
604
|
+
static ShipmentBreakupValues(): any;
|
|
605
|
+
static DpDetails(): any;
|
|
606
|
+
static ShipmentInvoice(): any;
|
|
607
|
+
static RtoAddress(): any;
|
|
608
|
+
static StoreAddressJson(): any;
|
|
609
|
+
static PlatformFulfillingStore(): any;
|
|
610
|
+
static FulfillingStoreMeta(): any;
|
|
611
|
+
static AdditionalContactDetails(): any;
|
|
612
|
+
static Documents(): any;
|
|
613
|
+
static Gst(): any;
|
|
614
|
+
static ProductReturnConfig(): any;
|
|
615
|
+
static Timing(): any;
|
|
616
|
+
static Opening(): any;
|
|
617
|
+
static Closing(): any;
|
|
618
|
+
static FulfillingStoreStoreAddressJson(): any;
|
|
619
|
+
static ShipmentGst(): any;
|
|
620
|
+
static PlatformShipmentDetailsBrand(): any;
|
|
621
|
+
static Promise(): any;
|
|
622
|
+
static Timestamp(): any;
|
|
623
|
+
static ShipmentTrackingDetails(): any;
|
|
624
|
+
static ItemsPayments(): any;
|
|
625
|
+
static PlatformOrderDetailsPage(): any;
|
|
626
|
+
static ShipmentDates(): any;
|
|
627
|
+
static OrderLanesCount(): any;
|
|
628
|
+
static StageItem(): any;
|
|
629
|
+
static UpdateOrderReprocessResponse(): any;
|
|
630
|
+
static PlatformOrderTrack(): any;
|
|
631
|
+
static OrderPicklistListing(): any;
|
|
632
|
+
static Stages(): any;
|
|
633
|
+
static ItemTotal(): any;
|
|
634
|
+
static GetPingResponse(): any;
|
|
635
|
+
static GetShipmentAddressResponse(): any;
|
|
636
|
+
static DataShipmentAddress(): any;
|
|
637
|
+
static UpdateShipmentAddressRequest(): any;
|
|
638
|
+
static UpdateShipmentAddressResponse(): any;
|
|
639
|
+
static ShipmentTrackResponse(): any;
|
|
640
|
+
static ShipmentTrackResponseBagListItem(): any;
|
|
641
|
+
static ShipmentTrackResponseBagListItemBreakValues(): any;
|
|
642
|
+
static ShipmentTrackResponseBagListItemStatuses(): any;
|
|
643
|
+
static ShipmentTrackResponseBagListItemStatusesProgress(): any;
|
|
644
|
+
static ShipmentTrackResponseBagListItemStatusesTrack(): any;
|
|
645
|
+
static ShipmentTrackResponseBagListItemDpDetails(): any;
|
|
646
|
+
static ShipmentTrackResponseBagListItemsProductImage(): any;
|
|
647
|
+
static UpdateShipmentStatusResponse(): any;
|
|
648
|
+
static UpdateShipmentStatusBody(): any;
|
|
649
|
+
static ShipmentReasonsResponse(): any;
|
|
650
|
+
static ShipmentResponseReasons(): any;
|
|
651
|
+
static PlatformShipmentTrack(): any;
|
|
652
|
+
static Results(): any;
|
|
653
|
+
static ShipmentUpdateRequest(): any;
|
|
654
|
+
static ShipmentUpdateResponse(): any;
|
|
655
|
+
static UpdateProcessShipmenstRequestBody(): any;
|
|
656
|
+
static UpdateProcessShipmenstRequestResponse(): any;
|
|
657
|
+
static GetVoiceCallbackResponse(): any;
|
|
658
|
+
static GetClickToCallResponse(): any;
|
|
659
|
+
static ApefaceApiError(): any;
|
|
660
|
+
static GetSearchWordsData(): any;
|
|
661
|
+
static GetSearchWordsDetailResponse(): any;
|
|
662
|
+
static ErrorResponse(): any;
|
|
663
|
+
static SearchKeywordResult(): any;
|
|
664
|
+
static CreateSearchKeyword(): any;
|
|
665
|
+
static DeleteResponse(): any;
|
|
666
|
+
static GetSearchWordsResponse(): any;
|
|
667
|
+
static GetAutocompleteWordsData(): any;
|
|
668
|
+
static GetAutocompleteWordsResponse(): any;
|
|
669
|
+
static Media(): any;
|
|
670
|
+
static AutocompletePageAction(): any;
|
|
671
|
+
static AutocompleteAction(): any;
|
|
672
|
+
static AutocompleteResult(): any;
|
|
673
|
+
static CreateAutocompleteKeyword(): any;
|
|
674
|
+
static CreateAutocompleteWordsResponse(): any;
|
|
675
|
+
static ProductBundleItem(): any;
|
|
676
|
+
static GetProductBundleCreateResponse(): any;
|
|
677
|
+
static GetProductBundleListingResponse(): any;
|
|
678
|
+
static ProductBundleRequest(): any;
|
|
679
|
+
static Size(): any;
|
|
680
|
+
static Price(): any;
|
|
681
|
+
static LimitedProductData(): any;
|
|
682
|
+
static GetProducts(): any;
|
|
683
|
+
static GetProductBundleResponse(): any;
|
|
684
|
+
static ProductBundleUpdateRequest(): any;
|
|
685
|
+
static ListSizeGuide(): any;
|
|
686
|
+
static Meta(): any;
|
|
687
|
+
static Guide(): any;
|
|
688
|
+
static ValidateSizeGuide(): any;
|
|
689
|
+
static SuccessResponse(): any;
|
|
690
|
+
static SizeGuideResponse(): any;
|
|
691
|
+
static MetaFields(): any;
|
|
692
|
+
static ApplicationItemMOQ(): any;
|
|
693
|
+
static ApplicationItemSEO(): any;
|
|
694
|
+
static ApplicationItemMeta(): any;
|
|
695
|
+
static SuccessResponse1(): any;
|
|
696
|
+
static MOQData(): any;
|
|
697
|
+
static SEOData(): any;
|
|
698
|
+
static OwnerAppItemResponse(): any;
|
|
699
|
+
static GetConfigMetadataResponse(): any;
|
|
700
|
+
static PageResponseType(): any;
|
|
701
|
+
static GetConfigResponse(): any;
|
|
702
|
+
static ConfigErrorResponse(): any;
|
|
703
|
+
static AttributeDetailsGroup(): any;
|
|
704
|
+
static AppConfigurationDetail(): any;
|
|
705
|
+
static ConfigSuccessResponse(): any;
|
|
706
|
+
static AppConfigurationsSort(): any;
|
|
707
|
+
static AllowSingleRequest(): any;
|
|
708
|
+
static DefaultKeyRequest(): any;
|
|
709
|
+
static GetCatalogConfigurationDetailsProduct(): any;
|
|
710
|
+
static MetaDataListingSortMetaResponse(): any;
|
|
711
|
+
static MetaDataListingSortResponse(): any;
|
|
712
|
+
static MetaDataListingFilterMetaResponse(): any;
|
|
713
|
+
static MetaDataListingFilterResponse(): any;
|
|
714
|
+
static MetaDataListingResponse(): any;
|
|
715
|
+
static GetCatalogConfigurationMetaData(): any;
|
|
716
|
+
static ProductSize(): any;
|
|
717
|
+
static ConfigurationProductVariantConfig(): any;
|
|
718
|
+
static ConfigurationProductVariant(): any;
|
|
719
|
+
static ConfigurationProductConfig(): any;
|
|
720
|
+
static ConfigurationProductSimilar(): any;
|
|
721
|
+
static ConfigurationProduct(): any;
|
|
722
|
+
static ConfigurationListingSortConfig(): any;
|
|
723
|
+
static ConfigurationListingSort(): any;
|
|
724
|
+
static ConfigurationBucketPoints(): any;
|
|
725
|
+
static ConfigurationListingFilterValue(): any;
|
|
726
|
+
static ConfigurationListingFilterConfig(): any;
|
|
727
|
+
static ConfigurationListingFilter(): any;
|
|
728
|
+
static ConfigurationListing(): any;
|
|
729
|
+
static AppCatalogConfiguration(): any;
|
|
730
|
+
static GetAppCatalogConfiguration(): any;
|
|
731
|
+
static AppConfiguration(): any;
|
|
732
|
+
static GetCatalogConfigurationDetailsSchemaListing(): any;
|
|
733
|
+
static EntityConfiguration(): any;
|
|
734
|
+
static GetAppCatalogEntityConfiguration(): any;
|
|
735
|
+
static ProductSortOn(): any;
|
|
736
|
+
static ProductFiltersKey(): any;
|
|
737
|
+
static ProductFiltersValue(): any;
|
|
738
|
+
static ProductFilters(): any;
|
|
739
|
+
static GetCollectionQueryOptionResponse(): any;
|
|
740
|
+
static CollectionQuery(): any;
|
|
741
|
+
static Media1(): any;
|
|
742
|
+
static BannerImage(): any;
|
|
743
|
+
static ImageUrls(): any;
|
|
744
|
+
static GetCollectionDetailNest(): any;
|
|
745
|
+
static CollectionListingFilterTag(): any;
|
|
746
|
+
static CollectionListingFilterType(): any;
|
|
747
|
+
static CollectionListingFilter(): any;
|
|
748
|
+
static GetCollectionListingResponse(): any;
|
|
749
|
+
static UserInfo(): any;
|
|
750
|
+
static CollectionBadge(): any;
|
|
751
|
+
static CollectionSchedule(): any;
|
|
752
|
+
static CollectionImage(): any;
|
|
753
|
+
static CollectionBanner(): any;
|
|
754
|
+
static SeoDetail(): any;
|
|
755
|
+
static CreateCollection(): any;
|
|
756
|
+
static CollectionCreateResponse(): any;
|
|
757
|
+
static CollectionDetailResponse(): any;
|
|
758
|
+
static UpdateCollection(): any;
|
|
759
|
+
static ProductDetailAttribute(): any;
|
|
760
|
+
static ProductDetailGroupedAttribute(): any;
|
|
761
|
+
static Price1(): any;
|
|
762
|
+
static ProductListingPrice(): any;
|
|
763
|
+
static ProductBrand(): any;
|
|
764
|
+
static ProductListingDetail(): any;
|
|
765
|
+
static GetCollectionItemsResponse(): any;
|
|
766
|
+
static ItemQueryForUserCollection(): any;
|
|
767
|
+
static CollectionItemRequest(): any;
|
|
768
|
+
static UpdatedResponse(): any;
|
|
769
|
+
static CatalogInsightBrand(): any;
|
|
770
|
+
static CatalogInsightItem(): any;
|
|
771
|
+
static CatalogInsightResponse(): any;
|
|
772
|
+
static CrossSellingData(): any;
|
|
773
|
+
static CrossSellingResponse(): any;
|
|
774
|
+
static OptInPostRequest(): any;
|
|
775
|
+
static CompanyOptIn(): any;
|
|
776
|
+
static GetOptInPlatform(): any;
|
|
777
|
+
static OptinCompanyDetail(): any;
|
|
778
|
+
static CompanyBrandDetail(): any;
|
|
779
|
+
static OptinCompanyBrandDetailsView(): any;
|
|
780
|
+
static OptinCompanyMetrics(): any;
|
|
781
|
+
static StoreDetail(): any;
|
|
782
|
+
static OptinStoreDetails(): any;
|
|
783
|
+
static AttributeMasterFilter(): any;
|
|
784
|
+
static AttributeSchemaRange(): any;
|
|
785
|
+
static AttributeMaster(): any;
|
|
786
|
+
static AttributeMasterDetails(): any;
|
|
787
|
+
static AttributeMasterMandatoryDetails(): any;
|
|
788
|
+
static AttributeMasterMeta(): any;
|
|
789
|
+
static GenderDetail(): any;
|
|
790
|
+
static ProdcutTemplateCategoriesResponse(): any;
|
|
791
|
+
static PTErrorResponse(): any;
|
|
792
|
+
static UserSerializer(): any;
|
|
793
|
+
static GetDepartment(): any;
|
|
794
|
+
static DepartmentsResponse(): any;
|
|
795
|
+
static DepartmentErrorResponse(): any;
|
|
796
|
+
static DepartmentCreateUpdate(): any;
|
|
797
|
+
static DepartmentCreateResponse(): any;
|
|
798
|
+
static DepartmentCreateErrorResponse(): any;
|
|
799
|
+
static UserDetail(): any;
|
|
800
|
+
static DepartmentModel(): any;
|
|
801
|
+
static ProductTemplate(): any;
|
|
802
|
+
static TemplatesResponse(): any;
|
|
803
|
+
static TemplateDetails(): any;
|
|
804
|
+
static Properties(): any;
|
|
805
|
+
static GlobalValidation(): any;
|
|
806
|
+
static TemplateValidationData(): any;
|
|
807
|
+
static TemplatesValidationResponse(): any;
|
|
808
|
+
static InventoryValidationResponse(): any;
|
|
809
|
+
static HSNData(): any;
|
|
810
|
+
static HSNCodesResponse(): any;
|
|
811
|
+
static ProductDownloadItemsData(): any;
|
|
812
|
+
static VerifiedBy(): any;
|
|
813
|
+
static ProductDownloadsItems(): any;
|
|
814
|
+
static ProductDownloadsResponse(): any;
|
|
815
|
+
static ProductConfigurationDownloads(): any;
|
|
816
|
+
static Hierarchy(): any;
|
|
817
|
+
static CategoryMappingValues(): any;
|
|
818
|
+
static CategoryMapping(): any;
|
|
819
|
+
static Media2(): any;
|
|
820
|
+
static Category(): any;
|
|
821
|
+
static CategoryResponse(): any;
|
|
822
|
+
static CategoryRequestBody(): any;
|
|
823
|
+
static CategoryCreateResponse(): any;
|
|
824
|
+
static SingleCategoryResponse(): any;
|
|
825
|
+
static CategoryUpdateResponse(): any;
|
|
826
|
+
static ProductPublished(): any;
|
|
827
|
+
static Image(): any;
|
|
828
|
+
static Logo(): any;
|
|
829
|
+
static Brand(): any;
|
|
830
|
+
static Product(): any;
|
|
831
|
+
static ProductListingResponse(): any;
|
|
832
|
+
static ProductPublish(): any;
|
|
833
|
+
static ReturnConfig(): any;
|
|
834
|
+
static TeaserTag(): any;
|
|
835
|
+
static NetQuantity(): any;
|
|
836
|
+
static CustomOrder(): any;
|
|
837
|
+
static TaxIdentifier(): any;
|
|
838
|
+
static Trader(): any;
|
|
839
|
+
static ProductCreateUpdate(): any;
|
|
840
|
+
static AttributeMasterSerializer(): any;
|
|
841
|
+
static ProductAttributesResponse(): any;
|
|
842
|
+
static ValidateProduct(): any;
|
|
843
|
+
static UserDetail1(): any;
|
|
844
|
+
static ProductBulkRequest(): any;
|
|
845
|
+
static ProductBulkRequestList(): any;
|
|
846
|
+
static UserInfo1(): any;
|
|
847
|
+
static BulkJob(): any;
|
|
848
|
+
static BulkResponse(): any;
|
|
849
|
+
static BulkProductRequest(): any;
|
|
850
|
+
static NestedTags(): any;
|
|
851
|
+
static ProductTagsViewResponse(): any;
|
|
852
|
+
static UserCommon(): any;
|
|
853
|
+
static Items(): any;
|
|
854
|
+
static BulkAssetResponse(): any;
|
|
855
|
+
static ProductBulkAssets(): any;
|
|
856
|
+
static ProductSizeDeleteDataResponse(): any;
|
|
857
|
+
static ProductSizeDeleteResponse(): any;
|
|
858
|
+
static InventoryResponse(): any;
|
|
859
|
+
static InventoryResponsePaginated(): any;
|
|
860
|
+
static ItemQuery(): any;
|
|
861
|
+
static SetSize(): any;
|
|
862
|
+
static SizeDistribution(): any;
|
|
863
|
+
static InventorySet(): any;
|
|
864
|
+
static GTIN(): any;
|
|
865
|
+
static InvSize(): any;
|
|
866
|
+
static InventoryRequest(): any;
|
|
867
|
+
static CompanyMeta(): any;
|
|
868
|
+
static DimensionResponse(): any;
|
|
869
|
+
static WeightResponse(): any;
|
|
870
|
+
static ReturnConfig1(): any;
|
|
871
|
+
static StoreMeta(): any;
|
|
872
|
+
static ManufacturerResponse(): any;
|
|
873
|
+
static PriceMeta(): any;
|
|
874
|
+
static QuantityBase(): any;
|
|
875
|
+
static BrandMeta(): any;
|
|
876
|
+
static Trader1(): any;
|
|
877
|
+
static InventorySellerResponse(): any;
|
|
878
|
+
static InventorySellerIdentifierResponsePaginated(): any;
|
|
879
|
+
static BulkInventoryGetItems(): any;
|
|
880
|
+
static BulkInventoryGet(): any;
|
|
881
|
+
static InventoryJobPayload(): any;
|
|
882
|
+
static InventoryBulkRequest(): any;
|
|
883
|
+
static InventoryExportJob(): any;
|
|
884
|
+
static InventoryExportRequest(): any;
|
|
885
|
+
static InventoryExportResponse(): any;
|
|
886
|
+
static FilerList(): any;
|
|
887
|
+
static InventoryConfig(): any;
|
|
888
|
+
static InventoryPayload(): any;
|
|
889
|
+
static InventoryRequestSchemaV2(): any;
|
|
890
|
+
static InventoryFailedReason(): any;
|
|
891
|
+
static InventoryResponseItem(): any;
|
|
892
|
+
static InventoryUpdateResponse(): any;
|
|
893
|
+
static HsnCodesObject(): any;
|
|
894
|
+
static PageResponse(): any;
|
|
895
|
+
static HsnCodesListingResponse(): any;
|
|
896
|
+
static HsnUpsert(): any;
|
|
897
|
+
static HsnCode(): any;
|
|
898
|
+
static BulkHsnUpsert(): any;
|
|
899
|
+
static BulkHsnResponse(): any;
|
|
900
|
+
static TaxSlab(): any;
|
|
901
|
+
static HSNDataInsertV2(): any;
|
|
902
|
+
static HsnCodesListingResponseSchemaV2(): any;
|
|
903
|
+
static BrandItem(): any;
|
|
904
|
+
static BrandListingResponse(): any;
|
|
905
|
+
static Department(): any;
|
|
906
|
+
static DepartmentResponse(): any;
|
|
907
|
+
static ThirdLevelChild(): any;
|
|
908
|
+
static SecondLevelChild(): any;
|
|
909
|
+
static Child(): any;
|
|
910
|
+
static CategoryItems(): any;
|
|
911
|
+
static DepartmentCategoryTree(): any;
|
|
912
|
+
static DepartmentIdentifier(): any;
|
|
913
|
+
static CategoryListingResponse(): any;
|
|
914
|
+
static ApplicationProductListingResponse(): any;
|
|
915
|
+
static ProductDetail(): any;
|
|
916
|
+
static InventoryPage(): any;
|
|
917
|
+
static InventoryStockResponse(): any;
|
|
918
|
+
static ArticleQuery(): any;
|
|
919
|
+
static AssignStoreArticle(): any;
|
|
920
|
+
static AssignStore(): any;
|
|
921
|
+
static ArticleAssignment1(): any;
|
|
922
|
+
static StoreAssignResponse(): any;
|
|
923
|
+
static SellerPhoneNumber(): any;
|
|
924
|
+
static LocationManagerSerializer(): any;
|
|
925
|
+
static InvoiceCredSerializer(): any;
|
|
926
|
+
static InvoiceDetailsSerializer(): any;
|
|
927
|
+
static UserSerializer1(): any;
|
|
928
|
+
static GetAddressSerializer(): any;
|
|
929
|
+
static UserSerializer2(): any;
|
|
930
|
+
static GetCompanySerializer(): any;
|
|
931
|
+
static ProductReturnConfigSerializer(): any;
|
|
932
|
+
static Document(): any;
|
|
933
|
+
static LocationTimingSerializer(): any;
|
|
934
|
+
static LocationDayWiseSerializer(): any;
|
|
935
|
+
static LocationIntegrationType(): any;
|
|
936
|
+
static GetLocationSerializer(): any;
|
|
937
|
+
static LocationListSerializer(): any;
|
|
938
|
+
static ApplicationBrandJson(): any;
|
|
939
|
+
static ApplicationCategoryJson(): any;
|
|
940
|
+
static ApplicationDepartment(): any;
|
|
941
|
+
static ApplicationDepartmentListingResponse(): any;
|
|
942
|
+
static ApplicationDepartmentJson(): any;
|
|
943
|
+
static ApplicationStoreJson(): any;
|
|
944
|
+
static BusinessCountryInfo(): any;
|
|
945
|
+
static CompanyTaxesSerializer(): any;
|
|
946
|
+
static Website(): any;
|
|
947
|
+
static BusinessDetails(): any;
|
|
948
|
+
static ContactDetails(): any;
|
|
949
|
+
static GetCompanyProfileSerializerResponse(): any;
|
|
950
|
+
static CompanyTaxesSerializer1(): any;
|
|
951
|
+
static CreateUpdateAddressSerializer(): any;
|
|
952
|
+
static UpdateCompany(): any;
|
|
953
|
+
static ProfileSuccessResponse(): any;
|
|
954
|
+
static DocumentsObj(): any;
|
|
955
|
+
static MetricsSerializer(): any;
|
|
956
|
+
static BrandBannerSerializer(): any;
|
|
957
|
+
static GetBrandResponseSerializer(): any;
|
|
958
|
+
static CreateUpdateBrandRequestSerializer(): any;
|
|
959
|
+
static CompanySocialAccounts(): any;
|
|
960
|
+
static CompanyDetails(): any;
|
|
961
|
+
static CompanySerializer(): any;
|
|
962
|
+
static CompanyBrandSerializer(): any;
|
|
963
|
+
static CompanyBrandListSerializer(): any;
|
|
964
|
+
static CompanyBrandPostRequestSerializer(): any;
|
|
965
|
+
static LocationSerializer(): any;
|
|
966
|
+
static BulkLocationSerializer(): any;
|
|
967
|
+
static _ArticleQuery(): any;
|
|
968
|
+
static _ArticleAssignment(): any;
|
|
969
|
+
static _AssignStoreArticle(): any;
|
|
970
|
+
static AssignStoreRequestValidator(): any;
|
|
971
|
+
static AssignStoreResponseSerializer(): any;
|
|
972
|
+
static FailedResponse(): any;
|
|
973
|
+
static CDN(): any;
|
|
974
|
+
static Upload(): any;
|
|
975
|
+
static StartResponse(): any;
|
|
976
|
+
static StartRequest(): any;
|
|
977
|
+
static CompleteResponse(): any;
|
|
978
|
+
static Opts(): any;
|
|
979
|
+
static CopyFileTask(): any;
|
|
980
|
+
static BulkUploadResponse(): any;
|
|
981
|
+
static ReqConfiguration(): any;
|
|
982
|
+
static Destination(): any;
|
|
983
|
+
static BulkRequest(): any;
|
|
984
|
+
static Urls(): any;
|
|
985
|
+
static SignUrlResponse(): any;
|
|
986
|
+
static SignUrlRequest(): any;
|
|
987
|
+
static DbRecord(): any;
|
|
988
|
+
static BrowseResponse(): any;
|
|
989
|
+
static RedirectDevice(): any;
|
|
990
|
+
static WebRedirect(): any;
|
|
991
|
+
static Redirects(): any;
|
|
992
|
+
static CampaignShortLink(): any;
|
|
993
|
+
static Attribution(): any;
|
|
994
|
+
static SocialMediaTags(): any;
|
|
995
|
+
static ShortLinkReq(): any;
|
|
996
|
+
static UrlInfo(): any;
|
|
997
|
+
static ShortLinkRes(): any;
|
|
998
|
+
static ShortLinkList(): any;
|
|
999
|
+
static ErrorRes(): any;
|
|
1000
|
+
static DataTresholdDTO(): any;
|
|
1001
|
+
static GenericDTO(): any;
|
|
1002
|
+
static JobConfigDTO(): any;
|
|
1003
|
+
static TaskDTO(): any;
|
|
1004
|
+
static ResponseEnvelopeString(): any;
|
|
1005
|
+
static KafkaMetaModel(): any;
|
|
1006
|
+
static SuppressStoreModel(): any;
|
|
1007
|
+
static SuppressStorePayload(): any;
|
|
1008
|
+
static KafkaResponse(): any;
|
|
1009
|
+
static ResponseEnvelopeKafkaResponse(): any;
|
|
1010
|
+
static GCompany(): any;
|
|
1011
|
+
static GStore(): any;
|
|
1012
|
+
static Metum(): any;
|
|
1013
|
+
static ResponseEnvelopeListSlingshotConfigurationDetail(): any;
|
|
1014
|
+
static SlingshotConfigurationDetail(): any;
|
|
1015
|
+
static SlingshotIntegration(): any;
|
|
1016
|
+
static StoreData(): any;
|
|
1017
|
+
static AWSS3config(): any;
|
|
1018
|
+
static ArchiveConfig(): any;
|
|
1019
|
+
static Audit(): any;
|
|
1020
|
+
static CatalogMasterConfig(): any;
|
|
1021
|
+
static CompanyConfig(): any;
|
|
1022
|
+
static DBConfig(): any;
|
|
1023
|
+
static DBConnectionProfile(): any;
|
|
1024
|
+
static DBParamConfig(): any;
|
|
1025
|
+
static DefaultHeadersDTO(): any;
|
|
1026
|
+
static DocMappingConfig(): any;
|
|
1027
|
+
static EmailConfig(): any;
|
|
1028
|
+
static FTPConfig(): any;
|
|
1029
|
+
static FileConfig(): any;
|
|
1030
|
+
static GoogleSpreadSheetConfig(): any;
|
|
1031
|
+
static HttpConfig(): any;
|
|
1032
|
+
static JobConfig(): any;
|
|
1033
|
+
static JobConfigRawDTO(): any;
|
|
1034
|
+
static JsonDocConfig(): any;
|
|
1035
|
+
static LocalFileConfig(): any;
|
|
1036
|
+
static MongoDocConfig(): any;
|
|
1037
|
+
static OAuthConfig(): any;
|
|
1038
|
+
static ProcessConfig(): any;
|
|
1039
|
+
static PropBeanConfig(): any;
|
|
1040
|
+
static PropBeanDTO(): any;
|
|
1041
|
+
static ResponseEnvelopeListJobConfigRawDTO(): any;
|
|
1042
|
+
static SFTPConfig(): any;
|
|
1043
|
+
static Send(): any;
|
|
1044
|
+
static StoreConfig(): any;
|
|
1045
|
+
static StoreFilter(): any;
|
|
1046
|
+
static TaskConfig(): any;
|
|
1047
|
+
static TaskParam(): any;
|
|
1048
|
+
static TaskStepConfig(): any;
|
|
1049
|
+
static JobStepsDTO(): any;
|
|
1050
|
+
static ResponseEnvelopeListJobStepsDTO(): any;
|
|
1051
|
+
static ResponseEnvelopeListJobConfigDTO(): any;
|
|
1052
|
+
static ResponseEnvelopeJobConfigDTO(): any;
|
|
1053
|
+
static JobHistoryDto(): any;
|
|
1054
|
+
static JobMetricsDto(): any;
|
|
1055
|
+
static ResponseEnvelopeJobMetricsDto(): any;
|
|
1056
|
+
static JobConfigListDTO(): any;
|
|
1057
|
+
static ResponseEnvelopeListJobConfigListDTO(): any;
|
|
1058
|
+
static ApplicationInventory(): any;
|
|
1059
|
+
static AppInventoryConfig(): any;
|
|
1060
|
+
static InventoryBrand(): any;
|
|
1061
|
+
static InventoryStore(): any;
|
|
1062
|
+
static AppStoreRules(): any;
|
|
1063
|
+
static InventoryCategory(): any;
|
|
1064
|
+
static InventoryPrice(): any;
|
|
1065
|
+
static InventoryDiscount(): any;
|
|
1066
|
+
static AuthenticationConfig(): any;
|
|
1067
|
+
static ArticleAssignmentConfig(): any;
|
|
1068
|
+
static ArticleAssignmentRules(): any;
|
|
1069
|
+
static StorePriority(): any;
|
|
1070
|
+
static AppCartConfig(): any;
|
|
1071
|
+
static DeliveryCharges(): any;
|
|
1072
|
+
static Charges(): any;
|
|
1073
|
+
static AppPaymentConfig(): any;
|
|
1074
|
+
static CallbackUrl(): any;
|
|
1075
|
+
static Methods(): any;
|
|
1076
|
+
static PaymentModeConfig(): any;
|
|
1077
|
+
static PaymentSelectionLock(): any;
|
|
1078
|
+
static AppOrderConfig(): any;
|
|
1079
|
+
static AppLogisticsConfig(): any;
|
|
1080
|
+
static LoyaltyPointsConfig(): any;
|
|
1081
|
+
static AppInventoryPartialUpdate(): any;
|
|
1082
|
+
static BrandCompanyInfo(): any;
|
|
1083
|
+
static CompanyByBrandsRequest(): any;
|
|
1084
|
+
static CompanyByBrandsResponse(): any;
|
|
1085
|
+
static StoreByBrandsRequest(): any;
|
|
1086
|
+
static StoreByBrandsResponse(): any;
|
|
1087
|
+
static BrandStoreInfo(): any;
|
|
1088
|
+
static CompanyBrandInfo(): any;
|
|
1089
|
+
static BrandsByCompanyResponse(): any;
|
|
1090
|
+
static CreateApplicationRequest(): any;
|
|
1091
|
+
static CreateAppResponse(): any;
|
|
1092
|
+
static ApplicationsResponse(): any;
|
|
1093
|
+
static MobileAppConfiguration(): any;
|
|
1094
|
+
static LandingImage(): any;
|
|
1095
|
+
static SplashImage(): any;
|
|
1096
|
+
static MobileAppConfigRequest(): any;
|
|
1097
|
+
static BuildVersionHistory(): any;
|
|
1098
|
+
static BuildVersion(): any;
|
|
1099
|
+
static AppSupportedCurrency(): any;
|
|
1100
|
+
static DefaultCurrency(): any;
|
|
1101
|
+
static CurrencyConfig(): any;
|
|
1102
|
+
static DomainAdd(): any;
|
|
1103
|
+
static DomainAddRequest(): any;
|
|
1104
|
+
static DomainsResponse(): any;
|
|
1105
|
+
static UpdateDomain(): any;
|
|
1106
|
+
static UpdateDomainTypeRequest(): any;
|
|
1107
|
+
static DomainStatusRequest(): any;
|
|
1108
|
+
static DomainStatus(): any;
|
|
1109
|
+
static DomainStatusResponse(): any;
|
|
1110
|
+
static DomainSuggestionsRequest(): any;
|
|
1111
|
+
static DomainSuggestion(): any;
|
|
1112
|
+
static DomainSuggestionsResponse(): any;
|
|
1113
|
+
static GetIntegrationsOptInsResponse(): any;
|
|
1114
|
+
static IntegrationOptIn(): any;
|
|
1115
|
+
static Validators(): any;
|
|
1116
|
+
static CompanyValidator(): any;
|
|
1117
|
+
static JsonSchema(): any;
|
|
1118
|
+
static StoreValidator(): any;
|
|
1119
|
+
static InventoryValidator(): any;
|
|
1120
|
+
static OrderValidator(): any;
|
|
1121
|
+
static IntegrationMeta(): any;
|
|
1122
|
+
static Integration(): any;
|
|
1123
|
+
static IntegrationConfigResponse(): any;
|
|
1124
|
+
static IntegrationLevel(): any;
|
|
1125
|
+
static UpdateIntegrationLevelRequest(): any;
|
|
1126
|
+
static OptedStoreIntegration(): any;
|
|
1127
|
+
static OtherEntity(): any;
|
|
1128
|
+
static LastPatch(): any;
|
|
1129
|
+
static OtherEntityData(): any;
|
|
1130
|
+
static App(): any;
|
|
1131
|
+
static AppInventory(): any;
|
|
1132
|
+
static AppDomain(): any;
|
|
1133
|
+
static CompaniesResponse(): any;
|
|
1134
|
+
static AppInventoryCompanies(): any;
|
|
1135
|
+
static StoresResponse(): any;
|
|
1136
|
+
static AppInventoryStores(): any;
|
|
1137
|
+
static FilterOrderingStoreRequest(): any;
|
|
1138
|
+
static DeploymentMeta(): any;
|
|
1139
|
+
static OrderingStoreConfig(): any;
|
|
1140
|
+
static OtherSellerCompany(): any;
|
|
1141
|
+
static OtherSellerApplication(): any;
|
|
1142
|
+
static OtherSellerApplications(): any;
|
|
1143
|
+
static OptedApplicationResponse(): any;
|
|
1144
|
+
static OptedCompany(): any;
|
|
1145
|
+
static OptedInventory(): any;
|
|
1146
|
+
static OptType(): any;
|
|
1147
|
+
static OptedStore(): any;
|
|
1148
|
+
static OptOutInventory(): any;
|
|
1149
|
+
static TokenResponse(): any;
|
|
1150
|
+
static Tokens(): any;
|
|
1151
|
+
static Firebase(): any;
|
|
1152
|
+
static Credentials(): any;
|
|
1153
|
+
static Ios(): any;
|
|
1154
|
+
static Android(): any;
|
|
1155
|
+
static Moengage(): any;
|
|
1156
|
+
static MoengageCredentials(): any;
|
|
1157
|
+
static Segment(): any;
|
|
1158
|
+
static SegmentCredentials(): any;
|
|
1159
|
+
static Gtm(): any;
|
|
1160
|
+
static GtmCredentials(): any;
|
|
1161
|
+
static Freshchat(): any;
|
|
1162
|
+
static FreshchatCredentials(): any;
|
|
1163
|
+
static Safetynet(): any;
|
|
1164
|
+
static SafetynetCredentials(): any;
|
|
1165
|
+
static FyndRewards(): any;
|
|
1166
|
+
static FyndRewardsCredentials(): any;
|
|
1167
|
+
static GoogleMap(): any;
|
|
1168
|
+
static GoogleMapCredentials(): any;
|
|
1169
|
+
static RewardPointsConfig(): any;
|
|
1170
|
+
static Credit(): any;
|
|
1171
|
+
static Debit(): any;
|
|
1172
|
+
static ProductDetailFeature(): any;
|
|
1173
|
+
static LaunchPage(): any;
|
|
1174
|
+
static LandingPageFeature(): any;
|
|
1175
|
+
static RegistrationPageFeature(): any;
|
|
1176
|
+
static AppFeature(): any;
|
|
1177
|
+
static HomePageFeature(): any;
|
|
1178
|
+
static CommonFeature(): any;
|
|
1179
|
+
static CommunicationOptinDialogFeature(): any;
|
|
1180
|
+
static DeploymentStoreSelectionFeature(): any;
|
|
1181
|
+
static ListingPriceFeature(): any;
|
|
1182
|
+
static CurrencyFeature(): any;
|
|
1183
|
+
static RevenueEngineFeature(): any;
|
|
1184
|
+
static FeedbackFeature(): any;
|
|
1185
|
+
static CompareProductsFeature(): any;
|
|
1186
|
+
static CartFeature(): any;
|
|
1187
|
+
static QrFeature(): any;
|
|
1188
|
+
static PcrFeature(): any;
|
|
1189
|
+
static OrderFeature(): any;
|
|
1190
|
+
static AppFeatureRequest(): any;
|
|
1191
|
+
static AppFeatureResponse(): any;
|
|
1192
|
+
static UnhandledError(): any;
|
|
1193
|
+
static InvalidPayloadRequest(): any;
|
|
1194
|
+
static SuccessMessageResponse(): any;
|
|
1195
|
+
static InventoryBrandRule(): any;
|
|
1196
|
+
static StoreCriteriaRule(): any;
|
|
1197
|
+
static InventoryStoreRule(): any;
|
|
1198
|
+
static InventoryPaymentConfig(): any;
|
|
1199
|
+
static StorePriorityRule(): any;
|
|
1200
|
+
static ArticleAssignmentRule(): any;
|
|
1201
|
+
static InventoryArticleAssignment(): any;
|
|
1202
|
+
static CompanyAboutAddress(): any;
|
|
1203
|
+
static UserEmail(): any;
|
|
1204
|
+
static UserPhoneNumber(): any;
|
|
1205
|
+
static ApplicationInformation(): any;
|
|
1206
|
+
static InformationAddress(): any;
|
|
1207
|
+
static InformationPhone(): any;
|
|
1208
|
+
static InformationSupport(): any;
|
|
1209
|
+
static SocialLinks(): any;
|
|
1210
|
+
static FacebookLink(): any;
|
|
1211
|
+
static InstagramLink(): any;
|
|
1212
|
+
static TwitterLink(): any;
|
|
1213
|
+
static PinterestLink(): any;
|
|
1214
|
+
static GooglePlusLink(): any;
|
|
1215
|
+
static YoutubeLink(): any;
|
|
1216
|
+
static LinkedInLink(): any;
|
|
1217
|
+
static VimeoLink(): any;
|
|
1218
|
+
static BlogLink(): any;
|
|
1219
|
+
static Links(): any;
|
|
1220
|
+
static BusinessHighlights(): any;
|
|
1221
|
+
static ApplicationDetail(): any;
|
|
1222
|
+
static CurrenciesResponse(): any;
|
|
1223
|
+
static AppCurrencyResponse(): any;
|
|
1224
|
+
static StoreLatLong(): any;
|
|
1225
|
+
static OptedStoreAddress(): any;
|
|
1226
|
+
static OrderingStore(): any;
|
|
1227
|
+
static OrderingStores(): any;
|
|
1228
|
+
static OrderingStoresResponse(): any;
|
|
1229
|
+
static Identifier(): any;
|
|
1230
|
+
static Validity(): any;
|
|
1231
|
+
static CouponDateMeta(): any;
|
|
1232
|
+
static Ownership(): any;
|
|
1233
|
+
static Validation(): any;
|
|
1234
|
+
static BulkBundleRestriction(): any;
|
|
1235
|
+
static PostOrder(): any;
|
|
1236
|
+
static UsesRemaining(): any;
|
|
1237
|
+
static UsesRestriction(): any;
|
|
1238
|
+
static PriceRange(): any;
|
|
1239
|
+
static PaymentAllowValue(): any;
|
|
1240
|
+
static PaymentModes(): any;
|
|
1241
|
+
static Restrictions(): any;
|
|
1242
|
+
static DisplayMetaDict(): any;
|
|
1243
|
+
static DisplayMeta(): any;
|
|
1244
|
+
static State(): any;
|
|
1245
|
+
static Rule(): any;
|
|
1246
|
+
static CouponAuthor(): any;
|
|
1247
|
+
static CouponAction(): any;
|
|
1248
|
+
static RuleDefinition(): any;
|
|
1249
|
+
static CouponSchedule(): any;
|
|
1250
|
+
static CouponAdd(): any;
|
|
1251
|
+
static CouponsResponse(): any;
|
|
1252
|
+
static SuccessMessage(): any;
|
|
1253
|
+
static OperationErrorResponse(): any;
|
|
1254
|
+
static CouponUpdate(): any;
|
|
1255
|
+
static CouponPartialUpdate(): any;
|
|
1256
|
+
static PromotionDateMeta(): any;
|
|
1257
|
+
static Visibility(): any;
|
|
1258
|
+
static DiscountOffer(): any;
|
|
1259
|
+
static CompareObject(): any;
|
|
1260
|
+
static ItemCriteria(): any;
|
|
1261
|
+
static DiscountRule(): any;
|
|
1262
|
+
static PostOrder1(): any;
|
|
1263
|
+
static UsesRemaining1(): any;
|
|
1264
|
+
static UsesRestriction1(): any;
|
|
1265
|
+
static UserRegistered(): any;
|
|
1266
|
+
static PaymentAllowValue1(): any;
|
|
1267
|
+
static PromotionPaymentModes(): any;
|
|
1268
|
+
static Restrictions1(): any;
|
|
1269
|
+
static PromotionAuthor(): any;
|
|
1270
|
+
static PromotionAction(): any;
|
|
1271
|
+
static Ownership1(): any;
|
|
1272
|
+
static DisplayMeta1(): any;
|
|
1273
|
+
static PromotionSchedule(): any;
|
|
1274
|
+
static PromotionListItem(): any;
|
|
1275
|
+
static PromotionsResponse(): any;
|
|
1276
|
+
static PromotionAdd(): any;
|
|
1277
|
+
static PromotionUpdate(): any;
|
|
1278
|
+
static PromotionPartialUpdate(): any;
|
|
1279
|
+
static CartItem(): any;
|
|
1280
|
+
static OpenapiCartDetailsRequest(): any;
|
|
1281
|
+
static RawBreakup(): any;
|
|
1282
|
+
static DisplayBreakup(): any;
|
|
1283
|
+
static CouponBreakup(): any;
|
|
1284
|
+
static LoyaltyPoints(): any;
|
|
1285
|
+
static CartBreakup(): any;
|
|
1286
|
+
static ProductImage(): any;
|
|
1287
|
+
static BaseInfo(): any;
|
|
1288
|
+
static CategoryInfo(): any;
|
|
1289
|
+
static ActionQuery(): any;
|
|
1290
|
+
static ProductAction(): any;
|
|
1291
|
+
static CartProduct(): any;
|
|
1292
|
+
static ProductPrice(): any;
|
|
1293
|
+
static ProductPriceInfo(): any;
|
|
1294
|
+
static CartProductIdentifer(): any;
|
|
1295
|
+
static AppliedPromotion(): any;
|
|
1296
|
+
static PromoMeta(): any;
|
|
1297
|
+
static ProductAvailability(): any;
|
|
1298
|
+
static BasePrice(): any;
|
|
1299
|
+
static ArticlePriceInfo(): any;
|
|
1300
|
+
static ProductArticle(): any;
|
|
1301
|
+
static CartProductInfo(): any;
|
|
1302
|
+
static OpenapiCartDetailsResponse(): any;
|
|
1303
|
+
static OpenApiErrorResponse(): any;
|
|
1304
|
+
static ShippingAddress(): any;
|
|
1305
|
+
static OpenApiCartServiceabilityRequest(): any;
|
|
1306
|
+
static PromiseFormatted(): any;
|
|
1307
|
+
static PromiseTimestamp(): any;
|
|
1308
|
+
static ShipmentPromise(): any;
|
|
1309
|
+
static OpenApiCartServiceabilityResponse(): any;
|
|
1310
|
+
static OpenApiFiles(): any;
|
|
1311
|
+
static CartItemMeta(): any;
|
|
1312
|
+
static OpenApiOrderItem(): any;
|
|
1313
|
+
static OpenApiPlatformCheckoutReq(): any;
|
|
1314
|
+
static OpenApiCheckoutResponse(): any;
|
|
1315
|
+
static AbandonedCart(): any;
|
|
1316
|
+
static AbandonedCartResponse(): any;
|
|
1317
|
+
static CartCurrency(): any;
|
|
1318
|
+
static CartDetailResponse(): any;
|
|
1319
|
+
static AddProductCart(): any;
|
|
1320
|
+
static AddCartRequest(): any;
|
|
1321
|
+
static AddCartDetailResponse(): any;
|
|
1322
|
+
static UpdateProductCart(): any;
|
|
1323
|
+
static UpdateCartRequest(): any;
|
|
1324
|
+
static UpdateCartDetailResponse(): any;
|
|
1325
|
+
static AppUser(): any;
|
|
1326
|
+
static E(): any;
|
|
1327
|
+
static Giveaway(): any;
|
|
1328
|
+
static GiveawayResponse(): any;
|
|
1329
|
+
static HistoryPretty(): any;
|
|
1330
|
+
static HistoryRes(): any;
|
|
1331
|
+
static Offer(): any;
|
|
1332
|
+
static Points(): any;
|
|
1333
|
+
static Referral(): any;
|
|
1334
|
+
static RewardUser(): any;
|
|
1335
|
+
static RewardsAudience(): any;
|
|
1336
|
+
static RewardsRule(): any;
|
|
1337
|
+
static Schedule(): any;
|
|
1338
|
+
static ShareMessages(): any;
|
|
1339
|
+
static UserRes(): any;
|
|
1340
|
+
static StatGroup(): any;
|
|
1341
|
+
static StatsGroups(): any;
|
|
1342
|
+
static StatsGroupComponent(): any;
|
|
1343
|
+
static StatsGroupComponents(): any;
|
|
1344
|
+
static StatsRes(): any;
|
|
1345
|
+
static ReceivedAt(): any;
|
|
1346
|
+
static AbandonCartsDetail(): any;
|
|
1347
|
+
static AbandonCartsList(): any;
|
|
1348
|
+
static AbandonCartDetail(): any;
|
|
1349
|
+
static ExportJobReq(): any;
|
|
1350
|
+
static ExportJobRes(): any;
|
|
1351
|
+
static ExportJobStatusRes(): any;
|
|
1352
|
+
static GetLogsListReq(): any;
|
|
1353
|
+
static MkpLogsResp(): any;
|
|
1354
|
+
static GetLogsListRes(): any;
|
|
1355
|
+
static SearchLogReq(): any;
|
|
1356
|
+
static LogInfo(): any;
|
|
1357
|
+
static SearchLogRes(): any;
|
|
1358
|
+
static ValidityObject(): any;
|
|
1359
|
+
static CreateUpdateDiscount(): any;
|
|
1360
|
+
static DiscountJob(): any;
|
|
1361
|
+
static ListOrCalender(): any;
|
|
1362
|
+
static FileJobResponse(): any;
|
|
1363
|
+
static DownloadFileJob(): any;
|
|
1364
|
+
static CancelJobResponse(): any;
|
|
1365
|
+
static UserDetails(): any;
|
|
1366
|
+
static BadRequestObject(): any;
|
|
1367
|
+
static AddProxyReq(): any;
|
|
1368
|
+
static AddProxyResponse(): any;
|
|
1369
|
+
static APIError(): any;
|
|
1370
|
+
static RemoveProxyResponse(): any;
|
|
1371
|
+
static EventConfig(): any;
|
|
1372
|
+
static EventConfigList(): any;
|
|
1373
|
+
static EventConfigResponse(): any;
|
|
1374
|
+
static SubscriberConfigList(): any;
|
|
1375
|
+
static EventProcessedStatus(): any;
|
|
1376
|
+
static EventPayload(): any;
|
|
1377
|
+
static SubscriberConfig(): any;
|
|
1378
|
+
static SubscriberResponse(): any;
|
|
1379
|
+
static SubscriberEvent(): any;
|
|
1380
|
+
static AuthMeta(): any;
|
|
1381
|
+
static Association(): any;
|
|
1382
|
+
static EventConfigBase(): any;
|
|
1383
|
+
static SubscriberStatus(): any;
|
|
1384
|
+
static RequestBodyAuditLog(): any;
|
|
1385
|
+
static CreateLogResponse(): any;
|
|
1386
|
+
static LogMetaObj(): any;
|
|
1387
|
+
static EntityObject(): any;
|
|
1388
|
+
static LogSchemaResponse(): any;
|
|
1389
|
+
static LogDocs(): any;
|
|
1390
|
+
static EntityObj(): any;
|
|
1391
|
+
static Modifier(): any;
|
|
1392
|
+
static DeviceInfo(): any;
|
|
1393
|
+
static Location(): any;
|
|
1394
|
+
static EntityTypesResponse(): any;
|
|
1395
|
+
static EntityTypeObj(): any;
|
|
1396
|
+
}
|