gitextract_ceduv36k/ ├── .editorconfig ├── .gitee/ │ ├── ISSUE_TEMPLATE.zh-CN.md │ └── PULL_REQUEST_TEMPLATE.zh-CN.md ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 1_bug_report.md │ │ ├── 2_feature_request.md │ │ └── 3_custom.md │ ├── PULL_REQUEST_TEMPLATE/ │ │ ├── 1_bugfix.md │ │ └── 2_enhancement.md │ └── workflows/ │ ├── codeql-analysis.yml │ └── super-linter.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SKIT.FlurlHttpClient.ByteDance.slnx ├── docs/ │ ├── DouyinOpen/ │ │ ├── Advanced_Dispose.md │ │ ├── Advanced_HttpClient.md │ │ ├── Advanced_HttpClientFactory.md │ │ ├── Advanced_Interceptor.md │ │ ├── Advanced_JsonSerializer.md │ │ ├── Basic_EventDeserialization.md │ │ ├── Basic_EventSignatureVerification.md │ │ ├── Basic_Extensions.md │ │ ├── Basic_GoodLifeSPIDecryption.md │ │ ├── Basic_MobileNumberDecryption.md │ │ ├── Basic_ModelDefinition.md │ │ ├── Basic_Parameters.md │ │ ├── Migration_V3.md │ │ └── README.md │ ├── DouyinShop/ │ │ └── README.md │ ├── MicroApp/ │ │ ├── Advanced_Dispose.md │ │ ├── Advanced_HttpClient.md │ │ ├── Advanced_HttpClientFactory.md │ │ ├── Advanced_Interceptor.md │ │ ├── Advanced_JsonSerializer.md │ │ ├── Basic_EventDeserialization.md │ │ ├── Basic_EventSignatureVerification.md │ │ ├── Basic_Extensions.md │ │ ├── Basic_ModelDefinition.md │ │ ├── Migration_V3.md │ │ └── README.md │ ├── TikTokGlobal/ │ │ ├── Basic_ModelDefinition.md │ │ └── README.md │ └── TikTokGlobalShop/ │ ├── Basic_LegacyAPI.md │ ├── Basic_ModelDefinition.md │ └── README.md ├── src/ │ ├── SKIT.FlurlHttpClient.ByteDance.DouyinOpen/ │ │ ├── DouyinOpenClient.cs │ │ ├── DouyinOpenClientBuilder.cs │ │ ├── DouyinOpenClientOptions.cs │ │ ├── DouyinOpenEndpoints.cs │ │ ├── DouyinOpenEvent.cs │ │ ├── DouyinOpenException.cs │ │ ├── DouyinOpenRequest.cs │ │ ├── DouyinOpenResponse.cs │ │ ├── Events/ │ │ │ ├── GoodLife/ │ │ │ │ ├── LifeMemberJoinEvent.cs │ │ │ │ ├── LifeMemberLeaveEvent.cs │ │ │ │ ├── LifeProductAuditEvent.cs │ │ │ │ ├── LifeTradeCertificateNotifyEvent.cs │ │ │ │ └── LifeTradeOrderNotifyEvent.cs │ │ │ ├── IM/ │ │ │ │ ├── EnterGroupAuditChangeEvent.cs │ │ │ │ ├── GroupFansEventEvent.cs │ │ │ │ ├── IMAuthorizeEvent.cs │ │ │ │ ├── IMEnterDirectMessageEvent.cs │ │ │ │ ├── IMGroupReceiveMessageEvent.cs │ │ │ │ ├── IMGroupSendMessageEvent.cs │ │ │ │ ├── IMReceiveMessageEvent.cs │ │ │ │ └── IMSendMessageEvent.cs │ │ │ ├── Interaction/ │ │ │ │ ├── NewFollowActionEvent.cs │ │ │ │ └── NewVideoDiggEvent.cs │ │ │ ├── UnionAuth/ │ │ │ │ ├── UnionAuthInfoForBEvent.cs │ │ │ │ └── UnionAuthInfoForCEvent.cs │ │ │ └── Webhook/ │ │ │ ├── AuthorizeEvent.cs │ │ │ ├── CreateVideoEvent.cs │ │ │ ├── DialogPhoneEvent.cs │ │ │ ├── ItemCommentReplyEvent.cs │ │ │ ├── PersonalTabContactEvent.cs │ │ │ ├── ReceiveMessageEvent.cs │ │ │ ├── UnauthorizeEvent.cs │ │ │ ├── VerifyWebhookEvent.cs │ │ │ └── WebsiteContactEvent.cs │ │ ├── Extensions/ │ │ │ ├── DouyinOpenClientDecryptionExtensions.cs │ │ │ ├── DouyinOpenClientEventExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiAppsAuthExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiAppsTradeExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiDouyinAuthExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiDouyinIMExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiDouyinInteractiveExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiDouyinRoleExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiDouyinSchemaExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiDouyinUserExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiDouyinVideoExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiIMExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiIndustryExtensions.cs │ │ │ ├── DouyinOpenClientExecuteApiMatchExtensions.cs │ │ │ ├── DouyinOpenClientExecuteDataExternalExtensions.cs │ │ │ ├── DouyinOpenClientExecuteDevToolExtensions.cs │ │ │ ├── DouyinOpenClientExecuteDiscoveryExtensions.cs │ │ │ ├── DouyinOpenClientExecuteEnterpriseExtensions.cs │ │ │ ├── DouyinOpenClientExecuteEventExtensions.cs │ │ │ ├── DouyinOpenClientExecuteFansExtensions.cs │ │ │ ├── DouyinOpenClientExecuteGoodLifeExtensions.cs │ │ │ ├── DouyinOpenClientExecuteHotSearchExtensions.cs │ │ │ ├── DouyinOpenClientExecuteIMExtensions.cs │ │ │ ├── DouyinOpenClientExecuteImageExtensions.cs │ │ │ ├── DouyinOpenClientExecuteItemExtensions.cs │ │ │ ├── DouyinOpenClientExecuteJSExtensions.cs │ │ │ ├── DouyinOpenClientExecuteMarketServiceExtensions.cs │ │ │ ├── DouyinOpenClientExecuteMessageExtensions.cs │ │ │ ├── DouyinOpenClientExecuteNamekExtensions.cs │ │ │ ├── DouyinOpenClientExecuteOAuthExtensions.cs │ │ │ ├── DouyinOpenClientExecuteOpenExtensions.cs │ │ │ ├── DouyinOpenClientExecutePOIExtensions.cs │ │ │ ├── DouyinOpenClientExecuteRoomExtensions.cs │ │ │ ├── DouyinOpenClientExecuteSandboxExtensions.cs │ │ │ ├── DouyinOpenClientExecuteShareIdExtensions.cs │ │ │ ├── DouyinOpenClientExecuteStarExtensions.cs │ │ │ ├── DouyinOpenClientExecuteTaskExtensions.cs │ │ │ ├── DouyinOpenClientExecuteToolExtensions.cs │ │ │ ├── DouyinOpenClientExecuteVideoExtensions.cs │ │ │ ├── DouyinOpenClientParameterExtensions.cs │ │ │ └── DouyinOpenClientSPIExtensions.cs │ │ ├── Models/ │ │ │ ├── ApiAppsAuth/ │ │ │ │ ├── AppsAuthGetOpenIdByCV1Request.cs │ │ │ │ └── AppsAuthGetOpenIdByCV1Response.cs │ │ │ ├── ApiAppsTrade/ │ │ │ │ ├── AppsTradeBookCreateBookV2Request.cs │ │ │ │ ├── AppsTradeBookCreateBookV2Response.cs │ │ │ │ ├── AppsTradeBookMerchantCancelBookV2Request.cs │ │ │ │ ├── AppsTradeBookMerchantCancelBookV2Response.cs │ │ │ │ ├── AppsTradeBookQueryBookV2Request.cs │ │ │ │ ├── AppsTradeBookQueryBookV2Response.cs │ │ │ │ ├── AppsTradeBookResultCallbackV2Request.cs │ │ │ │ ├── AppsTradeBookResultCallbackV2Response.cs │ │ │ │ ├── AppsTradeBookUserCancelBookV2Request.cs │ │ │ │ ├── AppsTradeBookUserCancelBookV2Response.cs │ │ │ │ ├── AppsTradeFulfillmentDeliveryPrepareV2Request.cs │ │ │ │ ├── AppsTradeFulfillmentDeliveryPrepareV2Response.cs │ │ │ │ ├── AppsTradeFulfillmentDeliveryVerifyV2Request.cs │ │ │ │ ├── AppsTradeFulfillmentDeliveryVerifyV2Response.cs │ │ │ │ ├── AppsTradeFulfillmentOrderCanUseV2Request.cs │ │ │ │ ├── AppsTradeFulfillmentOrderCanUseV2Response.cs │ │ │ │ ├── AppsTradeFulfillmentPushDeliveryV2Request.cs │ │ │ │ ├── AppsTradeFulfillmentPushDeliveryV2Response.cs │ │ │ │ ├── AppsTradeFulfillmentQueryUserCertificatesV2Request.cs │ │ │ │ ├── AppsTradeFulfillmentQueryUserCertificatesV2Response.cs │ │ │ │ ├── AppsTradeFulfillmentVerifyCancelV2Request.cs │ │ │ │ ├── AppsTradeFulfillmentVerifyCancelV2Response.cs │ │ │ │ ├── AppsTradeOrderCloseOrderV2Request.cs │ │ │ │ ├── AppsTradeOrderCloseOrderV2Response.cs │ │ │ │ ├── AppsTradeOrderCreateOrderV2Request.cs │ │ │ │ ├── AppsTradeOrderCreateOrderV2Response.cs │ │ │ │ ├── AppsTradeOrderQueryCPSV2Request.cs │ │ │ │ ├── AppsTradeOrderQueryCPSV2Response.cs │ │ │ │ ├── AppsTradeOrderQueryItemOrderInfoV2Request.cs │ │ │ │ ├── AppsTradeOrderQueryItemOrderInfoV2Response.cs │ │ │ │ ├── AppsTradeOrderQueryOrderV2Request.cs │ │ │ │ ├── AppsTradeOrderQueryOrderV2Response.cs │ │ │ │ ├── AppsTradeRefundCreateRefundV2Request.cs │ │ │ │ ├── AppsTradeRefundCreateRefundV2Response.cs │ │ │ │ ├── AppsTradeRefundMerchantAuditCallbackV2Request.cs │ │ │ │ ├── AppsTradeRefundMerchantAuditCallbackV2Response.cs │ │ │ │ ├── AppsTradeRefundQueryRefundV2Request.cs │ │ │ │ ├── AppsTradeRefundQueryRefundV2Response.cs │ │ │ │ ├── AppsTradeSettleCreateSettleV2Request.cs │ │ │ │ ├── AppsTradeSettleCreateSettleV2Response.cs │ │ │ │ ├── AppsTradeSettleQuerySettleV2Request.cs │ │ │ │ └── AppsTradeSettleQuerySettleV2Response.cs │ │ │ ├── ApiDouyinAuth/ │ │ │ │ ├── DouyinAuthGetOpenIdByBV1Request.cs │ │ │ │ ├── DouyinAuthGetOpenIdByBV1Response.cs │ │ │ │ ├── DouyinAuthGetOpenIdByCV1Request.cs │ │ │ │ ├── DouyinAuthGetOpenIdByCV1Response.cs │ │ │ │ ├── DouyinAuthGetRelatedIdV1Request.cs │ │ │ │ └── DouyinAuthGetRelatedIdV1Response.cs │ │ │ ├── ApiDouyinIM/ │ │ │ │ ├── DouyinIMDeleteAppletTemplateV1Request.cs │ │ │ │ ├── DouyinIMDeleteAppletTemplateV1Response.cs │ │ │ │ ├── DouyinIMGetAppletTemplateV1Request.cs │ │ │ │ ├── DouyinIMGetAppletTemplateV1Response.cs │ │ │ │ ├── DouyinIMSetAppletTemplateV1Request.cs │ │ │ │ └── DouyinIMSetAppletTemplateV1Response.cs │ │ │ ├── ApiDouyinInteractive/ │ │ │ │ ├── DouyinInteractiveIntentionLogListV1Request.cs │ │ │ │ └── DouyinInteractiveIntentionLogListV1Response.cs │ │ │ ├── ApiDouyinRole/ │ │ │ │ ├── DouyinRoleCheckV1Request.cs │ │ │ │ └── DouyinRoleCheckV1Response.cs │ │ │ ├── ApiDouyinSchema/ │ │ │ │ ├── DouyinSchemaGetChatV1Request.cs │ │ │ │ ├── DouyinSchemaGetChatV1Response.cs │ │ │ │ ├── DouyinSchemaGetItemInfoV1Request.cs │ │ │ │ ├── DouyinSchemaGetItemInfoV1Response.cs │ │ │ │ ├── DouyinSchemaGetLiveV1Request.cs │ │ │ │ ├── DouyinSchemaGetLiveV1Response.cs │ │ │ │ ├── DouyinSchemaGetShareV1Request.cs │ │ │ │ ├── DouyinSchemaGetShareV1Response.cs │ │ │ │ ├── DouyinSchemaGetUserProfileV1Request.cs │ │ │ │ └── DouyinSchemaGetUserProfileV1Response.cs │ │ │ ├── ApiDouyinUser/ │ │ │ │ ├── DouyinUserFansDataV1Request.cs │ │ │ │ └── DouyinUserFansDataV1Response.cs │ │ │ ├── ApiDouyinVideo/ │ │ │ │ ├── DouyinVideoBasicInfoV1Request.cs │ │ │ │ ├── DouyinVideoBasicInfoV1Response.cs │ │ │ │ ├── DouyinVideoCreateVideoV1Request.cs │ │ │ │ ├── DouyinVideoCreateVideoV1Response.cs │ │ │ │ ├── DouyinVideoDataV1Request.cs │ │ │ │ ├── DouyinVideoDataV1Response.cs │ │ │ │ ├── DouyinVideoListV1Request.cs │ │ │ │ ├── DouyinVideoListV1Response.cs │ │ │ │ ├── DouyinVideoUploadVideoV1Request.cs │ │ │ │ ├── DouyinVideoUploadVideoV1Response.cs │ │ │ │ ├── Iframe/ │ │ │ │ │ ├── DouyinVideoGetIframeByItemV1Request.cs │ │ │ │ │ ├── DouyinVideoGetIframeByItemV1Response.cs │ │ │ │ │ ├── DouyinVideoGetIframeByVideoV1Request.cs │ │ │ │ │ └── DouyinVideoGetIframeByVideoV1Response.cs │ │ │ │ ├── Image/ │ │ │ │ │ ├── DouyinVideoCreateImageTextV1Request.cs │ │ │ │ │ ├── DouyinVideoCreateImageTextV1Response.cs │ │ │ │ │ ├── DouyinVideoUploadImageV1Request.cs │ │ │ │ │ └── DouyinVideoUploadImageV1Response.cs │ │ │ │ └── Part/ │ │ │ │ ├── DouyinVideoCompleteVideoPartUploadV1Request.cs │ │ │ │ ├── DouyinVideoCompleteVideoPartUploadV1Response.cs │ │ │ │ ├── DouyinVideoInitVideoPartUploadV1Request.cs │ │ │ │ ├── DouyinVideoInitVideoPartUploadV1Response.cs │ │ │ │ ├── DouyinVideoUploadVideoPartV1Request.cs │ │ │ │ └── DouyinVideoUploadVideoPartV1Response.cs │ │ │ ├── ApiIM/ │ │ │ │ ├── IMMessageResourcesRequest.cs │ │ │ │ └── IMMessageResourcesResponse.cs │ │ │ ├── ApiIndustry/ │ │ │ │ ├── AppTestRelation/ │ │ │ │ │ ├── IndustrySolutionAddAppTestRelationV1Request.cs │ │ │ │ │ ├── IndustrySolutionAddAppTestRelationV1Response.cs │ │ │ │ │ ├── IndustrySolutionDeleteAppTestRelationV1Request.cs │ │ │ │ │ ├── IndustrySolutionDeleteAppTestRelationV1Response.cs │ │ │ │ │ ├── IndustrySolutionQueryAppTestRelationV1Request.cs │ │ │ │ │ └── IndustrySolutionQueryAppTestRelationV1Response.cs │ │ │ │ └── Implementation/ │ │ │ │ ├── IndustrySolutionQueryImplementationV1Request.cs │ │ │ │ ├── IndustrySolutionQueryImplementationV1Response.cs │ │ │ │ ├── IndustrySolutionSetImplementationV1Request.cs │ │ │ │ └── IndustrySolutionSetImplementationV1Response.cs │ │ │ ├── ApiMatch/ │ │ │ │ ├── MatchTaskboxAgencyQueryBillLinkV2Request.cs │ │ │ │ ├── MatchTaskboxAgencyQueryBillLinkV2Response.cs │ │ │ │ ├── MatchTaskboxAgencyQueryVideoSummaryDataV2Request.cs │ │ │ │ ├── MatchTaskboxAgencyQueryVideoSummaryDataV2Response.cs │ │ │ │ ├── MatchTaskboxChangeUserBindAgentV1Request.cs │ │ │ │ ├── MatchTaskboxChangeUserBindAgentV1Response.cs │ │ │ │ ├── MatchTaskboxGenerateAgentLinkV1Request.cs │ │ │ │ ├── MatchTaskboxGenerateAgentLinkV1Response.cs │ │ │ │ ├── MatchTaskboxGetAgencyUserBindRecordV1Request.cs │ │ │ │ ├── MatchTaskboxGetAgencyUserBindRecordV1Response.cs │ │ │ │ ├── MatchTaskboxQueryAppTaskIdV1Request.cs │ │ │ │ ├── MatchTaskboxQueryAppTaskIdV1Response.cs │ │ │ │ ├── MatchTaskboxQueryTaskInfoV1Request.cs │ │ │ │ ├── MatchTaskboxQueryTaskInfoV1Response.cs │ │ │ │ ├── MatchTaskboxQueryTaskVideoStatusV2Request.cs │ │ │ │ ├── MatchTaskboxQueryTaskVideoStatusV2Response.cs │ │ │ │ ├── MatchTaskboxQueryViolateTalentListV2Request.cs │ │ │ │ ├── MatchTaskboxQueryViolateTalentListV2Response.cs │ │ │ │ ├── MatchTaskboxSaveAgentV1Request.cs │ │ │ │ └── MatchTaskboxSaveAgentV1Response.cs │ │ │ ├── DataExternal/ │ │ │ │ ├── Anchor/ │ │ │ │ │ ├── DataExternalAnchorMpItemClickDistributionRequest.cs │ │ │ │ │ └── DataExternalAnchorMpItemClickDistributionResponse.cs │ │ │ │ ├── Billboard/ │ │ │ │ │ ├── Amusement/ │ │ │ │ │ │ ├── DataExternalBillboardAmusementNewRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardAmusementNewResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardAmusementOverallRequest.cs │ │ │ │ │ │ └── DataExternalBillboardAmusementOverallResponse.cs │ │ │ │ │ ├── Car/ │ │ │ │ │ │ ├── DataExternalBillboardCarCommentRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardCarCommentResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardCarDriverRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardCarDriverResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardCarOverallRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardCarOverallResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardCarPlayRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardCarPlayResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardCarUseRequest.cs │ │ │ │ │ │ └── DataExternalBillboardCarUseResponse.cs │ │ │ │ │ ├── Cospa/ │ │ │ │ │ │ ├── DataExternalBillboardCospaBrainCavityRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaBrainCavityResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaNewRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaNewResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaOutshotRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaOutshotResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaOverallRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaOverallResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaPaintingRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaPaintingResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaQingmanRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaQingmanResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardCospaVoiceRequest.cs │ │ │ │ │ │ └── DataExternalBillboardCospaVoiceResponse.cs │ │ │ │ │ ├── Drama/ │ │ │ │ │ │ ├── DataExternalBillboardDramaOverallRequest.cs │ │ │ │ │ │ └── DataExternalBillboardDramaOverallResponse.cs │ │ │ │ │ ├── Food/ │ │ │ │ │ │ ├── DataExternalBillboardFoodNewRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardFoodNewResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardFoodOverallRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardFoodOverallResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardFoodShopRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardFoodShopResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardFoodTutorialRequest.cs │ │ │ │ │ │ └── DataExternalBillboardFoodTutorialResponse.cs │ │ │ │ │ ├── Game/ │ │ │ │ │ │ ├── DataExternalBillboardGameConsoleRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardGameConsoleResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardGameInformationRequest.cs │ │ │ │ │ │ └── DataExternalBillboardGameInformationResponse.cs │ │ │ │ │ ├── HotVideo/ │ │ │ │ │ │ ├── DataExternalBillboardHotVideoRequest.cs │ │ │ │ │ │ └── DataExternalBillboardHotVideoResponse.cs │ │ │ │ │ ├── Live/ │ │ │ │ │ │ ├── DataExternalBillboardLiveRequest.cs │ │ │ │ │ │ └── DataExternalBillboardLiveResponse.cs │ │ │ │ │ ├── Music/ │ │ │ │ │ │ ├── DataExternalBillboardMusicHotRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardMusicHotResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardMusicOriginalRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardMusicOriginalResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardMusicSoarRequest.cs │ │ │ │ │ │ └── DataExternalBillboardMusicSoarResponse.cs │ │ │ │ │ ├── Prop/ │ │ │ │ │ │ ├── DataExternalBillboardPropRequest.cs │ │ │ │ │ │ └── DataExternalBillboardPropResponse.cs │ │ │ │ │ ├── Sport/ │ │ │ │ │ │ ├── DataExternalBillboardSportBasketballRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardSportBasketballResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardSportComprehensiveRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardSportComprehensiveResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardSportCultureRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardSportCultureResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardSportFitnessRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardSportFitnessResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardSportOutdoorsRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardSportOutdoorsResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardSportOverallRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardSportOverallResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardSportSoccerRequest.cs │ │ │ │ │ │ ├── DataExternalBillboardSportSoccerResponse.cs │ │ │ │ │ │ ├── DataExternalBillboardSportTableTennisRequest.cs │ │ │ │ │ │ └── DataExternalBillboardSportTableTennisResponse.cs │ │ │ │ │ ├── Stars/ │ │ │ │ │ │ ├── DataExternalBillboardStarsRequest.cs │ │ │ │ │ │ └── DataExternalBillboardStarsResponse.cs │ │ │ │ │ ├── Topic/ │ │ │ │ │ │ ├── DataExternalBillboardTopicRequest.cs │ │ │ │ │ │ └── DataExternalBillboardTopicResponse.cs │ │ │ │ │ └── Travel/ │ │ │ │ │ ├── DataExternalBillboardTravelNewRequest.cs │ │ │ │ │ ├── DataExternalBillboardTravelNewResponse.cs │ │ │ │ │ ├── DataExternalBillboardTravelOverallRequest.cs │ │ │ │ │ └── DataExternalBillboardTravelOverallResponse.cs │ │ │ │ ├── Fans/ │ │ │ │ │ ├── DataExternalFansCommentRequest.cs │ │ │ │ │ ├── DataExternalFansCommentResponse.cs │ │ │ │ │ ├── DataExternalFansFavouriteRequest.cs │ │ │ │ │ ├── DataExternalFansFavouriteResponse.cs │ │ │ │ │ ├── DataExternalFansSourceRequest.cs │ │ │ │ │ └── DataExternalFansSourceResponse.cs │ │ │ │ ├── Item/ │ │ │ │ │ ├── DataExternalItemBaseRequest.cs │ │ │ │ │ ├── DataExternalItemBaseResponse.cs │ │ │ │ │ ├── DataExternalItemCommentRequest.cs │ │ │ │ │ ├── DataExternalItemCommentResponse.cs │ │ │ │ │ ├── DataExternalItemLikeRequest.cs │ │ │ │ │ ├── DataExternalItemLikeResponse.cs │ │ │ │ │ ├── DataExternalItemPlayRequest.cs │ │ │ │ │ ├── DataExternalItemPlayResponse.cs │ │ │ │ │ ├── DataExternalItemShareRequest.cs │ │ │ │ │ └── DataExternalItemShareResponse.cs │ │ │ │ ├── POI/ │ │ │ │ │ ├── DataExternalPOIBaseRequest.cs │ │ │ │ │ ├── DataExternalPOIBaseResponse.cs │ │ │ │ │ ├── DataExternalPOIBillboardRequest.cs │ │ │ │ │ ├── DataExternalPOIBillboardResponse.cs │ │ │ │ │ ├── DataExternalPOIClaimListRequest.cs │ │ │ │ │ ├── DataExternalPOIClaimListResponse.cs │ │ │ │ │ ├── DataExternalPOIServiceBaseRequest.cs │ │ │ │ │ ├── DataExternalPOIServiceBaseResponse.cs │ │ │ │ │ ├── DataExternalPOIServiceUserRequest.cs │ │ │ │ │ ├── DataExternalPOIServiceUserResponse.cs │ │ │ │ │ ├── DataExternalPOIUserRequest.cs │ │ │ │ │ └── DataExternalPOIUserResponse.cs │ │ │ │ └── User/ │ │ │ │ ├── DataExternalUserCommentRequest.cs │ │ │ │ ├── DataExternalUserCommentResponse.cs │ │ │ │ ├── DataExternalUserFansRequest.cs │ │ │ │ ├── DataExternalUserFansResponse.cs │ │ │ │ ├── DataExternalUserItemRequest.cs │ │ │ │ ├── DataExternalUserItemResponse.cs │ │ │ │ ├── DataExternalUserLikeRequest.cs │ │ │ │ ├── DataExternalUserLikeResponse.cs │ │ │ │ ├── DataExternalUserProfileRequest.cs │ │ │ │ ├── DataExternalUserProfileResponse.cs │ │ │ │ ├── DataExternalUserShareRequest.cs │ │ │ │ └── DataExternalUserShareResponse.cs │ │ │ ├── DevTool/ │ │ │ │ ├── DevToolMicroAppIsLegalRequest.cs │ │ │ │ └── DevToolMicroAppIsLegalResponse.cs │ │ │ ├── Discovery/ │ │ │ │ ├── DiscoveryEntertainmentRankItemRequest.cs │ │ │ │ ├── DiscoveryEntertainmentRankItemResponse.cs │ │ │ │ ├── DiscoveryEntertainmentRankVersionRequest.cs │ │ │ │ └── DiscoveryEntertainmentRankVersionResponse.cs │ │ │ ├── Enterprise/ │ │ │ │ └── Media/ │ │ │ │ ├── EnterpriseMediaDeleteRequest.cs │ │ │ │ ├── EnterpriseMediaDeleteResponse.cs │ │ │ │ ├── EnterpriseMediaListRequest.cs │ │ │ │ ├── EnterpriseMediaListResponse.cs │ │ │ │ ├── EnterpriseMediaTempUploadRequest.cs │ │ │ │ ├── EnterpriseMediaTempUploadResponse.cs │ │ │ │ ├── EnterpriseMediaUploadRequest.cs │ │ │ │ └── EnterpriseMediaUploadResponse.cs │ │ │ ├── Event/ │ │ │ │ ├── EventStatusListRequest.cs │ │ │ │ ├── EventStatusListResponse.cs │ │ │ │ ├── EventStatusUpdateRequest.cs │ │ │ │ └── EventStatusUpdateResponse.cs │ │ │ ├── Fans/ │ │ │ │ ├── FansCheckRequest.cs │ │ │ │ └── FansCheckResponse.cs │ │ │ ├── GoodLife/ │ │ │ │ ├── Aftersale/ │ │ │ │ │ ├── Audit/ │ │ │ │ │ │ ├── GoodLifeAftersaleAuditNotifyV1Request.cs │ │ │ │ │ │ └── GoodLifeAftersaleAuditNotifyV1Response.cs │ │ │ │ │ └── Order/ │ │ │ │ │ ├── GoodLifeAftersaleOrderApplyRefundV1Request.cs │ │ │ │ │ ├── GoodLifeAftersaleOrderApplyRefundV1Response.cs │ │ │ │ │ ├── GoodLifeAftersaleOrderMerchantRejectV1Request.cs │ │ │ │ │ └── GoodLifeAftersaleOrderMerchantRejectV1Response.cs │ │ │ │ ├── Fulfilment/ │ │ │ │ │ ├── Certificate/ │ │ │ │ │ │ ├── GoodLifeFulfilmentCertificateCancelV1Request.cs │ │ │ │ │ │ ├── GoodLifeFulfilmentCertificateCancelV1Response.cs │ │ │ │ │ │ ├── GoodLifeFulfilmentCertificateGetV1Request.cs │ │ │ │ │ │ ├── GoodLifeFulfilmentCertificateGetV1Response.cs │ │ │ │ │ │ ├── GoodLifeFulfilmentCertificatePrepareV1Request.cs │ │ │ │ │ │ ├── GoodLifeFulfilmentCertificatePrepareV1Response.cs │ │ │ │ │ │ ├── GoodLifeFulfilmentCertificateQueryV1Request.cs │ │ │ │ │ │ ├── GoodLifeFulfilmentCertificateQueryV1Response.cs │ │ │ │ │ │ ├── GoodLifeFulfilmentCertificateVerifyRecordQueryV1Request.cs │ │ │ │ │ │ ├── GoodLifeFulfilmentCertificateVerifyRecordQueryV1Response.cs │ │ │ │ │ │ ├── GoodLifeFulfilmentCertificateVerifyV1Request.cs │ │ │ │ │ │ └── GoodLifeFulfilmentCertificateVerifyV1Response.cs │ │ │ │ │ ├── Distribution/ │ │ │ │ │ │ ├── GoodLifeFulfilmentDistributionOrderSyncStatusV1Request.cs │ │ │ │ │ │ └── GoodLifeFulfilmentDistributionOrderSyncStatusV1Response.cs │ │ │ │ │ └── ReserveCode/ │ │ │ │ │ ├── GoodLifeFulfilmentReserveCodeBatchImportV1Request.cs │ │ │ │ │ ├── GoodLifeFulfilmentReserveCodeBatchImportV1Response.cs │ │ │ │ │ ├── GoodLifeFulfilmentReserveCodeBindOrderInfoV1Request.cs │ │ │ │ │ └── GoodLifeFulfilmentReserveCodeBindOrderInfoV1Response.cs │ │ │ │ ├── Goods/ │ │ │ │ │ ├── Calendar/ │ │ │ │ │ │ ├── GoodLifeGoodsCalendarAmountGroupSaveV1Request.cs │ │ │ │ │ │ ├── GoodLifeGoodsCalendarAmountGroupSaveV1Response.cs │ │ │ │ │ │ ├── GoodLifeGoodsCalendarStaticAttributeGroupSaveV1Request.cs │ │ │ │ │ │ ├── GoodLifeGoodsCalendarStaticAttributeGroupSaveV1Response.cs │ │ │ │ │ │ ├── GoodLifeGoodsCalendarStockGroupSaveV1Request.cs │ │ │ │ │ │ └── GoodLifeGoodsCalendarStockGroupSaveV1Response.cs │ │ │ │ │ ├── Category/ │ │ │ │ │ │ ├── GoodLifeGoodsCategoryGetV1Request.cs │ │ │ │ │ │ └── GoodLifeGoodsCategoryGetV1Response.cs │ │ │ │ │ ├── Product/ │ │ │ │ │ │ ├── GoodLifeGoodsProductDraftGetV1Request.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductDraftGetV1Response.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductDraftQueryV1Request.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductDraftQueryV1Response.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductFreeAuditV1Request.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductFreeAuditV1Response.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductOnlineGetV1Request.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductOnlineGetV1Response.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductOnlineQueryV1Request.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductOnlineQueryV1Response.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductOperateV1Request.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductOperateV1Response.cs │ │ │ │ │ │ ├── GoodLifeGoodsProductSaveV1Request.cs │ │ │ │ │ │ └── GoodLifeGoodsProductSaveV1Response.cs │ │ │ │ │ ├── SKU/ │ │ │ │ │ │ ├── GoodLifeGoodsSKUBatchSaveV1Request.cs │ │ │ │ │ │ └── GoodLifeGoodsSKUBatchSaveV1Response.cs │ │ │ │ │ ├── SPU/ │ │ │ │ │ │ ├── GoodLifeGoodsSPUSaveV1Request.cs │ │ │ │ │ │ └── GoodLifeGoodsSPUSaveV1Response.cs │ │ │ │ │ ├── Stock/ │ │ │ │ │ │ ├── GoodLifeGoodsStockSyncV1Request.cs │ │ │ │ │ │ └── GoodLifeGoodsStockSyncV1Response.cs │ │ │ │ │ └── Template/ │ │ │ │ │ ├── GoodLifeGoodsTemplateGetV1Request.cs │ │ │ │ │ └── GoodLifeGoodsTemplateGetV1Response.cs │ │ │ │ ├── Member/ │ │ │ │ │ ├── GoodLifeMemberUnionIdGetV1Request.cs │ │ │ │ │ ├── GoodLifeMemberUnionIdGetV1Response.cs │ │ │ │ │ ├── GoodLifeMemberUserUpdateV1Request.cs │ │ │ │ │ └── GoodLifeMemberUserUpdateV1Response.cs │ │ │ │ ├── POI/ │ │ │ │ │ ├── Crowd/ │ │ │ │ │ │ ├── GoodLifePOICrowdSaveV1Request.cs │ │ │ │ │ │ └── GoodLifePOICrowdSaveV1Response.cs │ │ │ │ │ ├── GoodLifePOIClaimV1Request.cs │ │ │ │ │ ├── GoodLifePOIClaimV1Response.cs │ │ │ │ │ ├── GoodLifePOIDecorateV1Request.cs │ │ │ │ │ ├── GoodLifePOIDecorateV1Response.cs │ │ │ │ │ ├── GoodLifePOIMatchRelationQueryV1Request.cs │ │ │ │ │ ├── GoodLifePOIMatchRelationQueryV1Response.cs │ │ │ │ │ ├── GoodLifePOIMatchTaskQueryV1Request.cs │ │ │ │ │ ├── GoodLifePOIMatchTaskQueryV1Response.cs │ │ │ │ │ ├── GoodLifePOIMatchTaskSubmitV1Request.cs │ │ │ │ │ ├── GoodLifePOIMatchTaskSubmitV1Response.cs │ │ │ │ │ ├── GoodLifePOISyncV1Request.cs │ │ │ │ │ ├── GoodLifePOISyncV1Response.cs │ │ │ │ │ ├── GoodLifePOITaskQueryV1Request.cs │ │ │ │ │ ├── GoodLifePOITaskQueryV1Response.cs │ │ │ │ │ ├── GoodLifePOIUpdateV1Request.cs │ │ │ │ │ └── GoodLifePOIUpdateV1Response.cs │ │ │ │ ├── Partner/ │ │ │ │ │ ├── Commission/ │ │ │ │ │ │ ├── GoodLifePartnerCommissionRecordGetV1Request.cs │ │ │ │ │ │ ├── GoodLifePartnerCommissionRecordGetV1Response.cs │ │ │ │ │ │ ├── GoodLifePartnerCommissionRecordQueryV1Request.cs │ │ │ │ │ │ ├── GoodLifePartnerCommissionRecordQueryV1Response.cs │ │ │ │ │ │ ├── GoodLifePartnerProductCommissionQueryV1Request.cs │ │ │ │ │ │ ├── GoodLifePartnerProductCommissionQueryV1Response.cs │ │ │ │ │ │ ├── GoodLifePartnerProductCommissionSaveV1Request.cs │ │ │ │ │ │ └── GoodLifePartnerProductCommissionSaveV1Response.cs │ │ │ │ │ └── Order/ │ │ │ │ │ ├── GoodLifePartnerOrderCreateV1Request.cs │ │ │ │ │ ├── GoodLifePartnerOrderCreateV1Response.cs │ │ │ │ │ ├── GoodLifePartnerOrderGetV1Request.cs │ │ │ │ │ ├── GoodLifePartnerOrderGetV1Response.cs │ │ │ │ │ ├── GoodLifePartnerOrderQueryV1Request.cs │ │ │ │ │ └── GoodLifePartnerOrderQueryV1Response.cs │ │ │ │ ├── Settle/ │ │ │ │ │ ├── GoodLifeSettleLedgerDetailedQueryByOrderV1Request.cs │ │ │ │ │ ├── GoodLifeSettleLedgerDetailedQueryByOrderV1Response.cs │ │ │ │ │ ├── GoodLifeSettleLedgerDetailedQueryV1Request.cs │ │ │ │ │ ├── GoodLifeSettleLedgerDetailedQueryV1Response.cs │ │ │ │ │ ├── GoodLifeSettleLedgerQueryByOrderV1Request.cs │ │ │ │ │ ├── GoodLifeSettleLedgerQueryByOrderV1Response.cs │ │ │ │ │ ├── GoodLifeSettleLedgerQueryRecordByCertificateV1Request.cs │ │ │ │ │ ├── GoodLifeSettleLedgerQueryRecordByCertificateV1Response.cs │ │ │ │ │ ├── GoodLifeSettleLedgerQueryV1Request.cs │ │ │ │ │ └── GoodLifeSettleLedgerQueryV1Response.cs │ │ │ │ ├── Shop/ │ │ │ │ │ ├── GoodLifeShopPOIQueryV1Request.cs │ │ │ │ │ └── GoodLifeShopPOIQueryV1Response.cs │ │ │ │ └── Trade/ │ │ │ │ ├── GoodLifeTradeBookGetV1Request.cs │ │ │ │ ├── GoodLifeTradeBookGetV1Response.cs │ │ │ │ ├── GoodLifeTradeBuyMerchantConfirmOrderV1Request.cs │ │ │ │ ├── GoodLifeTradeBuyMerchantConfirmOrderV1Response.cs │ │ │ │ ├── GoodLifeTradeOrderQueryV1Request.cs │ │ │ │ └── GoodLifeTradeOrderQueryV1Response.cs │ │ │ ├── HotSearch/ │ │ │ │ ├── HotSearchSentencesRequest.cs │ │ │ │ ├── HotSearchSentencesResponse.cs │ │ │ │ ├── HotSearchTrendingSentencesRequest.cs │ │ │ │ ├── HotSearchTrendingSentencesResponse.cs │ │ │ │ ├── HotSearchVideosRequest.cs │ │ │ │ └── HotSearchVideosResponse.cs │ │ │ ├── IM/ │ │ │ │ ├── Authorize/ │ │ │ │ │ ├── IMAuthorizeStatusRequest.cs │ │ │ │ │ ├── IMAuthorizeStatusResponse.cs │ │ │ │ │ ├── IMAuthorizeUserListRequest.cs │ │ │ │ │ └── IMAuthorizeUserListResponse.cs │ │ │ │ ├── Card/ │ │ │ │ │ ├── IMDeleteRetainConsultCardRequest.cs │ │ │ │ │ ├── IMDeleteRetainConsultCardResponse.cs │ │ │ │ │ ├── IMGetRetainConsultCardRequest.cs │ │ │ │ │ ├── IMGetRetainConsultCardResponse.cs │ │ │ │ │ ├── IMSaveRetainConsultCardRequest.cs │ │ │ │ │ └── IMSaveRetainConsultCardResponse.cs │ │ │ │ ├── Group/ │ │ │ │ │ ├── IMGroupEnterAuditGetRequest.cs │ │ │ │ │ ├── IMGroupEnterAuditGetResponse.cs │ │ │ │ │ ├── IMGroupEnterAuditSetRequest.cs │ │ │ │ │ ├── IMGroupEnterAuditSetResponse.cs │ │ │ │ │ ├── IMGroupFansCountRequest.cs │ │ │ │ │ ├── IMGroupFansCountResponse.cs │ │ │ │ │ ├── IMGroupFansCreateRequest.cs │ │ │ │ │ ├── IMGroupFansCreateResponse.cs │ │ │ │ │ ├── IMGroupFansListRequest.cs │ │ │ │ │ ├── IMGroupFansListResponse.cs │ │ │ │ │ ├── IMGroupSettingDisableRequest.cs │ │ │ │ │ ├── IMGroupSettingDisableResponse.cs │ │ │ │ │ ├── IMGroupSettingSetRequest.cs │ │ │ │ │ └── IMGroupSettingSetResponse.cs │ │ │ │ └── Message/ │ │ │ │ ├── IMRecallMessageRequest.cs │ │ │ │ ├── IMRecallMessageResponse.cs │ │ │ │ ├── IMSendMessageGroupRequest.cs │ │ │ │ ├── IMSendMessageGroupResponse.cs │ │ │ │ ├── IMSendMessageRequest.cs │ │ │ │ └── IMSendMessageResponse.cs │ │ │ ├── Image/ │ │ │ │ ├── ImageCreateRequest.cs │ │ │ │ ├── ImageCreateResponse.cs │ │ │ │ ├── ImageUploadRequest.cs │ │ │ │ └── ImageUploadResponse.cs │ │ │ ├── Item/ │ │ │ │ └── Comment/ │ │ │ │ ├── ItemCommentListRequest.cs │ │ │ │ ├── ItemCommentListResponse.cs │ │ │ │ ├── ItemCommentReplyListRequest.cs │ │ │ │ ├── ItemCommentReplyListResponse.cs │ │ │ │ ├── ItemCommentReplyRequest.cs │ │ │ │ ├── ItemCommentReplyResponse.cs │ │ │ │ ├── ItemCommentTopRequest.cs │ │ │ │ └── ItemCommentTopResponse.cs │ │ │ ├── JS/ │ │ │ │ ├── JSGetTicketRequest.cs │ │ │ │ └── JSGetTicketResponse.cs │ │ │ ├── MarketService/ │ │ │ │ ├── MarketServiceUserDeletePurchaseInfoRequest.cs │ │ │ │ ├── MarketServiceUserDeletePurchaseInfoResponse.cs │ │ │ │ ├── MarketServiceUserInsertPurchaseInfoRequest.cs │ │ │ │ ├── MarketServiceUserInsertPurchaseInfoResponse.cs │ │ │ │ ├── MarketServiceUserPurchaseListRequest.cs │ │ │ │ ├── MarketServiceUserPurchaseListResponse.cs │ │ │ │ ├── MarketServiceUserRemainTimesDecreaseRequest.cs │ │ │ │ └── MarketServiceUserRemainTimesDecreaseResponse.cs │ │ │ ├── Message/ │ │ │ │ ├── MessageOnceSendRequest.cs │ │ │ │ └── MessageOnceSendResponse.cs │ │ │ ├── Namek/ │ │ │ │ ├── NamekFulfilmentPrepareRequest.cs │ │ │ │ └── NamekFulfilmentPrepareResponse.cs │ │ │ ├── OAuth/ │ │ │ │ ├── OAuthAccessTokenRequest.cs │ │ │ │ ├── OAuthAccessTokenResponse.cs │ │ │ │ ├── OAuthBusinessScopesRequest.cs │ │ │ │ ├── OAuthBusinessScopesResponse.cs │ │ │ │ ├── OAuthBusinessTokenRequest.cs │ │ │ │ ├── OAuthBusinessTokenResponse.cs │ │ │ │ ├── OAuthClientTokenRequest.cs │ │ │ │ ├── OAuthClientTokenResponse.cs │ │ │ │ ├── OAuthRefreshBusinessTokenRequest.cs │ │ │ │ ├── OAuthRefreshBusinessTokenResponse.cs │ │ │ │ ├── OAuthRefreshTokenRequest.cs │ │ │ │ ├── OAuthRefreshTokenResponse.cs │ │ │ │ ├── OAuthRenewRefreshTokenRequest.cs │ │ │ │ ├── OAuthRenewRefreshTokenResponse.cs │ │ │ │ └── User/ │ │ │ │ ├── OAuthUserInfoRequest.cs │ │ │ │ └── OAuthUserInfoResponse.cs │ │ │ ├── Open/ │ │ │ │ ├── OpenGetTicketRequest.cs │ │ │ │ └── OpenGetTicketResponse.cs │ │ │ ├── POI/ │ │ │ │ ├── Coupon/ │ │ │ │ │ ├── POICouponSyncCouponAvailableV2Request.cs │ │ │ │ │ ├── POICouponSyncCouponAvailableV2Response.cs │ │ │ │ │ ├── POICouponSyncV2Request.cs │ │ │ │ │ └── POICouponSyncV2Response.cs │ │ │ │ ├── External/ │ │ │ │ │ ├── Hotel/ │ │ │ │ │ │ ├── POIExternalHotelOrderCancelRequest.cs │ │ │ │ │ │ ├── POIExternalHotelOrderCancelResponse.cs │ │ │ │ │ │ ├── POIExternalHotelOrderCommitRequest.cs │ │ │ │ │ │ ├── POIExternalHotelOrderCommitResponse.cs │ │ │ │ │ │ ├── POIExternalHotelOrderStatusRequest.cs │ │ │ │ │ │ ├── POIExternalHotelOrderStatusResponse.cs │ │ │ │ │ │ ├── POIExternalHotelSKURequest.cs │ │ │ │ │ │ └── POIExternalHotelSKUResponse.cs │ │ │ │ │ └── PresaleGroupon/ │ │ │ │ │ ├── POIExternalPresaleGrouponOrderCancelRequest.cs │ │ │ │ │ ├── POIExternalPresaleGrouponOrderCancelResponse.cs │ │ │ │ │ ├── POIExternalPresaleGrouponOrderCommitRequest.cs │ │ │ │ │ ├── POIExternalPresaleGrouponOrderCommitResponse.cs │ │ │ │ │ ├── POIExternalPresaleGrouponOrderCreateRequest.cs │ │ │ │ │ └── POIExternalPresaleGrouponOrderCreateResponse.cs │ │ │ │ ├── Order/ │ │ │ │ │ ├── POIOrderBillTokenRequest.cs │ │ │ │ │ ├── POIOrderBillTokenResponse.cs │ │ │ │ │ ├── POIOrderConfirmCancelPrepareRequest.cs │ │ │ │ │ ├── POIOrderConfirmCancelPrepareResponse.cs │ │ │ │ │ ├── POIOrderConfirmPrepareRequest.cs │ │ │ │ │ ├── POIOrderConfirmPrepareResponse.cs │ │ │ │ │ ├── POIOrderConfirmRequest.cs │ │ │ │ │ ├── POIOrderConfirmResponse.cs │ │ │ │ │ ├── POIOrderListTokenRequest.cs │ │ │ │ │ ├── POIOrderListTokenResponse.cs │ │ │ │ │ ├── POIOrderStatusRequest.cs │ │ │ │ │ ├── POIOrderStatusResponse.cs │ │ │ │ │ ├── POIOrderSyncRequest.cs │ │ │ │ │ └── POIOrderSyncResponse.cs │ │ │ │ ├── POIBaseQueryAMapRequest.cs │ │ │ │ ├── POIBaseQueryAMapResponse.cs │ │ │ │ ├── POIQueryRequest.cs │ │ │ │ ├── POIQueryResponse.cs │ │ │ │ ├── POISearchKeywordRequest.cs │ │ │ │ ├── POISearchKeywordResponse.cs │ │ │ │ ├── Plan/ │ │ │ │ │ ├── POICommonPlanDetailRequest.cs │ │ │ │ │ ├── POICommonPlanDetailResponse.cs │ │ │ │ │ ├── POICommonPlanSaveRequest.cs │ │ │ │ │ ├── POICommonPlanSaveResponse.cs │ │ │ │ │ ├── POICommonPlanTalentDetailRequest.cs │ │ │ │ │ ├── POICommonPlanTalentDetailResponse.cs │ │ │ │ │ ├── POICommonPlanTalentListRequest.cs │ │ │ │ │ ├── POICommonPlanTalentListResponse.cs │ │ │ │ │ ├── POICommonPlanTalentMediaListRequest.cs │ │ │ │ │ ├── POICommonPlanTalentMediaListResponse.cs │ │ │ │ │ ├── POICommonPlanUpdateStatusRequest.cs │ │ │ │ │ ├── POICommonPlanUpdateStatusResponse.cs │ │ │ │ │ ├── POIPlanListRequest.cs │ │ │ │ │ └── POIPlanListResponse.cs │ │ │ │ ├── SKU/ │ │ │ │ │ ├── POISKUSyncRequest.cs │ │ │ │ │ └── POISKUSyncResponse.cs │ │ │ │ ├── SPU/ │ │ │ │ │ ├── POISPUGetV2Request.cs │ │ │ │ │ ├── POISPUGetV2Response.cs │ │ │ │ │ ├── POISPUStatusSyncV2Request.cs │ │ │ │ │ ├── POISPUStatusSyncV2Response.cs │ │ │ │ │ ├── POISPUStockUpdateV2Request.cs │ │ │ │ │ ├── POISPUStockUpdateV2Response.cs │ │ │ │ │ ├── POISPUSyncV2Request.cs │ │ │ │ │ ├── POISPUSyncV2Response.cs │ │ │ │ │ ├── POISPUTakeRateSyncV2Request.cs │ │ │ │ │ └── POISPUTakeRateSyncV2Response.cs │ │ │ │ ├── ServiceProvider/ │ │ │ │ │ ├── POIServiceProviderSyncV2Request.cs │ │ │ │ │ └── POIServiceProviderSyncV2Response.cs │ │ │ │ └── Supplier/ │ │ │ │ ├── POISupplierMatchV2Request.cs │ │ │ │ ├── POISupplierMatchV2Response.cs │ │ │ │ ├── POISupplierQueryAllRequest.cs │ │ │ │ ├── POISupplierQueryAllResponse.cs │ │ │ │ ├── POISupplierQueryCallbackRequest.cs │ │ │ │ ├── POISupplierQueryCallbackResponse.cs │ │ │ │ ├── POISupplierQueryRequest.cs │ │ │ │ ├── POISupplierQueryResponse.cs │ │ │ │ ├── POISupplierQuerySupplierV2Request.cs │ │ │ │ ├── POISupplierQuerySupplierV2Response.cs │ │ │ │ ├── POISupplierQueryTaskV2Request.cs │ │ │ │ ├── POISupplierQueryTaskV2Response.cs │ │ │ │ ├── POISupplierSyncRequest.cs │ │ │ │ └── POISupplierSyncResponse.cs │ │ │ ├── Room/ │ │ │ │ ├── RoomDataAudienceGetRequest.cs │ │ │ │ ├── RoomDataAudienceGetResponse.cs │ │ │ │ ├── RoomDataBaseGetRequest.cs │ │ │ │ ├── RoomDataBaseGetResponse.cs │ │ │ │ ├── RoomDataInteractiveGetRequest.cs │ │ │ │ ├── RoomDataInteractiveGetResponse.cs │ │ │ │ ├── RoomDataRoomIdGetRequest.cs │ │ │ │ └── RoomDataRoomIdGetResponse.cs │ │ │ ├── Sandbox/ │ │ │ │ ├── SandboxWebhookEventSendRequest.cs │ │ │ │ └── SandboxWebhookEventSendResponse.cs │ │ │ ├── ShareId/ │ │ │ │ ├── ShareIdRequest.cs │ │ │ │ └── ShareIdResponse.cs │ │ │ ├── Star/ │ │ │ │ ├── StarAuthorScoreRequest.cs │ │ │ │ ├── StarAuthorScoreResponse.cs │ │ │ │ ├── StarAuthorScoreV2Request.cs │ │ │ │ ├── StarAuthorScoreV2Response.cs │ │ │ │ ├── StarHotListRequest.cs │ │ │ │ └── StarHotListResponse.cs │ │ │ ├── Task/ │ │ │ │ ├── TaskPostingBindVideoRequest.cs │ │ │ │ ├── TaskPostingBindVideoResponse.cs │ │ │ │ ├── TaskPostingCreateRequest.cs │ │ │ │ ├── TaskPostingCreateResponse.cs │ │ │ │ ├── TaskPostingUserRequest.cs │ │ │ │ └── TaskPostingUserResponse.cs │ │ │ ├── Tool/ │ │ │ │ ├── ToolImagexClientUploadRequest.cs │ │ │ │ └── ToolImagexClientUploadResponse.cs │ │ │ └── Video/ │ │ │ ├── Comment/ │ │ │ │ ├── VideoCommentListRequest.cs │ │ │ │ ├── VideoCommentListResponse.cs │ │ │ │ ├── VideoCommentReplyListRequest.cs │ │ │ │ ├── VideoCommentReplyListResponse.cs │ │ │ │ ├── VideoCommentReplyRequest.cs │ │ │ │ ├── VideoCommentReplyResponse.cs │ │ │ │ ├── VideoCommentTopRequest.cs │ │ │ │ └── VideoCommentTopResponse.cs │ │ │ ├── Search/ │ │ │ │ ├── VideoSearchCommentListRequest.cs │ │ │ │ ├── VideoSearchCommentListResponse.cs │ │ │ │ ├── VideoSearchCommentReplyListRequest.cs │ │ │ │ ├── VideoSearchCommentReplyListResponse.cs │ │ │ │ ├── VideoSearchCommentReplyRequest.cs │ │ │ │ ├── VideoSearchCommentReplyResponse.cs │ │ │ │ ├── VideoSearchRequest.cs │ │ │ │ └── VideoSearchResponse.cs │ │ │ ├── VideoSourceRequest.cs │ │ │ └── VideoSourceResponse.cs │ │ ├── README.md │ │ ├── SKIT.FlurlHttpClient.ByteDance.DouyinOpen.csproj │ │ ├── Settings/ │ │ │ └── Credentials.cs │ │ └── Utilities/ │ │ ├── AESUtility.cs │ │ ├── HMACUtility.cs │ │ ├── MD5Utility.cs │ │ ├── SHA1Utility.cs │ │ ├── SHA256Utility.cs │ │ └── [Internal]/ │ │ └── HttpContentBuilder.cs │ ├── SKIT.FlurlHttpClient.ByteDance.DouyinShop/ │ │ ├── Constants/ │ │ │ ├── Internal/ │ │ │ │ └── FormDataFields.cs │ │ │ └── SignAlgorithms.cs │ │ ├── Converters/ │ │ │ └── Internal/ │ │ │ ├── Newtonsoft.Json/ │ │ │ │ └── List[String]/ │ │ │ │ └── TextualStringListWithPipeSplitConverter.cs │ │ │ └── System.Text.Json/ │ │ │ ├── Array[String]/ │ │ │ │ └── NumericalStringArrayConverter.cs │ │ │ └── List[String]/ │ │ │ └── TextualStringListWithPipeSplitConverter.cs │ │ ├── DouyinShopClient.cs │ │ ├── DouyinShopClientOptions.cs │ │ ├── DouyinShopEndpoints.cs │ │ ├── DouyinShopEvent.cs │ │ ├── DouyinShopException.cs │ │ ├── DouyinShopRequest.cs │ │ ├── DouyinShopResponse.cs │ │ ├── Events/ │ │ │ ├── IOPTrade/ │ │ │ │ ├── IOPTradeDistributionCancelEvent.cs │ │ │ │ ├── IOPTradeDistributionEvent.cs │ │ │ │ ├── IOPTradeStatusReturnEvent.cs │ │ │ │ ├── IOPTradeUpdateReceiverEvent.cs │ │ │ │ └── IOPTradeUpdateRemarkEvent.cs │ │ │ ├── Product/ │ │ │ │ └── ProductChangeEvent.cs │ │ │ ├── Refund/ │ │ │ │ ├── Arbitrate/ │ │ │ │ │ ├── RefundArbitrateAppliedEvent.cs │ │ │ │ │ ├── RefundArbitrateAuditedEvent.cs │ │ │ │ │ ├── RefundArbitrateCancelledEvent.cs │ │ │ │ │ ├── RefundArbitrateDiscussUploadEvent.cs │ │ │ │ │ ├── RefundArbitrateServiceInterveneEvent.cs │ │ │ │ │ ├── RefundArbitrateSubmitedEvent.cs │ │ │ │ │ └── RefundArbitrateSubmitingEvent.cs │ │ │ │ ├── RefundAgreedEvent.cs │ │ │ │ ├── RefundClosedEvent.cs │ │ │ │ ├── RefundCreatedEvent.cs │ │ │ │ ├── RefundExchangeComfirmedEvent.cs │ │ │ │ ├── RefundExpirationChangeEvent.cs │ │ │ │ ├── RefundModifiedEvent.cs │ │ │ │ ├── RefundRefusedEvent.cs │ │ │ │ ├── RefundSuccessEvent.cs │ │ │ │ └── Return/ │ │ │ │ ├── RefundBuyerReturnGoodsEvent.cs │ │ │ │ ├── RefundReturnAgreedEvent.cs │ │ │ │ ├── RefundReturnApplyAgreedEvent.cs │ │ │ │ └── RefundReturnApplyRefusedEvent.cs │ │ │ └── Trade/ │ │ │ ├── TradeAddressChangeAppliedEvent.cs │ │ │ ├── TradeAddressChangedEvent.cs │ │ │ ├── TradeAmountChangedEvent.cs │ │ │ ├── TradeAppointmentEvent.cs │ │ │ ├── TradeCanceledEvent.cs │ │ │ ├── TradeCreateEvent.cs │ │ │ ├── TradeLogisticsChangedEvent.cs │ │ │ ├── TradeMemoModifyEvent.cs │ │ │ ├── TradePaidEvent.cs │ │ │ ├── TradePartlySellerShipEvent.cs │ │ │ ├── TradePendingEvent.cs │ │ │ ├── TradeSellerShipEvent.cs │ │ │ └── TradeSuccessEvent.cs │ │ ├── Exceptions/ │ │ │ ├── DouyinShopEventSerializationException.cs │ │ │ ├── DouyinShopRequestMarshalException.cs │ │ │ ├── DouyinShopRequestSignatureException.cs │ │ │ └── DouyinShopRequestTimeoutException.cs │ │ ├── Extensions/ │ │ │ ├── DouyinShopClientEventExtensions.cs │ │ │ ├── DouyinShopClientExecuteAddressExtensions.cs │ │ │ ├── DouyinShopClientExecuteAftersaleExtensions.cs │ │ │ ├── DouyinShopClientExecuteAllianceExtensions.cs │ │ │ ├── DouyinShopClientExecuteAntiSpamExtensions.cs │ │ │ ├── DouyinShopClientExecuteBTASExtensions.cs │ │ │ ├── DouyinShopClientExecuteBuyinExtensions.cs │ │ │ ├── DouyinShopClientExecuteCouponsExtensions.cs │ │ │ ├── DouyinShopClientExecuteCrossBorderExtensions.cs │ │ │ ├── DouyinShopClientExecuteDutyFreeExtensions.cs │ │ │ ├── DouyinShopClientExecuteFreightTemplateExtensions.cs │ │ │ ├── DouyinShopClientExecuteIOPExtensions.cs │ │ │ ├── DouyinShopClientExecuteLogisticsExtensions.cs │ │ │ ├── DouyinShopClientExecuteMaterialExtensions.cs │ │ │ ├── DouyinShopClientExecuteMemberExtensions.cs │ │ │ ├── DouyinShopClientExecuteOpportunityProductExtensions.cs │ │ │ ├── DouyinShopClientExecuteOrderCodeExtensions.cs │ │ │ ├── DouyinShopClientExecuteOrderExtensions.cs │ │ │ ├── DouyinShopClientExecuteProductExtensions.cs │ │ │ ├── DouyinShopClientExecutePromiseExtensions.cs │ │ │ ├── DouyinShopClientExecuteRecycleExtensions.cs │ │ │ ├── DouyinShopClientExecuteSKUExtensions.cs │ │ │ ├── DouyinShopClientExecuteSPUExtensions.cs │ │ │ ├── DouyinShopClientExecuteShopExtensions.cs │ │ │ ├── DouyinShopClientExecuteStorageExtensions.cs │ │ │ ├── DouyinShopClientExecuteTokenExtensions.cs │ │ │ ├── DouyinShopClientExecuteWarehouseExtensions.cs │ │ │ └── DouyinShopClientExecuteYuncExtensions.cs │ │ ├── Interceptors/ │ │ │ ├── DouyinShopRequestFormatInterceptor.cs │ │ │ └── DouyinShopRequestSignInterceptor.cs │ │ ├── Models/ │ │ │ ├── Address/ │ │ │ │ ├── AddressCreateRequest.cs │ │ │ │ ├── AddressCreateResponse.cs │ │ │ │ ├── AddressGetAreasByProvinceRequest.cs │ │ │ │ ├── AddressGetAreasByProvinceResponse.cs │ │ │ │ ├── AddressGetProvinceRequest.cs │ │ │ │ ├── AddressGetProvinceResponse.cs │ │ │ │ ├── AddressListRequest.cs │ │ │ │ ├── AddressListResponse.cs │ │ │ │ ├── AddressUpdateRequest.cs │ │ │ │ └── AddressUpdateResponse.cs │ │ │ ├── Aftersale/ │ │ │ │ ├── AftersaleAddOrderRemarkRequest.cs │ │ │ │ ├── AftersaleAddOrderRemarkResponse.cs │ │ │ │ ├── AftersaleApplyLogisticsInterceptRequest.cs │ │ │ │ ├── AftersaleApplyLogisticsInterceptResponse.cs │ │ │ │ ├── AftersaleBuyerExchangeConfirmRequest.cs │ │ │ │ ├── AftersaleBuyerExchangeConfirmResponse.cs │ │ │ │ ├── AftersaleBuyerExchangeRequest.cs │ │ │ │ ├── AftersaleBuyerExchangeResponse.cs │ │ │ │ ├── AftersaleCancelSendGoodsSuccessRequest.cs │ │ │ │ ├── AftersaleCancelSendGoodsSuccessResponse.cs │ │ │ │ ├── AftersaleDetailRequest.cs │ │ │ │ ├── AftersaleDetailResponse.cs │ │ │ │ ├── AftersaleListRequest.cs │ │ │ │ ├── AftersaleListResponse.cs │ │ │ │ ├── AftersaleOpenAfterSaleChannelRequest.cs │ │ │ │ ├── AftersaleOpenAfterSaleChannelResponse.cs │ │ │ │ ├── AftersaleOperateRequest.cs │ │ │ │ ├── AftersaleOperateResponse.cs │ │ │ │ ├── AftersaleRefundListSearchRequest.cs │ │ │ │ ├── AftersaleRefundListSearchResponse.cs │ │ │ │ ├── AftersaleReturnGoodsToWareHouseSuccessRequest.cs │ │ │ │ ├── AftersaleReturnGoodsToWareHouseSuccessResponse.cs │ │ │ │ ├── AftersaleSubmitEvidenceRequest.cs │ │ │ │ ├── AftersaleSubmitEvidenceResponse.cs │ │ │ │ ├── AftersaleTimeExtendRequest.cs │ │ │ │ └── AftersaleTimeExtendResponse.cs │ │ │ ├── Alliance/ │ │ │ │ ├── AllianceGetOrderListRequest.cs │ │ │ │ ├── AllianceGetOrderListResponse.cs │ │ │ │ └── MaterialsProducts/ │ │ │ │ ├── AllianceMaterialsProductsDetailsRequest.cs │ │ │ │ ├── AllianceMaterialsProductsDetailsResponse.cs │ │ │ │ ├── AllianceMaterialsProductsSearchRequest.cs │ │ │ │ └── AllianceMaterialsProductsSearchResponse.cs │ │ │ ├── AntiSpam/ │ │ │ │ ├── AntiSpamOrderQueryRequest.cs │ │ │ │ ├── AntiSpamOrderQueryResponse.cs │ │ │ │ ├── AntiSpamOrderSendRequest.cs │ │ │ │ ├── AntiSpamOrderSendResponse.cs │ │ │ │ ├── AntiSpamUserLoginRequest.cs │ │ │ │ └── AntiSpamUserLoginResponse.cs │ │ │ ├── BTAS/ │ │ │ │ ├── BTASGetInspectionOrderRequest.cs │ │ │ │ ├── BTASGetInspectionOrderResponse.cs │ │ │ │ ├── BTASGetOrderInspectionResultRequest.cs │ │ │ │ ├── BTASGetOrderInspectionResultResponse.cs │ │ │ │ ├── BTASListBrandRequest.cs │ │ │ │ ├── BTASListBrandResponse.cs │ │ │ │ ├── BTASSaveInspectionInformationRequest.cs │ │ │ │ ├── BTASSaveInspectionInformationResponse.cs │ │ │ │ ├── BTASSaveInspectionOnlineRequest.cs │ │ │ │ ├── BTASSaveInspectionOnlineResponse.cs │ │ │ │ ├── BTASShippingRequest.cs │ │ │ │ └── BTASShippingResponse.cs │ │ │ ├── Buyin/ │ │ │ │ ├── Activity/ │ │ │ │ │ ├── BuyinActivitySearchRequest.cs │ │ │ │ │ ├── BuyinActivitySearchResponse.cs │ │ │ │ │ ├── BuyinApplyActivitiesRequest.cs │ │ │ │ │ └── BuyinApplyActivitiesResponse.cs │ │ │ │ ├── BuyinInstituteOrderAdsRequest.cs │ │ │ │ ├── BuyinInstituteOrderAdsResponse.cs │ │ │ │ ├── OrientPlan/ │ │ │ │ │ ├── BuyinCreateOrUpdateOrientPlanRequest.cs │ │ │ │ │ ├── BuyinCreateOrUpdateOrientPlanResponse.cs │ │ │ │ │ ├── BuyinOrientPlanAuditRequest.cs │ │ │ │ │ ├── BuyinOrientPlanAuditResponse.cs │ │ │ │ │ ├── BuyinOrientPlanAuthorsAddRequest.cs │ │ │ │ │ ├── BuyinOrientPlanAuthorsAddResponse.cs │ │ │ │ │ ├── BuyinOrientPlanAuthorsRequest.cs │ │ │ │ │ ├── BuyinOrientPlanAuthorsResponse.cs │ │ │ │ │ ├── BuyinOrientPlanControlRequest.cs │ │ │ │ │ ├── BuyinOrientPlanControlResponse.cs │ │ │ │ │ ├── BuyinOrientPlanListRequest.cs │ │ │ │ │ └── BuyinOrientPlanListResponse.cs │ │ │ │ └── Plan/ │ │ │ │ ├── BuyinExclusivePlanRequest.cs │ │ │ │ ├── BuyinExclusivePlanResponse.cs │ │ │ │ ├── BuyinSimplePlanRequest.cs │ │ │ │ └── BuyinSimplePlanResponse.cs │ │ │ ├── Coupons/ │ │ │ │ ├── CouponsAbandonRequest.cs │ │ │ │ ├── CouponsAbandonResponse.cs │ │ │ │ ├── CouponsCancelVerifyRequest.cs │ │ │ │ ├── CouponsCancelVerifyResponse.cs │ │ │ │ ├── CouponsSyncV2Request.cs │ │ │ │ ├── CouponsSyncV2Response.cs │ │ │ │ ├── CouponsVerifyV2Request.cs │ │ │ │ └── CouponsVerifyV2Response.cs │ │ │ ├── CrossBorder/ │ │ │ │ ├── CrossBorderBankAccountVerifyRequest.cs │ │ │ │ ├── CrossBorderBankAccountVerifyResponse.cs │ │ │ │ ├── CrossBorderOrderInterceptionRequest.cs │ │ │ │ ├── CrossBorderOrderInterceptionResponse.cs │ │ │ │ ├── CrossBorderOrderListRequest.cs │ │ │ │ ├── CrossBorderOrderListResponse.cs │ │ │ │ ├── CrossBorderQueryBalanceRequest.cs │ │ │ │ ├── CrossBorderQueryBalanceResponse.cs │ │ │ │ ├── CrossBorderStockTakingRequest.cs │ │ │ │ ├── CrossBorderStockTakingResponse.cs │ │ │ │ ├── CrossBorderStockTransformRequest.cs │ │ │ │ ├── CrossBorderStockTransformResponse.cs │ │ │ │ ├── CrossBorderWarehouseInOutboundEventRequest.cs │ │ │ │ └── CrossBorderWarehouseInOutboundEventResponse.cs │ │ │ ├── DutyFree/ │ │ │ │ ├── DutyFreeOrderConfirmRequest.cs │ │ │ │ └── DutyFreeOrderConfirmResponse.cs │ │ │ ├── FreightTemplate/ │ │ │ │ ├── FreightTemplateListRequest.cs │ │ │ │ └── FreightTemplateListResponse.cs │ │ │ ├── IOP/ │ │ │ │ ├── IOPOrderInformationRequest.cs │ │ │ │ ├── IOPOrderInformationResponse.cs │ │ │ │ ├── IOPOrderListRequest.cs │ │ │ │ ├── IOPOrderListResponse.cs │ │ │ │ ├── IOPRoleGetRequest.cs │ │ │ │ ├── IOPRoleGetResponse.cs │ │ │ │ ├── Seller/ │ │ │ │ │ ├── IOPSellerCancelDistributeRequest.cs │ │ │ │ │ ├── IOPSellerCancelDistributeResponse.cs │ │ │ │ │ ├── IOPSellerDistributeRequest.cs │ │ │ │ │ ├── IOPSellerDistributeResponse.cs │ │ │ │ │ ├── IOPSellerOrderInformationRequest.cs │ │ │ │ │ ├── IOPSellerOrderInformationResponse.cs │ │ │ │ │ ├── IOPSellerOrderListRequest.cs │ │ │ │ │ ├── IOPSellerOrderListResponse.cs │ │ │ │ │ ├── IOPSellerSupplierListRequest.cs │ │ │ │ │ └── IOPSellerSupplierListResponse.cs │ │ │ │ └── Waybill/ │ │ │ │ ├── IOPWaybillCancelRequest.cs │ │ │ │ ├── IOPWaybillCancelResponse.cs │ │ │ │ ├── IOPWaybillGetRequest.cs │ │ │ │ ├── IOPWaybillGetResponse.cs │ │ │ │ ├── IOPWaybillReturnRequest.cs │ │ │ │ ├── IOPWaybillReturnResponse.cs │ │ │ │ ├── IOPWaybillUpdateRequest.cs │ │ │ │ └── IOPWaybillUpdateResponse.cs │ │ │ ├── Logistics/ │ │ │ │ ├── LogisticsCancelOrderRequest.cs │ │ │ │ ├── LogisticsCancelOrderResponse.cs │ │ │ │ ├── LogisticsGetCustomTemplateListRequest.cs │ │ │ │ ├── LogisticsGetCustomTemplateListResponse.cs │ │ │ │ ├── LogisticsGetOutRangeRequest.cs │ │ │ │ ├── LogisticsGetOutRangeResponse.cs │ │ │ │ ├── LogisticsListShopNetSiteRequest.cs │ │ │ │ ├── LogisticsListShopNetSiteResponse.cs │ │ │ │ ├── LogisticsNewCreateOrderRequest.cs │ │ │ │ ├── LogisticsNewCreateOrderResponse.cs │ │ │ │ ├── LogisticsTemplateListRequest.cs │ │ │ │ ├── LogisticsTemplateListResponse.cs │ │ │ │ ├── LogisticsTrackNoRouteDetailRequest.cs │ │ │ │ ├── LogisticsTrackNoRouteDetailResponse.cs │ │ │ │ ├── LogisticsUpdateOrderRequest.cs │ │ │ │ └── LogisticsUpdateOrderResponse.cs │ │ │ ├── Material/ │ │ │ │ ├── Folder/ │ │ │ │ │ ├── MaterialCreateFolderRequest.cs │ │ │ │ │ ├── MaterialCreateFolderResponse.cs │ │ │ │ │ ├── MaterialDeleteFolderRequest.cs │ │ │ │ │ ├── MaterialDeleteFolderResponse.cs │ │ │ │ │ ├── MaterialEditFolderRequest.cs │ │ │ │ │ ├── MaterialEditFolderResponse.cs │ │ │ │ │ ├── MaterialGetFolderInformationRequest.cs │ │ │ │ │ ├── MaterialGetFolderInformationResponse.cs │ │ │ │ │ ├── MaterialMoveFolderToRecyleBinRequest.cs │ │ │ │ │ ├── MaterialMoveFolderToRecyleBinResponse.cs │ │ │ │ │ ├── MaterialRecoverFolderRequest.cs │ │ │ │ │ ├── MaterialRecoverFolderResponse.cs │ │ │ │ │ ├── MaterialSearchFolderRequest.cs │ │ │ │ │ └── MaterialSearchFolderResponse.cs │ │ │ │ ├── Material/ │ │ │ │ │ ├── MaterialDeleteMaterialRequest.cs │ │ │ │ │ ├── MaterialDeleteMaterialResponse.cs │ │ │ │ │ ├── MaterialEditMaterialRequest.cs │ │ │ │ │ ├── MaterialEditMaterialResponse.cs │ │ │ │ │ ├── MaterialMoveMaterialToRecyleBinRequest.cs │ │ │ │ │ ├── MaterialMoveMaterialToRecyleBinResponse.cs │ │ │ │ │ ├── MaterialQueryMaterialDetailRequest.cs │ │ │ │ │ ├── MaterialQueryMaterialDetailResponse.cs │ │ │ │ │ ├── MaterialRecoverMaterialRequest.cs │ │ │ │ │ ├── MaterialRecoverMaterialResponse.cs │ │ │ │ │ ├── MaterialSearchMaterialRequest.cs │ │ │ │ │ └── MaterialSearchMaterialResponse.cs │ │ │ │ ├── MaterialUploadImageSyncRequest.cs │ │ │ │ ├── MaterialUploadImageSyncResponse.cs │ │ │ │ ├── MaterialUploadVideoAsyncRequest.cs │ │ │ │ └── MaterialUploadVideoAsyncResponse.cs │ │ │ ├── Member/ │ │ │ │ ├── MemberBatchUpdateRequest.cs │ │ │ │ ├── MemberBatchUpdateResponse.cs │ │ │ │ ├── MemberSearchListRequest.cs │ │ │ │ └── MemberSearchListResponse.cs │ │ │ ├── OpportunityProduct/ │ │ │ │ ├── OpportunityProductApplyRequest.cs │ │ │ │ ├── OpportunityProductApplyResponse.cs │ │ │ │ ├── OpportunityProductClueRequest.cs │ │ │ │ ├── OpportunityProductClueResponse.cs │ │ │ │ ├── OpportunityProductGetApplyProgressRequest.cs │ │ │ │ └── OpportunityProductGetApplyProgressResponse.cs │ │ │ ├── Order/ │ │ │ │ ├── CrossBorder/ │ │ │ │ │ ├── OrderGetCrossBorderFulfillInformationRequest.cs │ │ │ │ │ └── OrderGetCrossBorderFulfillInformationResponse.cs │ │ │ │ ├── Encryption/ │ │ │ │ │ ├── OrderBatchDecryptRequest.cs │ │ │ │ │ ├── OrderBatchDecryptResponse.cs │ │ │ │ │ ├── OrderBatchEncryptRequest.cs │ │ │ │ │ ├── OrderBatchEncryptResponse.cs │ │ │ │ │ ├── OrderBatchSearchIndexRequest.cs │ │ │ │ │ ├── OrderBatchSearchIndexResponse.cs │ │ │ │ │ ├── OrderBatchSensitiveRequest.cs │ │ │ │ │ └── OrderBatchSensitiveResponse.cs │ │ │ │ ├── Insurance/ │ │ │ │ │ ├── OrderInsuranceRequest.cs │ │ │ │ │ ├── OrderInsuranceResponse.cs │ │ │ │ │ ├── OrderPolicyRequest.cs │ │ │ │ │ └── OrderPolicyResponse.cs │ │ │ │ ├── Invoice/ │ │ │ │ │ ├── OrderInvoiceListRequest.cs │ │ │ │ │ ├── OrderInvoiceListResponse.cs │ │ │ │ │ ├── OrderInvoiceUploadRequest.cs │ │ │ │ │ └── OrderInvoiceUploadResponse.cs │ │ │ │ ├── Logistics/ │ │ │ │ │ ├── OrderLogisticsAddRequest.cs │ │ │ │ │ ├── OrderLogisticsAddResponse.cs │ │ │ │ │ ├── OrderLogisticsCompanyListRequest.cs │ │ │ │ │ ├── OrderLogisticsCompanyListResponse.cs │ │ │ │ │ ├── OrderLogisticsEditRequest.cs │ │ │ │ │ ├── OrderLogisticsEditResponse.cs │ │ │ │ │ └── Package/ │ │ │ │ │ ├── OrderLogisticsAddMultiplePackageRequest.cs │ │ │ │ │ ├── OrderLogisticsAddMultiplePackageResponse.cs │ │ │ │ │ ├── OrderLogisticsAddSinglePackageRequest.cs │ │ │ │ │ ├── OrderLogisticsAddSinglePackageResponse.cs │ │ │ │ │ ├── OrderLogisticsEditByPackageRequest.cs │ │ │ │ │ └── OrderLogisticsEditByPackageResponse.cs │ │ │ │ ├── OrderAddOrderRemarkRequest.cs │ │ │ │ ├── OrderAddOrderRemarkResponse.cs │ │ │ │ ├── OrderAddSerialNumberRequest.cs │ │ │ │ ├── OrderAddSerialNumberResponse.cs │ │ │ │ ├── OrderAddressAppliedSwitchRequest.cs │ │ │ │ ├── OrderAddressAppliedSwitchResponse.cs │ │ │ │ ├── OrderAddressConfirmRequest.cs │ │ │ │ ├── OrderAddressConfirmResponse.cs │ │ │ │ ├── OrderAddressModifyRequest.cs │ │ │ │ ├── OrderAddressModifyResponse.cs │ │ │ │ ├── OrderAddressSwitchConfigRequest.cs │ │ │ │ ├── OrderAddressSwitchConfigResponse.cs │ │ │ │ ├── OrderDetailRequest.cs │ │ │ │ ├── OrderDetailResponse.cs │ │ │ │ ├── OrderSearchListRequest.cs │ │ │ │ ├── OrderSearchListResponse.cs │ │ │ │ ├── OrderUpdateOrderAmountRequest.cs │ │ │ │ ├── OrderUpdateOrderAmountResponse.cs │ │ │ │ ├── OrderUpdatePostAmountRequest.cs │ │ │ │ ├── OrderUpdatePostAmountResponse.cs │ │ │ │ ├── Service/ │ │ │ │ │ ├── OrderGetServiceListRequest.cs │ │ │ │ │ ├── OrderGetServiceListResponse.cs │ │ │ │ │ ├── OrderReplyServiceRequest.cs │ │ │ │ │ ├── OrderReplyServiceResponse.cs │ │ │ │ │ ├── OrderServiceDetailRequest.cs │ │ │ │ │ └── OrderServiceDetailResponse.cs │ │ │ │ └── Settle/ │ │ │ │ ├── OrderDownloadSettleItemToShopRequest.cs │ │ │ │ ├── OrderDownloadSettleItemToShopResponse.cs │ │ │ │ ├── OrderDownloadToShopRequest.cs │ │ │ │ ├── OrderDownloadToShopResponse.cs │ │ │ │ ├── OrderGetSettleBillDetailRequest.cs │ │ │ │ ├── OrderGetSettleBillDetailResponse.cs │ │ │ │ ├── OrderSettleRequest.cs │ │ │ │ └── OrderSettleResponse.cs │ │ │ ├── OrderCode/ │ │ │ │ ├── OrderCodeBatchGetOrderCodeByShopRequest.cs │ │ │ │ ├── OrderCodeBatchGetOrderCodeByShopResponse.cs │ │ │ │ ├── OrderCodeDownloadOrderCodeByShopRequest.cs │ │ │ │ ├── OrderCodeDownloadOrderCodeByShopResponse.cs │ │ │ │ ├── OrderCodeERPShopBindOrderCodeRequest.cs │ │ │ │ └── OrderCodeERPShopBindOrderCodeResponse.cs │ │ │ ├── Product/ │ │ │ │ ├── ProductAddV2Request.cs │ │ │ │ ├── ProductAddV2Response.cs │ │ │ │ ├── ProductDeleteRequest.cs │ │ │ │ ├── ProductDeleteResponse.cs │ │ │ │ ├── ProductDetailRequest.cs │ │ │ │ ├── ProductDetailResponse.cs │ │ │ │ ├── ProductEditBuyerLimitRequest.cs │ │ │ │ ├── ProductEditBuyerLimitResponse.cs │ │ │ │ ├── ProductEditV2Request.cs │ │ │ │ ├── ProductEditV2Response.cs │ │ │ │ ├── ProductGetCategoryPropertyRequest.cs │ │ │ │ ├── ProductGetCategoryPropertyResponse.cs │ │ │ │ ├── ProductListV2Request.cs │ │ │ │ ├── ProductListV2Response.cs │ │ │ │ ├── ProductSetOfflineRequest.cs │ │ │ │ ├── ProductSetOfflineResponse.cs │ │ │ │ ├── ProductSetOnlineRequest.cs │ │ │ │ ├── ProductSetOnlineResponse.cs │ │ │ │ └── Quality/ │ │ │ │ ├── ProductQualityDetailRequest.cs │ │ │ │ ├── ProductQualityDetailResponse.cs │ │ │ │ ├── ProductQualityListRequest.cs │ │ │ │ ├── ProductQualityListResponse.cs │ │ │ │ ├── ProductQualityTaskRequest.cs │ │ │ │ └── ProductQualityTaskResponse.cs │ │ │ ├── Promise/ │ │ │ │ ├── PromiseSetSKUShipTimeRequest.cs │ │ │ │ └── PromiseSetSKUShipTimeResponse.cs │ │ │ ├── Recycle/ │ │ │ │ ├── RecycleApplyChangePriceRequest.cs │ │ │ │ ├── RecycleApplyChangePriceResponse.cs │ │ │ │ ├── RecycleBuyerGetOrderDetailRequest.cs │ │ │ │ ├── RecycleBuyerGetOrderDetailResponse.cs │ │ │ │ ├── RecycleBuyerGetOrderListRequest.cs │ │ │ │ ├── RecycleBuyerGetOrderListResponse.cs │ │ │ │ ├── RecycleChangePriceRequest.cs │ │ │ │ ├── RecycleChangePriceResponse.cs │ │ │ │ ├── RecycleConfirmReceiveRequest.cs │ │ │ │ ├── RecycleConfirmReceiveResponse.cs │ │ │ │ ├── RecycleCreatePriceRequest.cs │ │ │ │ ├── RecycleCreatePriceResponse.cs │ │ │ │ ├── RecycleLogisticsBackRequest.cs │ │ │ │ ├── RecycleLogisticsBackResponse.cs │ │ │ │ ├── RecycleQualityTestingResultRequest.cs │ │ │ │ ├── RecycleQualityTestingResultResponse.cs │ │ │ │ ├── RecycleSellSucceedRequest.cs │ │ │ │ └── RecycleSellSucceedResponse.cs │ │ │ ├── SKU/ │ │ │ │ ├── SKUDetailRequest.cs │ │ │ │ ├── SKUDetailResponse.cs │ │ │ │ ├── SKUEditCodeRequest.cs │ │ │ │ ├── SKUEditCodeResponse.cs │ │ │ │ ├── SKUEditPriceRequest.cs │ │ │ │ ├── SKUEditPriceResponse.cs │ │ │ │ ├── SKUListRequest.cs │ │ │ │ ├── SKUListResponse.cs │ │ │ │ ├── SKUStockNumberRequest.cs │ │ │ │ ├── SKUStockNumberResponse.cs │ │ │ │ ├── SKUSyncStockBatchRequest.cs │ │ │ │ ├── SKUSyncStockBatchResponse.cs │ │ │ │ ├── SKUSyncStockRequest.cs │ │ │ │ └── SKUSyncStockResponse.cs │ │ │ ├── SPU/ │ │ │ │ ├── SPUAddShopSPURequest.cs │ │ │ │ ├── SPUAddShopSPUResponse.cs │ │ │ │ ├── SPUGetKeyPropertyByCategoryIdRequest.cs │ │ │ │ ├── SPUGetKeyPropertyByCategoryIdResponse.cs │ │ │ │ ├── SPUGetSPUInformationBySPUIdRequest.cs │ │ │ │ ├── SPUGetSPUInformationBySPUIdResponse.cs │ │ │ │ ├── SPUGetSPUTemplateRequest.cs │ │ │ │ └── SPUGetSPUTemplateResponse.cs │ │ │ ├── Shop/ │ │ │ │ ├── ShopBandListRequest.cs │ │ │ │ ├── ShopBandListResponse.cs │ │ │ │ ├── ShopGetShopCategoryRequest.cs │ │ │ │ └── ShopGetShopCategoryResponse.cs │ │ │ ├── Storage/ │ │ │ │ ├── StorageNotifySaleReturnStatusRequest.cs │ │ │ │ └── StorageNotifySaleReturnStatusResponse.cs │ │ │ ├── Token/ │ │ │ │ ├── TokenCreateRequest.cs │ │ │ │ ├── TokenCreateResponse.cs │ │ │ │ ├── TokenRefreshRequest.cs │ │ │ │ └── TokenRefreshResponse.cs │ │ │ ├── Warehouse/ │ │ │ │ ├── WarehouseAdjustInventoryRequest.cs │ │ │ │ ├── WarehouseAdjustInventoryResponse.cs │ │ │ │ ├── WarehouseCreateBatchRequest.cs │ │ │ │ ├── WarehouseCreateBatchResponse.cs │ │ │ │ ├── WarehouseCreateRequest.cs │ │ │ │ ├── WarehouseCreateResponse.cs │ │ │ │ ├── WarehouseEditRequest.cs │ │ │ │ ├── WarehouseEditResponse.cs │ │ │ │ ├── WarehouseInformationRequest.cs │ │ │ │ ├── WarehouseInformationResponse.cs │ │ │ │ ├── WarehouseListRequest.cs │ │ │ │ ├── WarehouseListResponse.cs │ │ │ │ ├── WarehouseRemoveAddressRequest.cs │ │ │ │ ├── WarehouseRemoveAddressResponse.cs │ │ │ │ ├── WarehouseSetAddressBatchRequest.cs │ │ │ │ ├── WarehouseSetAddressBatchResponse.cs │ │ │ │ ├── WarehouseSetAddressRequest.cs │ │ │ │ ├── WarehouseSetAddressResponse.cs │ │ │ │ ├── WarehouseSetPriorityRequest.cs │ │ │ │ └── WarehouseSetPriorityResponse.cs │ │ │ └── Yunc/ │ │ │ ├── ERP/ │ │ │ │ ├── YuncCancelOutboundOrderToBusinessRequest.cs │ │ │ │ ├── YuncCancelOutboundOrderToBusinessResponse.cs │ │ │ │ ├── YuncCreateOutboundOrderToBusinessRequest.cs │ │ │ │ ├── YuncCreateOutboundOrderToBusinessResponse.cs │ │ │ │ ├── YuncERPCargoSinglePushRequest.cs │ │ │ │ ├── YuncERPCargoSinglePushResponse.cs │ │ │ │ ├── YuncERPInboundCancelRequest.cs │ │ │ │ ├── YuncERPInboundCancelResponse.cs │ │ │ │ ├── YuncERPInboundCreateRequest.cs │ │ │ │ ├── YuncERPInboundCreateResponse.cs │ │ │ │ ├── YuncShopWarehouseRefQueryRequest.cs │ │ │ │ └── YuncShopWarehouseRefQueryResponse.cs │ │ │ └── WMS/ │ │ │ ├── YuncAdjustInventoryRequest.cs │ │ │ ├── YuncAdjustInventoryResponse.cs │ │ │ ├── YuncPushOutboundFeedbackRequest.cs │ │ │ ├── YuncPushOutboundFeedbackResponse.cs │ │ │ ├── YuncWMSInboundCallbackRequest.cs │ │ │ └── YuncWMSInboundCallbackResponse.cs │ │ ├── README.md │ │ ├── SKIT.FlurlHttpClient.ByteDance.DouyinShop.csproj │ │ ├── Settings/ │ │ │ └── Credentials.cs │ │ └── Utilities/ │ │ ├── HMACUtility.cs │ │ ├── Internal/ │ │ │ ├── FileHttpContentBuilder.cs │ │ │ └── JsonUtility.cs │ │ └── MD5Utility.cs │ ├── SKIT.FlurlHttpClient.ByteDance.MicroApp/ │ │ ├── Converters/ │ │ │ └── [Internal]/ │ │ │ ├── Newtonsoft.Json/ │ │ │ │ └── DateTimeOffset/ │ │ │ │ └── CstDateTimeOffsetConverter.cs │ │ │ └── System.Text.Json/ │ │ │ └── DateTimeOffset/ │ │ │ └── CstDateTimeOffsetConverter.cs │ │ ├── DouyinMicroAppClient.cs │ │ ├── DouyinMicroAppClientBuilder.cs │ │ ├── DouyinMicroAppClientOptions.cs │ │ ├── DouyinMicroAppEndpoints.cs │ │ ├── DouyinMicroAppEvent.cs │ │ ├── DouyinMicroAppException.cs │ │ ├── DouyinMicroAppRequest.cs │ │ ├── DouyinMicroAppResponse.cs │ │ ├── Events/ │ │ │ └── Message/ │ │ │ ├── ImageMessageEvent.cs │ │ │ └── TextMessageEvent.cs │ │ ├── ExtendedSDK/ │ │ │ ├── OpenApi/ │ │ │ │ ├── DouyinMicroAppOpenApiClient.cs │ │ │ │ ├── DouyinMicroAppOpenApiClientBuilder.cs │ │ │ │ ├── DouyinMicroAppOpenApiClientOptions.cs │ │ │ │ ├── DouyinMicroAppOpenApiEndpoints.cs │ │ │ │ ├── DouyinMicroAppOpenApiEvent.cs │ │ │ │ ├── DouyinMicroAppOpenApiRequest.cs │ │ │ │ ├── DouyinMicroAppOpenApiResponse.cs │ │ │ │ ├── Events/ │ │ │ │ │ ├── Auth/ │ │ │ │ │ │ ├── ComponentAuthorizedEvent.cs │ │ │ │ │ │ ├── ComponentPushTicketEvent.cs │ │ │ │ │ │ ├── ComponentUnauthorizedEvent.cs │ │ │ │ │ │ └── ComponentUpdateAuthorizedEvent.cs │ │ │ │ │ ├── MicroAppManagement/ │ │ │ │ │ │ ├── AppNameResetEvent.cs │ │ │ │ │ │ ├── ModifyAppCategoryEvent.cs │ │ │ │ │ │ ├── ModifyAppIconEvent.cs │ │ │ │ │ │ ├── ModifyAppIntroductionEvent.cs │ │ │ │ │ │ ├── ModifyAppNameEvent.cs │ │ │ │ │ │ └── PackageAuditEvent.cs │ │ │ │ │ └── MicroAppOperation/ │ │ │ │ │ ├── AliasAuditResultEvent.cs │ │ │ │ │ ├── ApplyCapabilityEvent.cs │ │ │ │ │ ├── ApplyLiveCapabilityEvent.cs │ │ │ │ │ ├── ApplyPhoneNumberCapabilityEvent.cs │ │ │ │ │ ├── ApplyShareTemplateEvent.cs │ │ │ │ │ ├── ApplyVideoCapabilityEvent.cs │ │ │ │ │ ├── AwemePermissionAuditResultEvent.cs │ │ │ │ │ ├── AwemeVideoKeywordAuditResultEvent.cs │ │ │ │ │ ├── BindAwemeUserEvent.cs │ │ │ │ │ ├── CreateSubscribeNotificationTemplateResultEvent.cs │ │ │ │ │ ├── ScopeQuotaAuditResultEvent.cs │ │ │ │ │ ├── SearchTagAuditResultEvent.cs │ │ │ │ │ └── SelfMountBindEvent.cs │ │ │ │ ├── Extensions/ │ │ │ │ │ ├── DouyinMicroAppOpenApiClientEventExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteAppsBasicInfoExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteAppsCategoryExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteAppsCreditScoreExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteAppsDomainExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteAppsFileExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteAppsICPRecordExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteAppsMicroAppExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteAppsPackageVersionExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteAppsTrialExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteLegacyAuthExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteLegacyMicroAppExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteLegacySettleExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteLegacyThirdPartyExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecutePlatformWebhookExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteTpAppAuthExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteTpAppDomainExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteTpAppFileExtensions.cs │ │ │ │ │ ├── DouyinMicroAppOpenApiClientExecuteTpAppTemplateExtensions.cs │ │ │ │ │ └── DouyinMicroAppOpenApiClientParameterExtensions.cs │ │ │ │ ├── Models/ │ │ │ │ │ ├── AppsBasicInfo/ │ │ │ │ │ │ ├── OpenAppsBasicInfoCheckAppNameV2Request.cs │ │ │ │ │ │ ├── OpenAppsBasicInfoCheckAppNameV2Response.cs │ │ │ │ │ │ ├── OpenAppsBasicInfoGetInfoV2Request.cs │ │ │ │ │ │ ├── OpenAppsBasicInfoGetInfoV2Response.cs │ │ │ │ │ │ ├── OpenAppsBasicInfoGetQrcodeV2Request.cs │ │ │ │ │ │ ├── OpenAppsBasicInfoGetQrcodeV2Response.cs │ │ │ │ │ │ ├── OpenAppsBasicInfoModifyAppIconV2Request.cs │ │ │ │ │ │ ├── OpenAppsBasicInfoModifyAppIconV2Response.cs │ │ │ │ │ │ ├── OpenAppsBasicInfoModifyAppIntroductionV2Request.cs │ │ │ │ │ │ ├── OpenAppsBasicInfoModifyAppIntroductionV2Response.cs │ │ │ │ │ │ ├── OpenAppsBasicInfoModifyAppNameV2Request.cs │ │ │ │ │ │ └── OpenAppsBasicInfoModifyAppNameV2Response.cs │ │ │ │ │ ├── AppsCategory/ │ │ │ │ │ │ ├── OpenAppsCategoryAddCategoriesV1Request.cs │ │ │ │ │ │ ├── OpenAppsCategoryAddCategoriesV1Response.cs │ │ │ │ │ │ ├── OpenAppsCategoryDeleteCategoriesV1Request.cs │ │ │ │ │ │ ├── OpenAppsCategoryDeleteCategoriesV1Response.cs │ │ │ │ │ │ ├── OpenAppsCategoryGetAllCategoriesV1Request.cs │ │ │ │ │ │ ├── OpenAppsCategoryGetAllCategoriesV1Response.cs │ │ │ │ │ │ ├── OpenAppsCategoryGetAuditCategoriesV1Request.cs │ │ │ │ │ │ ├── OpenAppsCategoryGetAuditCategoriesV1Response.cs │ │ │ │ │ │ ├── OpenAppsCategorySupplyCategoriesV1Request.cs │ │ │ │ │ │ └── OpenAppsCategorySupplyCategoriesV1Response.cs │ │ │ │ │ ├── AppsCreditScore/ │ │ │ │ │ │ ├── OpenAppsCreditScoreGetCreditScoreV2Request.cs │ │ │ │ │ │ └── OpenAppsCreditScoreGetCreditScoreV2Response.cs │ │ │ │ │ ├── AppsDomain/ │ │ │ │ │ │ ├── OpenAppsDomainModifyServerDomainV2Request.cs │ │ │ │ │ │ ├── OpenAppsDomainModifyServerDomainV2Response.cs │ │ │ │ │ │ ├── OpenAppsDomainModifyWebviewDomainV2Request.cs │ │ │ │ │ │ └── OpenAppsDomainModifyWebviewDomainV2Response.cs │ │ │ │ │ ├── AppsFile/ │ │ │ │ │ │ ├── OpenAppsFileUploadMaterialV2Request.cs │ │ │ │ │ │ └── OpenAppsFileUploadMaterialV2Response.cs │ │ │ │ │ ├── AppsICPRecord/ │ │ │ │ │ │ ├── OpenAppsICPRecordGetFacialRecognitionUrlV1Request.cs │ │ │ │ │ │ ├── OpenAppsICPRecordGetFacialRecognitionUrlV1Response.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryCorpTypeListV1Request.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryCorpTypeListV1Response.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryFacialRecognitionStatusV1Request.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryFacialRecognitionStatusV1Response.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryInchargePeopleCredentialsTypeListV1Request.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryInchargePeopleCredentialsTypeListV1Response.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryPreApprovalItemTypeListV1Request.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryPreApprovalItemTypeListV1Response.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryRecordStatusV1Request.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryRecordStatusV1Response.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryRegionListV1Request.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryRegionListV1Response.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryServiceContentTypeListV1Request.cs │ │ │ │ │ │ ├── OpenAppsICPRecordQueryServiceContentTypeListV1Response.cs │ │ │ │ │ │ ├── OpenAppsICPRecordSendFacialRecognitionNotifyV1Request.cs │ │ │ │ │ │ ├── OpenAppsICPRecordSendFacialRecognitionNotifyV1Response.cs │ │ │ │ │ │ ├── OpenAppsICPRecordSubmitRecordInfoV1Request.cs │ │ │ │ │ │ ├── OpenAppsICPRecordSubmitRecordInfoV1Response.cs │ │ │ │ │ │ ├── OpenAppsICPRecordUploadImageV1Request.cs │ │ │ │ │ │ └── OpenAppsICPRecordUploadImageV1Response.cs │ │ │ │ │ ├── AppsMicroApp/ │ │ │ │ │ │ ├── OpenAppsMicroAppCode2SessionV1Request.cs │ │ │ │ │ │ └── OpenAppsMicroAppCode2SessionV1Response.cs │ │ │ │ │ ├── AppsPackageVersion/ │ │ │ │ │ │ ├── OpenAppsPackageVersionAuditV1Request.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionAuditV1Response.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionGetAuditHostsV1Request.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionGetAuditHostsV1Response.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionGetVersionsV1Request.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionGetVersionsV1Response.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionReleaseV1Request.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionReleaseV1Response.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionRevokeAuditV1Request.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionRevokeAuditV1Response.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionRollbackV1Request.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionRollbackV1Response.cs │ │ │ │ │ │ ├── OpenAppsPackageVersionUploadV1Request.cs │ │ │ │ │ │ └── OpenAppsPackageVersionUploadV1Response.cs │ │ │ │ │ ├── AppsTrial/ │ │ │ │ │ │ ├── OpenAppsTrialGetTrialInfoV2Request.cs │ │ │ │ │ │ └── OpenAppsTrialGetTrialInfoV2Response.cs │ │ │ │ │ ├── Platform/ │ │ │ │ │ │ └── Webhook/ │ │ │ │ │ │ ├── OpenPlatformWebhookEventStatusListV1Request.cs │ │ │ │ │ │ ├── OpenPlatformWebhookEventStatusListV1Response.cs │ │ │ │ │ │ ├── OpenPlatformWebhookResetSecretV1Request.cs │ │ │ │ │ │ ├── OpenPlatformWebhookResetSecretV1Response.cs │ │ │ │ │ │ ├── OpenPlatformWebhookSaveCallbackUrlV1Request.cs │ │ │ │ │ │ ├── OpenPlatformWebhookSaveCallbackUrlV1Response.cs │ │ │ │ │ │ ├── OpenPlatformWebhookUpdateEventStatusV1Request.cs │ │ │ │ │ │ └── OpenPlatformWebhookUpdateEventStatusV1Response.cs │ │ │ │ │ ├── TpAppAuth/ │ │ │ │ │ │ ├── OpenAuthThirdPartyTokenV2Request.cs │ │ │ │ │ │ ├── OpenAuthThirdPartyTokenV2Response.cs │ │ │ │ │ │ ├── OpenTpAppAuthGenerateLinkV3Request.cs │ │ │ │ │ │ ├── OpenTpAppAuthGenerateLinkV3Response.cs │ │ │ │ │ │ ├── OpenTpAppAuthGetAuthAppListV2Request.cs │ │ │ │ │ │ ├── OpenTpAppAuthGetAuthAppListV2Response.cs │ │ │ │ │ │ ├── OpenTpAppAuthGetAuthTokenV2Request.cs │ │ │ │ │ │ ├── OpenTpAppAuthGetAuthTokenV2Response.cs │ │ │ │ │ │ ├── OpenTpAppAuthRetrieveAuthCodeV2Request.cs │ │ │ │ │ │ └── OpenTpAppAuthRetrieveAuthCodeV2Response.cs │ │ │ │ │ ├── TpAppDomain/ │ │ │ │ │ │ ├── OpenTpAppDomainGetWebviewCheckFileInfoV2Request.cs │ │ │ │ │ │ └── OpenTpAppDomainGetWebviewCheckFileInfoV2Response.cs │ │ │ │ │ ├── TpAppFile/ │ │ │ │ │ │ ├── OpenTpAppFileUploadMaterialV2Request.cs │ │ │ │ │ │ └── OpenTpAppFileUploadMaterialV2Response.cs │ │ │ │ │ ├── TpAppTemplate/ │ │ │ │ │ │ ├── OpenTpAppTemplateAddTemplateV2Request.cs │ │ │ │ │ │ ├── OpenTpAppTemplateAddTemplateV2Response.cs │ │ │ │ │ │ ├── OpenTpAppTemplateDeleteTemplateV2Request.cs │ │ │ │ │ │ ├── OpenTpAppTemplateDeleteTemplateV2Response.cs │ │ │ │ │ │ ├── OpenTpAppTemplateGetTemplateAppListV2Request.cs │ │ │ │ │ │ ├── OpenTpAppTemplateGetTemplateAppListV2Response.cs │ │ │ │ │ │ ├── OpenTpAppTemplateGetTemplateListV2Request.cs │ │ │ │ │ │ └── OpenTpAppTemplateGetTemplateListV2Response.cs │ │ │ │ │ └── _Legacy/ │ │ │ │ │ ├── Auth/ │ │ │ │ │ │ ├── OpenApiAuthGenerateLinkV2Request.cs │ │ │ │ │ │ ├── OpenApiAuthGenerateLinkV2Response.cs │ │ │ │ │ │ ├── OpenApiAuthPreAuthCodeV2Request.cs │ │ │ │ │ │ ├── OpenApiAuthPreAuthCodeV2Response.cs │ │ │ │ │ │ ├── OpenApiAuthRetrieveV1Request.cs │ │ │ │ │ │ ├── OpenApiAuthRetrieveV1Response.cs │ │ │ │ │ │ ├── OpenApiAuthThirdPartyTokenV1Request.cs │ │ │ │ │ │ ├── OpenApiAuthThirdPartyTokenV1Response.cs │ │ │ │ │ │ ├── OpenApiOAuthTokenV1Request.cs │ │ │ │ │ │ └── OpenApiOAuthTokenV1Response.cs │ │ │ │ │ ├── MicroApp/ │ │ │ │ │ │ ├── App/ │ │ │ │ │ │ │ ├── Category/ │ │ │ │ │ │ │ │ ├── OpenApiMicroAppAppAddCategoriesV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppAppAddCategoriesV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppAppAllCategoriesV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppAppAllCategoriesV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppAppCategoriesV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppAppCategoriesV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppAppDeleteCategoriesV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppAppDeleteCategoriesV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppAppSupplyCategoriesV1Request.cs │ │ │ │ │ │ │ │ └── OpenApiMicroAppAppSupplyCategoriesV1Response.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppCheckAppNameV1Request.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppCheckAppNameV1Response.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppCreditScoreV1Request.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppCreditScoreV1Response.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppInfoV1Request.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppInfoV1Response.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppModifyAppIconV1Request.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppModifyAppIconV1Response.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppModifyAppIntroductionV1Request.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppModifyAppIntroductionV1Response.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppModifyAppNameV1Request.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppModifyAppNameV1Response.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppModifyServerDomainV1Request.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppModifyServerDomainV1Response.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppModifyWebviewDomainV1Request.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppModifyWebviewDomainV1Response.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppQrcodeV1Request.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppQrcodeV1Response.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppAppQualityRatingV1Request.cs │ │ │ │ │ │ │ └── OpenApiMicroAppAppQualityRatingV1Response.cs │ │ │ │ │ │ ├── OpenApiMicroAppCode2SessionV1Request.cs │ │ │ │ │ │ ├── OpenApiMicroAppCode2SessionV1Response.cs │ │ │ │ │ │ ├── OpenApiMicroAppUploadMaterialV1Request.cs │ │ │ │ │ │ ├── OpenApiMicroAppUploadMaterialV1Response.cs │ │ │ │ │ │ ├── Operation/ │ │ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationLiveApplicationStatusV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationLiveApplicationStatusV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationLiveApplicationV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationLiveApplicationV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationPhoneNumberApplicationStatusV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationPhoneNumberApplicationStatusV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationPhoneNumberApplicationV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationPhoneNumberApplicationV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationVideoApplicationStatusV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationVideoApplicationStatusV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationVideoApplicationV1Request.cs │ │ │ │ │ │ │ │ └── OpenApiMicroAppOperationVideoApplicationV1Response.cs │ │ │ │ │ │ │ ├── ShareTemplate/ │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationAddShareTemplateV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationAddShareTemplateV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationDeleteShareTemplateV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationDeleteShareTemplateV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationModifyShareTemplateV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationModifyShareTemplateV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationSetDefaultShareTemplateV1Request.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationSetDefaultShareTemplateV1Response.cs │ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationShareTemplateListV1Request.cs │ │ │ │ │ │ │ │ └── OpenApiMicroAppOperationShareTemplateListV1Response.cs │ │ │ │ │ │ │ └── ShopMaterial/ │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationAddShopMaterialV1Request.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationAddShopMaterialV1Response.cs │ │ │ │ │ │ │ ├── OpenApiMicroAppOperationQueryShopMaterialV1Request.cs │ │ │ │ │ │ │ └── OpenApiMicroAppOperationQueryShopMaterialV1Response.cs │ │ │ │ │ │ └── Package/ │ │ │ │ │ │ ├── OpenApiMicroAppPackageAuditHostsV1Request.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageAuditHostsV1Response.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageAuditV2Request.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageAuditV2Response.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageReleaseV1Request.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageReleaseV1Response.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageRevokeAuditV1Request.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageRevokeAuditV1Response.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageRollbackV1Request.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageRollbackV1Response.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageUploadV1Request.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageUploadV1Response.cs │ │ │ │ │ │ ├── OpenApiMicroAppPackageVersionsV1Request.cs │ │ │ │ │ │ └── OpenApiMicroAppPackageVersionsV1Response.cs │ │ │ │ │ ├── Settle/ │ │ │ │ │ │ ├── OpenApiSettleApplyV1Request.cs │ │ │ │ │ │ ├── OpenApiSettleApplyV1Response.cs │ │ │ │ │ │ ├── OpenApiSettleGetApplyStatusV1Request.cs │ │ │ │ │ │ ├── OpenApiSettleGetApplyStatusV1Response.cs │ │ │ │ │ │ ├── OpenApiSettlePreCheckV1Request.cs │ │ │ │ │ │ └── OpenApiSettlePreCheckV1Response.cs │ │ │ │ │ ├── ThirdParty/ │ │ │ │ │ │ ├── Domain/ │ │ │ │ │ │ │ ├── OpenApiThirdPartyDownloadWebviewFileV1Request.cs │ │ │ │ │ │ │ └── OpenApiThirdPartyDownloadWebviewFileV1Response.cs │ │ │ │ │ │ ├── OpenApiThirdPartyAuthAppListV1Request.cs │ │ │ │ │ │ ├── OpenApiThirdPartyAuthAppListV1Response.cs │ │ │ │ │ │ ├── OpenApiThirdPartyUploadPictureMaterialV1Request.cs │ │ │ │ │ │ ├── OpenApiThirdPartyUploadPictureMaterialV1Response.cs │ │ │ │ │ │ ├── POI/ │ │ │ │ │ │ │ ├── OpenApiThirdPartyPOIBaseQueryAMapV1Request.cs │ │ │ │ │ │ │ ├── OpenApiThirdPartyPOIBaseQueryAMapV1Response.cs │ │ │ │ │ │ │ ├── OpenApiThirdPartyPOISupplierMatchV1Request.cs │ │ │ │ │ │ │ ├── OpenApiThirdPartyPOISupplierMatchV1Response.cs │ │ │ │ │ │ │ ├── OpenApiThirdPartyPOISupplierQueryMatchTaskV1Request.cs │ │ │ │ │ │ │ ├── OpenApiThirdPartyPOISupplierQueryMatchTaskV1Response.cs │ │ │ │ │ │ │ ├── OpenApiThirdPartyPOISupplierQueryMatchV1Request.cs │ │ │ │ │ │ │ ├── OpenApiThirdPartyPOISupplierQueryMatchV1Response.cs │ │ │ │ │ │ │ ├── OpenApiThirdPartyPOISupplierQueryV1Request.cs │ │ │ │ │ │ │ ├── OpenApiThirdPartyPOISupplierQueryV1Response.cs │ │ │ │ │ │ │ ├── OpenApiThirdPartyPOISupplierSyncV1Request.cs │ │ │ │ │ │ │ └── OpenApiThirdPartyPOISupplierSyncV1Response.cs │ │ │ │ │ │ └── Template/ │ │ │ │ │ │ ├── OpenApiThirdPartyTemplateAddTemplateV1Request.cs │ │ │ │ │ │ ├── OpenApiThirdPartyTemplateAddTemplateV1Response.cs │ │ │ │ │ │ ├── OpenApiThirdPartyTemplateDeleteTemplateV1Request.cs │ │ │ │ │ │ ├── OpenApiThirdPartyTemplateDeleteTemplateV1Response.cs │ │ │ │ │ │ ├── OpenApiThirdPartyTemplateGetTemplateAppListV1Request.cs │ │ │ │ │ │ ├── OpenApiThirdPartyTemplateGetTemplateAppListV1Response.cs │ │ │ │ │ │ ├── OpenApiThirdPartyTemplateGetTemplateListV1Request.cs │ │ │ │ │ │ └── OpenApiThirdPartyTemplateGetTemplateListV1Response.cs │ │ │ │ │ └── __Abstractions/ │ │ │ │ │ └── DouyinMicroAppOpenApiLegacyResponseBase.cs │ │ │ │ └── Settings/ │ │ │ │ └── Credentials.cs │ │ │ ├── ProductApi/ │ │ │ │ ├── DouyinMicroAppProductApiClient.cs │ │ │ │ ├── DouyinMicroAppProductApiClientBuilder.cs │ │ │ │ ├── DouyinMicroAppProductApiClientOptions.cs │ │ │ │ ├── DouyinMicroAppProductApiEndpoints.cs │ │ │ │ ├── DouyinMicroAppProductApiEvent.cs │ │ │ │ ├── DouyinMicroAppProductApiRequest.cs │ │ │ │ ├── DouyinMicroAppProductApiResponse.cs │ │ │ │ ├── Events/ │ │ │ │ │ ├── ProductEvent.cs │ │ │ │ │ ├── ProductFulfilmentEvent.cs │ │ │ │ │ ├── ProductQualificationEvent.cs │ │ │ │ │ └── ProductResourceEvent.cs │ │ │ │ ├── Extensions/ │ │ │ │ │ ├── DouyinMicroAppProductApiClientEventExtensions.cs │ │ │ │ │ ├── DouyinMicroAppProductApiClientExecuteCallbackExtensions.cs │ │ │ │ │ ├── DouyinMicroAppProductApiClientExecuteProductExtensions.cs │ │ │ │ │ ├── DouyinMicroAppProductApiClientExecuteQualificationExtensions.cs │ │ │ │ │ ├── DouyinMicroAppProductApiClientExecuteRefundRuleExtensions.cs │ │ │ │ │ └── DouyinMicroAppProductApiClientExecuteResourceExtensions.cs │ │ │ │ ├── Models/ │ │ │ │ │ ├── Callback/ │ │ │ │ │ │ ├── ProductSyncCallbackUrlRequest.cs │ │ │ │ │ │ └── ProductSyncCallbackUrlResponse.cs │ │ │ │ │ ├── Product/ │ │ │ │ │ │ ├── ProductAddRequest.cs │ │ │ │ │ │ ├── ProductAddResponse.cs │ │ │ │ │ │ ├── ProductModifyNoAuditRequest.cs │ │ │ │ │ │ ├── ProductModifyNoAuditResponse.cs │ │ │ │ │ │ ├── ProductModifyRequest.cs │ │ │ │ │ │ ├── ProductModifyResponse.cs │ │ │ │ │ │ ├── ProductModifyStatusRequest.cs │ │ │ │ │ │ ├── ProductModifyStatusResponse.cs │ │ │ │ │ │ ├── ProductQueryClassInfoRequest.cs │ │ │ │ │ │ ├── ProductQueryClassInfoResponse.cs │ │ │ │ │ │ ├── ProductQueryRequest.cs │ │ │ │ │ │ ├── ProductQueryResponse.cs │ │ │ │ │ │ ├── ProductQueryReviewRequest.cs │ │ │ │ │ │ ├── ProductQueryReviewResponse.cs │ │ │ │ │ │ ├── ProductQueryTemplateInfoRequest.cs │ │ │ │ │ │ └── ProductQueryTemplateInfoResponse.cs │ │ │ │ │ ├── Qualification/ │ │ │ │ │ │ ├── ProductAddQualificationRequest.cs │ │ │ │ │ │ ├── ProductAddQualificationResponse.cs │ │ │ │ │ │ ├── ProductModifyQualificationRequest.cs │ │ │ │ │ │ ├── ProductModifyQualificationResponse.cs │ │ │ │ │ │ ├── ProductQueryQualificationRequest.cs │ │ │ │ │ │ └── ProductQueryQualificationResponse.cs │ │ │ │ │ ├── RefundRule/ │ │ │ │ │ │ ├── ProductModifyRefundRuleRequest.cs │ │ │ │ │ │ ├── ProductModifyRefundRuleResponse.cs │ │ │ │ │ │ ├── ProductQueryRefundRuleMetaRequest.cs │ │ │ │ │ │ └── ProductQueryRefundRuleMetaResponse.cs │ │ │ │ │ └── Resource/ │ │ │ │ │ ├── ProductQueryResourceStatusRequest.cs │ │ │ │ │ ├── ProductQueryResourceStatusResponse.cs │ │ │ │ │ ├── ProductUploadResourceRequest.cs │ │ │ │ │ └── ProductUploadResourceResponse.cs │ │ │ │ └── Settings/ │ │ │ │ └── Credentials.cs │ │ │ ├── RoleApi/ │ │ │ │ ├── DouyinMicroAppRoleApiClient.cs │ │ │ │ ├── DouyinMicroAppRoleApiClientBuilder.cs │ │ │ │ ├── DouyinMicroAppRoleApiClientOptions.cs │ │ │ │ ├── DouyinMicroAppRoleApiEndpoints.cs │ │ │ │ ├── DouyinMicroAppRoleApiRequest.cs │ │ │ │ ├── DouyinMicroAppRoleApiResponse.cs │ │ │ │ ├── Extensions/ │ │ │ │ │ └── DouyinMicroAppRoleApiClientExecuteRoleExtensions.cs │ │ │ │ ├── Models/ │ │ │ │ │ ├── Auth/ │ │ │ │ │ │ ├── AuthEntityAddClassAuthRequest.cs │ │ │ │ │ │ ├── AuthEntityAddClassAuthResponse.cs │ │ │ │ │ │ ├── AuthEntityByPartnerRequest.cs │ │ │ │ │ │ ├── AuthEntityByPartnerResponse.cs │ │ │ │ │ │ ├── AuthEntityBySelfRequest.cs │ │ │ │ │ │ ├── AuthEntityBySelfResponse.cs │ │ │ │ │ │ ├── AuthEntityGetAuditDetailRequest.cs │ │ │ │ │ │ ├── AuthEntityGetAuditDetailResponse.cs │ │ │ │ │ │ ├── AuthEntityGetBasicAuthRequest.cs │ │ │ │ │ │ ├── AuthEntityGetBasicAuthResponse.cs │ │ │ │ │ │ ├── AuthEntityGetClassAuthRequest.cs │ │ │ │ │ │ ├── AuthEntityGetClassAuthResponse.cs │ │ │ │ │ │ ├── AuthEntityUpdateBasicAuthRequest.cs │ │ │ │ │ │ ├── AuthEntityUpdateBasicAuthResponse.cs │ │ │ │ │ │ ├── AuthEntityUpdateClassAuthRequest.cs │ │ │ │ │ │ └── AuthEntityUpdateClassAuthResponse.cs │ │ │ │ │ ├── AuthEntityQueryEntityInfoRequest.cs │ │ │ │ │ ├── AuthEntityQueryEntityInfoResponse.cs │ │ │ │ │ ├── AuthEntityUploadMaterialRequest.cs │ │ │ │ │ ├── AuthEntityUploadMaterialResponse.cs │ │ │ │ │ ├── Bind/ │ │ │ │ │ │ ├── AuthEntityEnableMountScopeRequest.cs │ │ │ │ │ │ ├── AuthEntityEnableMountScopeResponse.cs │ │ │ │ │ │ ├── AuthEntityQueryBindToCListRequest.cs │ │ │ │ │ │ ├── AuthEntityQueryBindToCListResponse.cs │ │ │ │ │ │ ├── AuthEntityQueryMountScopeRequest.cs │ │ │ │ │ │ ├── AuthEntityQueryMountScopeResponse.cs │ │ │ │ │ │ ├── AuthEntityUnbindAccountRequest.cs │ │ │ │ │ │ └── AuthEntityUnbindAccountResponse.cs │ │ │ │ │ ├── MerchantCode/ │ │ │ │ │ │ ├── AuthEntityActivateMerchantCodeRequest.cs │ │ │ │ │ │ ├── AuthEntityActivateMerchantCodeResponse.cs │ │ │ │ │ │ ├── AuthEntityQueryMerchantCodeStatusRequest.cs │ │ │ │ │ │ └── AuthEntityQueryMerchantCodeStatusResponse.cs │ │ │ │ │ └── Role/ │ │ │ │ │ ├── AuthEntityAddRoleRequest.cs │ │ │ │ │ ├── AuthEntityAddRoleResponse.cs │ │ │ │ │ ├── AuthEntityAuthRoleRequest.cs │ │ │ │ │ ├── AuthEntityAuthRoleResponse.cs │ │ │ │ │ ├── AuthEntityBindRoleRequest.cs │ │ │ │ │ ├── AuthEntityBindRoleResponse.cs │ │ │ │ │ ├── AuthEntityGetAppIdAuthRequest.cs │ │ │ │ │ ├── AuthEntityGetAppIdAuthResponse.cs │ │ │ │ │ ├── AuthEntityGetBindListRequest.cs │ │ │ │ │ ├── AuthEntityGetBindListResponse.cs │ │ │ │ │ ├── AuthEntityUnauthRoleRequest.cs │ │ │ │ │ ├── AuthEntityUnauthRoleResponse.cs │ │ │ │ │ ├── AuthEntityUnbindRoleRequest.cs │ │ │ │ │ ├── AuthEntityUnbindRoleResponse.cs │ │ │ │ │ ├── AuthEntityUpdateAuthLetterRequest.cs │ │ │ │ │ └── AuthEntityUpdateAuthLetterResponse.cs │ │ │ │ └── Settings/ │ │ │ │ └── Credentials.cs │ │ │ └── Webcast/ │ │ │ ├── DouyinMicroAppWebcastClient.cs │ │ │ ├── DouyinMicroAppWebcastClientBuilder.cs │ │ │ ├── DouyinMicroAppWebcastClientOptions.cs │ │ │ ├── DouyinMicroAppWebcastEndpoints.cs │ │ │ ├── DouyinMicroAppWebcastRequest.cs │ │ │ ├── DouyinMicroAppWebcastResponse.cs │ │ │ ├── Extensions/ │ │ │ │ ├── DouyinMicroAppWebcastClientExecuteAudienceExtensions.cs │ │ │ │ ├── DouyinMicroAppWebcastClientExecuteBusinessExtensions.cs │ │ │ │ ├── DouyinMicroAppWebcastClientExecuteCardExtensions.cs │ │ │ │ ├── DouyinMicroAppWebcastClientExecuteFileExtensions.cs │ │ │ │ ├── DouyinMicroAppWebcastClientExecuteGamingConExtensions.cs │ │ │ │ ├── DouyinMicroAppWebcastClientExecuteGiftExtensions.cs │ │ │ │ ├── DouyinMicroAppWebcastClientExecuteLinkMicExtensions.cs │ │ │ │ ├── DouyinMicroAppWebcastClientExecuteLiveDataExtensions.cs │ │ │ │ ├── DouyinMicroAppWebcastClientExecuteQuizExtensions.cs │ │ │ │ ├── DouyinMicroAppWebcastClientExecuteWebcastMateExtensions.cs │ │ │ │ └── DouyinMicroAppWebcastClientResponseVerificationExtensions.cs │ │ │ ├── Interceptors/ │ │ │ │ └── DouyinMicroAppWebcastRequestSigningInterceptor.cs │ │ │ ├── Models/ │ │ │ │ ├── Audience/ │ │ │ │ │ ├── WebcastAudienceJoinGameRequest.cs │ │ │ │ │ ├── WebcastAudienceJoinGameResponse.cs │ │ │ │ │ ├── WebcastAudienceLeaveGameRequest.cs │ │ │ │ │ └── WebcastAudienceLeaveGameResponse.cs │ │ │ │ ├── Business/ │ │ │ │ │ ├── WebcastBusinessDiamondOrderAckRequest.cs │ │ │ │ │ ├── WebcastBusinessDiamondOrderAckResponse.cs │ │ │ │ │ ├── WebcastBusinessDiamondQueryRequest.cs │ │ │ │ │ ├── WebcastBusinessDiamondQueryResponse.cs │ │ │ │ │ ├── WebcastBusinessDiamondReconciliationRequest.cs │ │ │ │ │ ├── WebcastBusinessDiamondReconciliationResponse.cs │ │ │ │ │ ├── WebcastBusinessOrderPrecreateRequest.cs │ │ │ │ │ └── WebcastBusinessOrderPrecreateResponse.cs │ │ │ │ ├── Card/ │ │ │ │ │ ├── WebcastCardDefaultGetRequest.cs │ │ │ │ │ ├── WebcastCardDefaultGetResponse.cs │ │ │ │ │ ├── WebcastCardDefaultSetRequest.cs │ │ │ │ │ ├── WebcastCardDefaultSetResponse.cs │ │ │ │ │ ├── WebcastCardDeleteRequest.cs │ │ │ │ │ ├── WebcastCardDeleteResponse.cs │ │ │ │ │ ├── WebcastCardGetAllCardsForUserRequest.cs │ │ │ │ │ ├── WebcastCardGetAllCardsForUserResponse.cs │ │ │ │ │ ├── WebcastCardGetRequest.cs │ │ │ │ │ ├── WebcastCardGetResponse.cs │ │ │ │ │ ├── WebcastCardSetRequest.cs │ │ │ │ │ ├── WebcastCardSetResponse.cs │ │ │ │ │ ├── WebcastCardUpdateRequest.cs │ │ │ │ │ └── WebcastCardUpdateResponse.cs │ │ │ │ ├── File/ │ │ │ │ │ ├── WebcastFileCardImageDeleteRequest.cs │ │ │ │ │ ├── WebcastFileCardImageDeleteResponse.cs │ │ │ │ │ ├── WebcastFileCardImageGetRequest.cs │ │ │ │ │ ├── WebcastFileCardImageGetResponse.cs │ │ │ │ │ ├── WebcastFileCardImageUploadRequest.cs │ │ │ │ │ └── WebcastFileCardImageUploadResponse.cs │ │ │ │ ├── GamingCon/ │ │ │ │ │ ├── WebcastGamingConRoundCoGameUploadUserDataRequest.cs │ │ │ │ │ ├── WebcastGamingConRoundCoGameUploadUserDataResponse.cs │ │ │ │ │ ├── WebcastGamingConRoundCompleteUploadUserResultRequest.cs │ │ │ │ │ ├── WebcastGamingConRoundCompleteUploadUserResultResponse.cs │ │ │ │ │ ├── WebcastGamingConRoundSyncStatusRequest.cs │ │ │ │ │ ├── WebcastGamingConRoundSyncStatusResponse.cs │ │ │ │ │ ├── WebcastGamingConRoundUploadRankListRequest.cs │ │ │ │ │ ├── WebcastGamingConRoundUploadRankListResponse.cs │ │ │ │ │ ├── WebcastGamingConRoundUploadUserGroupInfoRequest.cs │ │ │ │ │ ├── WebcastGamingConRoundUploadUserGroupInfoResponse.cs │ │ │ │ │ ├── WebcastGamingConRoundUploadUserResultRequest.cs │ │ │ │ │ ├── WebcastGamingConRoundUploadUserResultResponse.cs │ │ │ │ │ ├── WebcastGamingConWorldRankCompleteUploadUserResultRequest.cs │ │ │ │ │ ├── WebcastGamingConWorldRankCompleteUploadUserResultResponse.cs │ │ │ │ │ ├── WebcastGamingConWorldRankSetValidVersionRequest.cs │ │ │ │ │ ├── WebcastGamingConWorldRankSetValidVersionResponse.cs │ │ │ │ │ ├── WebcastGamingConWorldRankUploadRankListRequest.cs │ │ │ │ │ ├── WebcastGamingConWorldRankUploadRankListResponse.cs │ │ │ │ │ ├── WebcastGamingConWorldRankUploadUserResultRequest.cs │ │ │ │ │ └── WebcastGamingConWorldRankUploadUserResultResponse.cs │ │ │ │ ├── Gift/ │ │ │ │ │ ├── WebcastGiftTopGiftRequest.cs │ │ │ │ │ └── WebcastGiftTopGiftResponse.cs │ │ │ │ ├── LinkMic/ │ │ │ │ │ ├── WebcastLinkMicQueryRequest.cs │ │ │ │ │ └── WebcastLinkMicQueryResponse.cs │ │ │ │ ├── LiveData/ │ │ │ │ │ ├── WebcastLiveDataTaskFailDataGetRequest.cs │ │ │ │ │ ├── WebcastLiveDataTaskFailDataGetResponse.cs │ │ │ │ │ ├── WebcastLiveDataTaskGetRequest.cs │ │ │ │ │ ├── WebcastLiveDataTaskGetResponse.cs │ │ │ │ │ ├── WebcastLiveDataTaskStartRequest.cs │ │ │ │ │ ├── WebcastLiveDataTaskStartResponse.cs │ │ │ │ │ ├── WebcastLiveDataTaskStopRequest.cs │ │ │ │ │ └── WebcastLiveDataTaskStopResponse.cs │ │ │ │ ├── Quiz/ │ │ │ │ │ ├── WebcastQuizGetRequest.cs │ │ │ │ │ └── WebcastQuizGetResponse.cs │ │ │ │ └── WebcastMate/ │ │ │ │ ├── WebcastWebcastMateInfoRequest.cs │ │ │ │ └── WebcastWebcastMateInfoResponse.cs │ │ │ └── Settings/ │ │ │ └── Credentials.cs │ │ ├── Extensions/ │ │ │ ├── DouyinMicroAppClientEventExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsAdPlacementExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsAuthExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsCapacityExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsCategoryExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsCensorExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsDeveloperToolboxExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsDouyinExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsECPayExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsItemExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsLiveBookingExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsPlayletBusinessExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsPrivacySettingExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsQrcodeExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsSearchExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsShareExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsTaskExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsTradeExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsTrafficPermissionExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsUrlLinkExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsUrlSchemaExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsUserExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteAppsVideoExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteECommerceExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteGiftExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteLegacyAppsECPayExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteLegacyAppsExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteLegacyAppsGameExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteLegacyAppsStorageExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteLegacyAppsTradeExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteLegacyCommentExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteLegacyTagsExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteLiveBookingExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteMatchTaskBoxExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteNotificationSubscriptionExtensions.cs │ │ │ ├── DouyinMicroAppClientExecutePlatformDataAnalysisExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteProductExtensions.cs │ │ │ ├── DouyinMicroAppClientExecutePromotionExtensions.cs │ │ │ ├── DouyinMicroAppClientExecuteTradeAuthDeveloperExtensions.cs │ │ │ └── DouyinMicroAppClientExecuteTradeBasicDeveloperExtensions.cs │ │ ├── Models/ │ │ │ ├── AppsAdPlacement/ │ │ │ │ ├── AppsAdPlacementAddV1Request.cs │ │ │ │ ├── AppsAdPlacementAddV1Response.cs │ │ │ │ ├── AppsAdPlacementQueryV1Request.cs │ │ │ │ ├── AppsAdPlacementQueryV1Response.cs │ │ │ │ ├── AppsAdPlacementUpdateV1Request.cs │ │ │ │ └── AppsAdPlacementUpdateV1Response.cs │ │ │ ├── AppsAuth/ │ │ │ │ ├── AppsAuthGetRelatedIdV1Request.cs │ │ │ │ └── AppsAuthGetRelatedIdV1Response.cs │ │ │ ├── AppsCapacity/ │ │ │ │ ├── Ad/ │ │ │ │ │ ├── AppsCapacityQueryAdIncomeV3Request.cs │ │ │ │ │ ├── AppsCapacityQueryAdIncomeV3Response.cs │ │ │ │ │ ├── AppsCapacityQueryAdSettlementListV3Request.cs │ │ │ │ │ └── AppsCapacityQueryAdSettlementListV3Response.cs │ │ │ │ ├── AwemeBind/ │ │ │ │ │ ├── AppsCapacityBindAwemeRelationV1Request.cs │ │ │ │ │ ├── AppsCapacityBindAwemeRelationV1Response.cs │ │ │ │ │ ├── AppsCapacityGetAwemeBindTemplateInfoV1Request.cs │ │ │ │ │ ├── AppsCapacityGetAwemeBindTemplateInfoV1Response.cs │ │ │ │ │ ├── AppsCapacityGetAwemeBindTemplateListV1Request.cs │ │ │ │ │ ├── AppsCapacityGetAwemeBindTemplateListV1Response.cs │ │ │ │ │ ├── AppsCapacityGetAwemeRelationBindQrcodeV1Request.cs │ │ │ │ │ ├── AppsCapacityGetAwemeRelationBindQrcodeV1Response.cs │ │ │ │ │ ├── AppsCapacityQueryAwemeRelationListV1Request.cs │ │ │ │ │ ├── AppsCapacityQueryAwemeRelationListV1Response.cs │ │ │ │ │ ├── AppsCapacityUnbindAwemeRelationV1Request.cs │ │ │ │ │ └── AppsCapacityUnbindAwemeRelationV1Response.cs │ │ │ │ ├── AwemeKeyword/ │ │ │ │ │ ├── AppsCapacityAddAwemeVideoKeywordV1Request.cs │ │ │ │ │ ├── AppsCapacityAddAwemeVideoKeywordV1Response.cs │ │ │ │ │ ├── AppsCapacityDeleteAwemeVideoKeywordV1Request.cs │ │ │ │ │ ├── AppsCapacityDeleteAwemeVideoKeywordV1Response.cs │ │ │ │ │ ├── AppsCapacityQueryAwemeVideoKeywordListV1Request.cs │ │ │ │ │ └── AppsCapacityQueryAwemeVideoKeywordListV1Response.cs │ │ │ │ ├── Delivery/ │ │ │ │ │ ├── AppsCapacityCreateAliasV1Request.cs │ │ │ │ │ ├── AppsCapacityCreateAliasV1Response.cs │ │ │ │ │ ├── AppsCapacityDeleteAliasV1Request.cs │ │ │ │ │ ├── AppsCapacityDeleteAliasV1Response.cs │ │ │ │ │ ├── AppsCapacityListAliasV1Request.cs │ │ │ │ │ ├── AppsCapacityListAliasV1Response.cs │ │ │ │ │ ├── AppsCapacityModifyAliasV1Request.cs │ │ │ │ │ ├── AppsCapacityModifyAliasV1Response.cs │ │ │ │ │ ├── AppsCapacityQuerySearchTagListV1Request.cs │ │ │ │ │ ├── AppsCapacityQuerySearchTagListV1Response.cs │ │ │ │ │ ├── AppsCapacitySetSearchTagV1Request.cs │ │ │ │ │ └── AppsCapacitySetSearchTagV1Response.cs │ │ │ │ ├── SimpleQrcode/ │ │ │ │ │ ├── AppsCapacityAddSimpleQrcodeBindV2Request.cs │ │ │ │ │ ├── AppsCapacityAddSimpleQrcodeBindV2Response.cs │ │ │ │ │ ├── AppsCapacityDeleteSimpleQrcodeBindV2Request.cs │ │ │ │ │ ├── AppsCapacityDeleteSimpleQrcodeBindV2Response.cs │ │ │ │ │ ├── AppsCapacityQuerySimpleQrcodeBindListV2Request.cs │ │ │ │ │ ├── AppsCapacityQuerySimpleQrcodeBindListV2Response.cs │ │ │ │ │ ├── AppsCapacityUpdateSimpleQrcodeBindStatusV2Request.cs │ │ │ │ │ ├── AppsCapacityUpdateSimpleQrcodeBindStatusV2Response.cs │ │ │ │ │ ├── AppsCapacityUpdateSimpleQrcodeBindV2Request.cs │ │ │ │ │ └── AppsCapacityUpdateSimpleQrcodeBindV2Response.cs │ │ │ │ └── SubService/ │ │ │ │ ├── AppsCapacityCreateMicroAppSubServiceV1Request.cs │ │ │ │ ├── AppsCapacityCreateMicroAppSubServiceV1Response.cs │ │ │ │ ├── AppsCapacityQueryMicroAppSubServiceV1Request.cs │ │ │ │ └── AppsCapacityQueryMicroAppSubServiceV1Response.cs │ │ │ ├── AppsCategory/ │ │ │ │ ├── AppsCategoryQueryAppCategoriesV1Request.cs │ │ │ │ └── AppsCategoryQueryAppCategoriesV1Response.cs │ │ │ ├── AppsCensor/ │ │ │ │ ├── AppsCensorImageV1Request.cs │ │ │ │ └── AppsCensorImageV1Response.cs │ │ │ ├── AppsDeveloperToolbox/ │ │ │ │ ├── AppsDeveloperToolboxImageMaterialFunctionConfigAddV1Request.cs │ │ │ │ ├── AppsDeveloperToolboxImageMaterialFunctionConfigAddV1Response.cs │ │ │ │ ├── AppsDeveloperToolboxImageMaterialFunctionConfigQueryStatusV1Request.cs │ │ │ │ ├── AppsDeveloperToolboxImageMaterialFunctionConfigQueryStatusV1Response.cs │ │ │ │ ├── AppsDeveloperToolboxImageMaterialUploadV1Request.cs │ │ │ │ └── AppsDeveloperToolboxImageMaterialUploadV1Response.cs │ │ │ ├── AppsDouyin/ │ │ │ │ ├── InteractTask/ │ │ │ │ │ ├── AppsDouyinCreateInteractTaskV1Request.cs │ │ │ │ │ ├── AppsDouyinCreateInteractTaskV1Response.cs │ │ │ │ │ ├── AppsDouyinQueryUserInteractTaskV1Request.cs │ │ │ │ │ └── AppsDouyinQueryUserInteractTaskV1Response.cs │ │ │ │ └── Task/ │ │ │ │ ├── AppsDouyinCreateTaskV1Request.cs │ │ │ │ ├── AppsDouyinCreateTaskV1Response.cs │ │ │ │ ├── AppsDouyinQueryUserTaskV1Request.cs │ │ │ │ └── AppsDouyinQueryUserTaskV1Response.cs │ │ │ ├── AppsECPay/ │ │ │ │ ├── Bill/ │ │ │ │ │ ├── AppsBillsV3Request.cs │ │ │ │ │ ├── AppsBillsV3Response.cs │ │ │ │ │ ├── AppsFundBillsV3Request.cs │ │ │ │ │ └── AppsFundBillsV3Response.cs │ │ │ │ └── SaaS/ │ │ │ │ ├── Applyment/ │ │ │ │ │ ├── AppsECPaySaaSCreateMerchantV3Request.cs │ │ │ │ │ ├── AppsECPaySaaSCreateMerchantV3Response.cs │ │ │ │ │ ├── AppsECPaySaaSImageUploadV3Request.cs │ │ │ │ │ ├── AppsECPaySaaSImageUploadV3Response.cs │ │ │ │ │ ├── AppsECPaySaaSQueryMerchantStatusV3Request.cs │ │ │ │ │ └── AppsECPaySaaSQueryMerchantStatusV3Response.cs │ │ │ │ ├── Links/ │ │ │ │ │ ├── AppsECPaySaaSAddMerchantV3Request.cs │ │ │ │ │ ├── AppsECPaySaaSAddMerchantV3Response.cs │ │ │ │ │ ├── AppsECPaySaaSAddSubMerchantV3Request.cs │ │ │ │ │ ├── AppsECPaySaaSAddSubMerchantV3Response.cs │ │ │ │ │ ├── AppsECPaySaaSAppAddSubMerchantV3Request.cs │ │ │ │ │ ├── AppsECPaySaaSAppAddSubMerchantV3Response.cs │ │ │ │ │ ├── AppsECPaySaaSGetAppMerchantV3Request.cs │ │ │ │ │ └── AppsECPaySaaSGetAppMerchantV3Response.cs │ │ │ │ └── Withdraw/ │ │ │ │ ├── AppsECPaySaaSMerchantWithdrawV3Request.cs │ │ │ │ ├── AppsECPaySaaSMerchantWithdrawV3Response.cs │ │ │ │ ├── AppsECPaySaaSQueryMerchantBalanceV3Request.cs │ │ │ │ ├── AppsECPaySaaSQueryMerchantBalanceV3Response.cs │ │ │ │ ├── AppsECPaySaaSQueryWithdrawOrderV3Request.cs │ │ │ │ └── AppsECPaySaaSQueryWithdrawOrderV3Response.cs │ │ │ ├── AppsItem/ │ │ │ │ ├── AppsItemBCGetBaseV1Request.cs │ │ │ │ ├── AppsItemBCGetBaseV1Response.cs │ │ │ │ ├── AppsItemBCGetCommentV1Request.cs │ │ │ │ ├── AppsItemBCGetCommentV1Response.cs │ │ │ │ ├── AppsItemBCGetLikeV1Request.cs │ │ │ │ ├── AppsItemBCGetLikeV1Response.cs │ │ │ │ ├── AppsItemBCGetPlayV1Request.cs │ │ │ │ ├── AppsItemBCGetPlayV1Response.cs │ │ │ │ ├── AppsItemBCGetShareV1Request.cs │ │ │ │ ├── AppsItemBCGetShareV1Response.cs │ │ │ │ ├── AppsItemGetBaseV1Request.cs │ │ │ │ ├── AppsItemGetBaseV1Response.cs │ │ │ │ ├── AppsItemGetCommentV1Request.cs │ │ │ │ ├── AppsItemGetCommentV1Response.cs │ │ │ │ ├── AppsItemGetLikeV1Request.cs │ │ │ │ ├── AppsItemGetLikeV1Response.cs │ │ │ │ ├── AppsItemGetPlayV1Request.cs │ │ │ │ ├── AppsItemGetPlayV1Response.cs │ │ │ │ ├── AppsItemGetShareV1Request.cs │ │ │ │ ├── AppsItemGetShareV1Response.cs │ │ │ │ └── Comment/ │ │ │ │ ├── AppsItemBCListCommentReplyV1Request.cs │ │ │ │ ├── AppsItemBCListCommentReplyV1Response.cs │ │ │ │ ├── AppsItemBCListCommentV1Request.cs │ │ │ │ ├── AppsItemBCListCommentV1Response.cs │ │ │ │ ├── AppsItemBCReplyCommentV1Request.cs │ │ │ │ ├── AppsItemBCReplyCommentV1Response.cs │ │ │ │ ├── AppsItemBCTopCommentV1Request.cs │ │ │ │ ├── AppsItemBCTopCommentV1Response.cs │ │ │ │ ├── AppsItemListCommentReplyV1Request.cs │ │ │ │ ├── AppsItemListCommentReplyV1Response.cs │ │ │ │ ├── AppsItemListCommentV1Request.cs │ │ │ │ ├── AppsItemListCommentV1Response.cs │ │ │ │ ├── AppsItemReplyCommentV1Request.cs │ │ │ │ ├── AppsItemReplyCommentV1Response.cs │ │ │ │ ├── AppsItemTopCommentV1Request.cs │ │ │ │ └── AppsItemTopCommentV1Response.cs │ │ │ ├── AppsLiveBooking/ │ │ │ │ ├── AppsLiveBookingVideoCancelV2Request.cs │ │ │ │ ├── AppsLiveBookingVideoCancelV2Response.cs │ │ │ │ ├── AppsLiveBookingVideoCreateV2Request.cs │ │ │ │ └── AppsLiveBookingVideoCreateV2Response.cs │ │ │ ├── AppsPlayletBusiness/ │ │ │ │ ├── AppsPlayletBusinessUploadV1Request.cs │ │ │ │ └── AppsPlayletBusinessUploadV1Response.cs │ │ │ ├── AppsPrivacySetting/ │ │ │ │ ├── AppsPrivacySettingAddV1Request.cs │ │ │ │ ├── AppsPrivacySettingAddV1Response.cs │ │ │ │ ├── AppsPrivacySettingQueryV1Request.cs │ │ │ │ └── AppsPrivacySettingQueryV1Response.cs │ │ │ ├── AppsQrcode/ │ │ │ │ ├── AppsQrcodeCreateV1Request.cs │ │ │ │ └── AppsQrcodeCreateV1Response.cs │ │ │ ├── AppsSearch/ │ │ │ │ ├── AppsSearchDeleteIndexV1Request.cs │ │ │ │ ├── AppsSearchDeleteIndexV1Response.cs │ │ │ │ ├── AppsSearchUploadSitemapV1Request.cs │ │ │ │ └── AppsSearchUploadSitemapV1Response.cs │ │ │ ├── AppsShare/ │ │ │ │ └── Task/ │ │ │ │ ├── AppsShareCreateTaskV1Request.cs │ │ │ │ ├── AppsShareCreateTaskV1Response.cs │ │ │ │ ├── AppsShareQueryUserTaskV1Request.cs │ │ │ │ └── AppsShareQueryUserTaskV1Response.cs │ │ │ ├── AppsTask/ │ │ │ │ ├── AppsTaskCreateLiveV2Request.cs │ │ │ │ ├── AppsTaskCreateLiveV2Response.cs │ │ │ │ ├── AppsTaskCreateVideoV2Request.cs │ │ │ │ ├── AppsTaskCreateVideoV2Response.cs │ │ │ │ ├── AppsTaskWriteoffLiveV2Request.cs │ │ │ │ ├── AppsTaskWriteoffLiveV2Response.cs │ │ │ │ ├── AppsTaskWriteoffVideoV2Request.cs │ │ │ │ └── AppsTaskWriteoffVideoV2Response.cs │ │ │ ├── AppsTrade/ │ │ │ │ ├── AppsTradeToolkitButtonWhiteSettingV2Request.cs │ │ │ │ ├── AppsTradeToolkitButtonWhiteSettingV2Response.cs │ │ │ │ ├── AppsTradeToolkitQueryTextV2Request.cs │ │ │ │ ├── AppsTradeToolkitQueryTextV2Response.cs │ │ │ │ ├── AppsTradeToolkitUpdateMerchantConfigV2Request.cs │ │ │ │ ├── AppsTradeToolkitUpdateMerchantConfigV2Response.cs │ │ │ │ ├── AppsTradeToolkitUpdateMerchantPathV2Request.cs │ │ │ │ └── AppsTradeToolkitUpdateMerchantPathV2Response.cs │ │ │ ├── AppsTrafficPermission/ │ │ │ │ ├── AppsTrafficPermissionOpenV1Request.cs │ │ │ │ ├── AppsTrafficPermissionOpenV1Response.cs │ │ │ │ ├── AppsTrafficPermissionQueryV1Request.cs │ │ │ │ └── AppsTrafficPermissionQueryV1Response.cs │ │ │ ├── AppsUrlLink/ │ │ │ │ ├── AppsUrlLinkGenerateV1Request.cs │ │ │ │ ├── AppsUrlLinkGenerateV1Response.cs │ │ │ │ ├── AppsUrlLinkQueryInfoV1Request.cs │ │ │ │ ├── AppsUrlLinkQueryInfoV1Response.cs │ │ │ │ ├── AppsUrlLinkQueryQuotaV1Request.cs │ │ │ │ └── AppsUrlLinkQueryQuotaV1Response.cs │ │ │ ├── AppsUrlSchema/ │ │ │ │ ├── AppsUrlGenerateSchemaV1Request.cs │ │ │ │ ├── AppsUrlGenerateSchemaV1Response.cs │ │ │ │ ├── AppsUrlQuerySchemaQuotaV1Request.cs │ │ │ │ ├── AppsUrlQuerySchemaQuotaV1Response.cs │ │ │ │ ├── AppsUrlQuerySchemaV1Request.cs │ │ │ │ └── AppsUrlQuerySchemaV1Response.cs │ │ │ ├── AppsUser/ │ │ │ │ ├── AppsUserBCGetCommentV1Request.cs │ │ │ │ ├── AppsUserBCGetCommentV1Response.cs │ │ │ │ ├── AppsUserBCGetFansV1Request.cs │ │ │ │ ├── AppsUserBCGetFansV1Response.cs │ │ │ │ ├── AppsUserBCGetItemV1Request.cs │ │ │ │ ├── AppsUserBCGetItemV1Response.cs │ │ │ │ ├── AppsUserBCGetLikeV1Request.cs │ │ │ │ ├── AppsUserBCGetLikeV1Response.cs │ │ │ │ ├── AppsUserBCGetProfileV1Request.cs │ │ │ │ ├── AppsUserBCGetProfileV1Response.cs │ │ │ │ ├── AppsUserBCGetShareV1Request.cs │ │ │ │ ├── AppsUserBCGetShareV1Response.cs │ │ │ │ ├── AppsUserGetCommentV1Request.cs │ │ │ │ ├── AppsUserGetCommentV1Response.cs │ │ │ │ ├── AppsUserGetFansV1Request.cs │ │ │ │ ├── AppsUserGetFansV1Response.cs │ │ │ │ ├── AppsUserGetItemV1Request.cs │ │ │ │ ├── AppsUserGetItemV1Response.cs │ │ │ │ ├── AppsUserGetLikeV1Request.cs │ │ │ │ ├── AppsUserGetLikeV1Response.cs │ │ │ │ ├── AppsUserGetProfileV1Request.cs │ │ │ │ ├── AppsUserGetProfileV1Response.cs │ │ │ │ ├── AppsUserGetShareV1Request.cs │ │ │ │ └── AppsUserGetShareV1Response.cs │ │ │ ├── AppsVideo/ │ │ │ │ ├── AppsConvertOpenItemIdToEncryptIdV1Request.cs │ │ │ │ ├── AppsConvertOpenItemIdToEncryptIdV1Response.cs │ │ │ │ ├── AppsConvertVideoIdToOpenItemIdV1Request.cs │ │ │ │ ├── AppsConvertVideoIdToOpenItemIdV1Response.cs │ │ │ │ ├── AppsVideoBCQueryV1Request.cs │ │ │ │ ├── AppsVideoBCQueryV1Response.cs │ │ │ │ ├── AppsVideoQueryV1Request.cs │ │ │ │ └── AppsVideoQueryV1Response.cs │ │ │ ├── ECommerce/ │ │ │ │ ├── ECommerceConfigLimitOperatePointV1Request.cs │ │ │ │ ├── ECommerceConfigLimitOperatePointV1Response.cs │ │ │ │ ├── ECommerceConfigRegisterMicroAppV1Request.cs │ │ │ │ ├── ECommerceConfigRegisterMicroAppV1Response.cs │ │ │ │ ├── ECommerceCustomizationQueryStatusV1Request.cs │ │ │ │ ├── ECommerceCustomizationQueryStatusV1Response.cs │ │ │ │ ├── ECommerceShopMemberLeaveV1Request.cs │ │ │ │ └── ECommerceShopMemberLeaveV1Response.cs │ │ │ ├── Gift/ │ │ │ │ ├── GiftReceiveRewardRequest.cs │ │ │ │ └── GiftReceiveRewardResponse.cs │ │ │ ├── LiveBooking/ │ │ │ │ ├── LiveBookingTextCloseRequest.cs │ │ │ │ ├── LiveBookingTextCloseResponse.cs │ │ │ │ ├── LiveBookingTextCreateRequest.cs │ │ │ │ ├── LiveBookingTextCreateResponse.cs │ │ │ │ ├── LiveBookingTextDetailRequest.cs │ │ │ │ ├── LiveBookingTextDetailResponse.cs │ │ │ │ ├── LiveBookingVideoListRequest.cs │ │ │ │ └── LiveBookingVideoListResponse.cs │ │ │ ├── MatchTaskBox/ │ │ │ │ ├── MatchTaskBoxAddRoomTaskV2Request.cs │ │ │ │ ├── MatchTaskBoxAddRoomTaskV2Response.cs │ │ │ │ ├── MatchTaskBoxAddTaskV2Request.cs │ │ │ │ ├── MatchTaskBoxAddTaskV2Response.cs │ │ │ │ ├── MatchTaskBoxQueryAppTaskIdV2Request.cs │ │ │ │ ├── MatchTaskBoxQueryAppTaskIdV2Response.cs │ │ │ │ ├── MatchTaskBoxQueryBillLinkV2Request.cs │ │ │ │ ├── MatchTaskBoxQueryBillLinkV2Response.cs │ │ │ │ ├── MatchTaskBoxQueryTaskInfoV2Request.cs │ │ │ │ ├── MatchTaskBoxQueryTaskInfoV2Response.cs │ │ │ │ ├── MatchTaskBoxQueryVideoSummaryDataV2Request.cs │ │ │ │ ├── MatchTaskBoxQueryVideoSummaryDataV2Response.cs │ │ │ │ ├── MatchTaskBoxUpdateStatusV2Request.cs │ │ │ │ ├── MatchTaskBoxUpdateStatusV2Response.cs │ │ │ │ ├── MatchTaskBoxUpdateTaskV2Request.cs │ │ │ │ └── MatchTaskBoxUpdateTaskV2Response.cs │ │ │ ├── NotificationSubscription/ │ │ │ │ ├── NotificationSubscriptionAddAppTemplateV2Request.cs │ │ │ │ ├── NotificationSubscriptionAddAppTemplateV2Response.cs │ │ │ │ ├── NotificationSubscriptionCreateTemplateV2Request.cs │ │ │ │ ├── NotificationSubscriptionCreateTemplateV2Response.cs │ │ │ │ ├── NotificationSubscriptionDeleteAppTemplateV2Request.cs │ │ │ │ ├── NotificationSubscriptionDeleteAppTemplateV2Response.cs │ │ │ │ ├── NotificationSubscriptionNotifyUserV2Request.cs │ │ │ │ ├── NotificationSubscriptionNotifyUserV2Response.cs │ │ │ │ ├── NotificationSubscriptionQueryAppTemplateV2Request.cs │ │ │ │ ├── NotificationSubscriptionQueryAppTemplateV2Response.cs │ │ │ │ ├── NotificationSubscriptionQueryCreatedTemplateListV2Request.cs │ │ │ │ ├── NotificationSubscriptionQueryCreatedTemplateListV2Response.cs │ │ │ │ ├── NotificationSubscriptionQueryTemplateListV2Request.cs │ │ │ │ └── NotificationSubscriptionQueryTemplateListV2Response.cs │ │ │ ├── PlatformDataAnalysis/ │ │ │ │ ├── Component/ │ │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithDetailV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithDetailV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithOverviewV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithOverviewV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithSourceV2Request.cs │ │ │ │ │ └── PlatformDataAnalysisQueryComponentWithSourceV2Response.cs │ │ │ │ ├── Live/ │ │ │ │ │ ├── PlatformDataAnalysisQueryLiveWithShortIdV2Request.cs │ │ │ │ │ └── PlatformDataAnalysisQueryLiveWithShortIdV2Response.cs │ │ │ │ ├── SmallRoom/ │ │ │ │ │ ├── PlatformDataAnalysisQuerySmallHomeOrderDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQuerySmallHomeOrderDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQuerySmallHomeOverviewDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQuerySmallHomeOverviewDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQuerySmallHomeRoomDataV2Request.cs │ │ │ │ │ └── PlatformDataAnalysisQuerySmallHomeRoomDataV2Response.cs │ │ │ │ ├── Transaction/ │ │ │ │ │ ├── PlatformDataAnalysisQueryDealDataWithConversionV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryDealDataWithConversionV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryDealOverviewDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryDealOverviewDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryLiveDealDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryLiveDealDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryLiveRoomDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryLiveRoomDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryLiveRoomV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryLiveRoomV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryProductDealDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryProductDealDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryVideoDealDataV2Request.cs │ │ │ │ │ └── PlatformDataAnalysisQueryVideoDealDataV2Response.cs │ │ │ │ ├── User/ │ │ │ │ │ ├── PlatformDataAnalysisQueryBehaviorDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryBehaviorDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryClientDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryClientDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryPageDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryPageDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryRealTimeUserDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryRealTimeUserDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryRetentionDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryRetentionDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQuerySceneDataV2Request.cs │ │ │ │ │ ├── PlatformDataAnalysisQuerySceneDataV2Response.cs │ │ │ │ │ ├── PlatformDataAnalysisQueryUserPortraitDataV2Request.cs │ │ │ │ │ └── PlatformDataAnalysisQueryUserPortraitDataV2Response.cs │ │ │ │ └── Video/ │ │ │ │ ├── PlatformDataAnalysisQueryShortLiveDataWithIdV2Request.cs │ │ │ │ ├── PlatformDataAnalysisQueryShortLiveDataWithIdV2Response.cs │ │ │ │ ├── PlatformDataAnalysisQueryShortLiveIdWithAwemeIdV2Request.cs │ │ │ │ ├── PlatformDataAnalysisQueryShortLiveIdWithAwemeIdV2Response.cs │ │ │ │ ├── PlatformDataAnalysisQueryVideoDataV2Request.cs │ │ │ │ ├── PlatformDataAnalysisQueryVideoDataV2Response.cs │ │ │ │ ├── PlatformDataAnalysisQueryVideoWithSourceV2Request.cs │ │ │ │ └── PlatformDataAnalysisQueryVideoWithSourceV2Response.cs │ │ │ ├── Product/ │ │ │ │ └── Region/ │ │ │ │ ├── ProductAppRegionAddV1Request.cs │ │ │ │ ├── ProductAppRegionAddV1Response.cs │ │ │ │ ├── ProductAppRegionDeleteV1Request.cs │ │ │ │ ├── ProductAppRegionDeleteV1Response.cs │ │ │ │ ├── ProductAppRegionModifyV1Request.cs │ │ │ │ └── ProductAppRegionModifyV1Response.cs │ │ │ ├── Promotion/ │ │ │ │ ├── Activity/ │ │ │ │ │ ├── PromotionActivityAddSelfTestAccountsV2Request.cs │ │ │ │ │ ├── PromotionActivityAddSelfTestAccountsV2Response.cs │ │ │ │ │ ├── PromotionActivityBindUserToSidebarActivityV2Request.cs │ │ │ │ │ ├── PromotionActivityBindUserToSidebarActivityV2Response.cs │ │ │ │ │ ├── PromotionActivityCreatePromotionActivityV2Request.cs │ │ │ │ │ ├── PromotionActivityCreatePromotionActivityV2Response.cs │ │ │ │ │ ├── PromotionActivityModifyPromotionActivityV2Request.cs │ │ │ │ │ ├── PromotionActivityModifyPromotionActivityV2Response.cs │ │ │ │ │ ├── PromotionActivityQueryBindedUserV2Request.cs │ │ │ │ │ ├── PromotionActivityQueryBindedUserV2Response.cs │ │ │ │ │ ├── PromotionActivityQueryPromotionActivityV2Request.cs │ │ │ │ │ ├── PromotionActivityQueryPromotionActivityV2Response.cs │ │ │ │ │ ├── PromotionActivityUpdatePromotionActivityStatusV2Request.cs │ │ │ │ │ ├── PromotionActivityUpdatePromotionActivityStatusV2Response.cs │ │ │ │ │ ├── PromotionActivityUploadPopupScreenshotV2Request.cs │ │ │ │ │ └── PromotionActivityUploadPopupScreenshotV2Response.cs │ │ │ │ ├── Coupon/ │ │ │ │ │ ├── DeveloperActivity/ │ │ │ │ │ │ ├── PromotionCouponCreateDeveloperActivityV1Request.cs │ │ │ │ │ │ ├── PromotionCouponCreateDeveloperActivityV1Response.cs │ │ │ │ │ │ ├── PromotionCouponDeleteDeveloperActivityV1Request.cs │ │ │ │ │ │ └── PromotionCouponDeleteDeveloperActivityV1Response.cs │ │ │ │ │ ├── PromotionCouponBatchConsumeCouponV1Request.cs │ │ │ │ │ ├── PromotionCouponBatchConsumeCouponV1Response.cs │ │ │ │ │ ├── PromotionCouponBatchRollbackConsumeCouponV1Request.cs │ │ │ │ │ ├── PromotionCouponBatchRollbackConsumeCouponV1Response.cs │ │ │ │ │ ├── PromotionCouponGetBillDownloadUrlV1Request.cs │ │ │ │ │ ├── PromotionCouponGetBillDownloadUrlV1Response.cs │ │ │ │ │ ├── PromotionCouponGetCouponReceiveInfoV1Request.cs │ │ │ │ │ ├── PromotionCouponGetCouponReceiveInfoV1Response.cs │ │ │ │ │ ├── PromotionCouponGetTalentCouponV1Request.cs │ │ │ │ │ ├── PromotionCouponGetTalentCouponV1Response.cs │ │ │ │ │ ├── PromotionCouponSendCouponToDesignatedUserV1Request.cs │ │ │ │ │ ├── PromotionCouponSendCouponToDesignatedUserV1Response.cs │ │ │ │ │ ├── PromotionCouponSetTalentCouponV1Request.cs │ │ │ │ │ ├── PromotionCouponSetTalentCouponV1Response.cs │ │ │ │ │ ├── PromotionCouponUpdateTalentCouponStatusV1Request.cs │ │ │ │ │ ├── PromotionCouponUpdateTalentCouponStatusV1Response.cs │ │ │ │ │ ├── PromotionCouponUpdateTalentCouponStockV1Request.cs │ │ │ │ │ └── PromotionCouponUpdateTalentCouponStockV1Response.cs │ │ │ │ └── CouponMeta/ │ │ │ │ ├── PromotionCouponCreateCouponMetaV2Request.cs │ │ │ │ ├── PromotionCouponCreateCouponMetaV2Response.cs │ │ │ │ ├── PromotionCouponDeleteCouponMetaV1Request.cs │ │ │ │ ├── PromotionCouponDeleteCouponMetaV1Response.cs │ │ │ │ ├── PromotionCouponGetCouponMetaStatisticsV1Request.cs │ │ │ │ ├── PromotionCouponGetCouponMetaStatisticsV1Response.cs │ │ │ │ ├── PromotionCouponModifyCouponMetaV2Request.cs │ │ │ │ ├── PromotionCouponModifyCouponMetaV2Response.cs │ │ │ │ ├── PromotionCouponQueryActivityMetaDataV1Request.cs │ │ │ │ ├── PromotionCouponQueryActivityMetaDataV1Response.cs │ │ │ │ ├── PromotionCouponQueryCouponMetaV2Request.cs │ │ │ │ ├── PromotionCouponQueryCouponMetaV2Response.cs │ │ │ │ ├── PromotionCouponUpdateCouponMetaStatusV1Request.cs │ │ │ │ ├── PromotionCouponUpdateCouponMetaStatusV1Response.cs │ │ │ │ ├── PromotionCouponUpdateCouponMetaStockV1Request.cs │ │ │ │ └── PromotionCouponUpdateCouponMetaStockV1Response.cs │ │ │ ├── TradeAuthDeveloper/ │ │ │ │ ├── AuthDeposit/ │ │ │ │ │ ├── Auth/ │ │ │ │ │ │ ├── TradeAuthDeveloperCancelAuthOrderV1Request.cs │ │ │ │ │ │ ├── TradeAuthDeveloperCancelAuthOrderV1Response.cs │ │ │ │ │ │ ├── TradeAuthDeveloperCreateAuthOrderV1Request.cs │ │ │ │ │ │ ├── TradeAuthDeveloperCreateAuthOrderV1Response.cs │ │ │ │ │ │ ├── TradeAuthDeveloperFinishAuthOrderV1Request.cs │ │ │ │ │ │ ├── TradeAuthDeveloperFinishAuthOrderV1Response.cs │ │ │ │ │ │ ├── TradeAuthDeveloperQueryAdmissibleAuthV1Request.cs │ │ │ │ │ │ ├── TradeAuthDeveloperQueryAdmissibleAuthV1Response.cs │ │ │ │ │ │ ├── TradeAuthDeveloperQueryAuthOrderV1Request.cs │ │ │ │ │ │ └── TradeAuthDeveloperQueryAuthOrderV1Response.cs │ │ │ │ │ ├── Pay/ │ │ │ │ │ │ ├── TradeAuthDeveloperClosePayOrderV1Request.cs │ │ │ │ │ │ ├── TradeAuthDeveloperClosePayOrderV1Response.cs │ │ │ │ │ │ ├── TradeAuthDeveloperCreatePayOrderV1Request.cs │ │ │ │ │ │ ├── TradeAuthDeveloperCreatePayOrderV1Response.cs │ │ │ │ │ │ ├── TradeAuthDeveloperQueryPayOrderV1Request.cs │ │ │ │ │ │ └── TradeAuthDeveloperQueryPayOrderV1Response.cs │ │ │ │ │ └── Refund/ │ │ │ │ │ ├── TradeAuthDeveloperCreateRefundV1Request.cs │ │ │ │ │ ├── TradeAuthDeveloperCreateRefundV1Response.cs │ │ │ │ │ ├── TradeAuthDeveloperQueryRefundV1Request.cs │ │ │ │ │ └── TradeAuthDeveloperQueryRefundV1Response.cs │ │ │ │ └── PeriodicDeduction/ │ │ │ │ ├── Pay/ │ │ │ │ │ ├── TradeAuthDeveloperCreateSignPayV1Request.cs │ │ │ │ │ ├── TradeAuthDeveloperCreateSignPayV1Response.cs │ │ │ │ │ ├── TradeAuthDeveloperQuerySignPayV1Request.cs │ │ │ │ │ └── TradeAuthDeveloperQuerySignPayV1Response.cs │ │ │ │ ├── Refund/ │ │ │ │ │ ├── TradeAuthDeveloperCreateSignRefundV1Request.cs │ │ │ │ │ ├── TradeAuthDeveloperCreateSignRefundV1Response.cs │ │ │ │ │ ├── TradeAuthDeveloperQuerySignRefundV1Request.cs │ │ │ │ │ └── TradeAuthDeveloperQuerySignRefundV1Response.cs │ │ │ │ └── Sign/ │ │ │ │ ├── TradeAuthDeveloperQuerySignOrderV1Request.cs │ │ │ │ ├── TradeAuthDeveloperQuerySignOrderV1Response.cs │ │ │ │ ├── TradeAuthDeveloperTerminateSignV1Request.cs │ │ │ │ └── TradeAuthDeveloperTerminateSignV1Response.cs │ │ │ ├── TradeBasicDeveloper/ │ │ │ │ ├── TradeBasicDeveloperFulfillPushStatusV1Request.cs │ │ │ │ ├── TradeBasicDeveloperFulfillPushStatusV1Response.cs │ │ │ │ ├── TradeBasicDeveloperOrderQueryV1Request.cs │ │ │ │ ├── TradeBasicDeveloperOrderQueryV1Response.cs │ │ │ │ ├── TradeBasicDeveloperQueryCPSV1Request.cs │ │ │ │ ├── TradeBasicDeveloperQueryCPSV1Response.cs │ │ │ │ ├── TradeBasicDeveloperRefundAuditCallbackV1Request.cs │ │ │ │ ├── TradeBasicDeveloperRefundAuditCallbackV1Response.cs │ │ │ │ ├── TradeBasicDeveloperRefundCreateV1Request.cs │ │ │ │ ├── TradeBasicDeveloperRefundCreateV1Response.cs │ │ │ │ ├── TradeBasicDeveloperRefundQueryV1Request.cs │ │ │ │ ├── TradeBasicDeveloperRefundQueryV1Response.cs │ │ │ │ ├── TradeBasicDeveloperSettleCreateV1Request.cs │ │ │ │ ├── TradeBasicDeveloperSettleCreateV1Response.cs │ │ │ │ ├── TradeBasicDeveloperSettleQueryV1Request.cs │ │ │ │ ├── TradeBasicDeveloperSettleQueryV1Response.cs │ │ │ │ ├── TradeBasicDeveloperTagQueryV1Request.cs │ │ │ │ └── TradeBasicDeveloperTagQueryV1Response.cs │ │ │ └── _Legacy/ │ │ │ ├── Apps/ │ │ │ │ ├── AppsJsCode2SessionV2Request.cs │ │ │ │ ├── AppsJsCode2SessionV2Response.cs │ │ │ │ ├── AppsTokenV2Request.cs │ │ │ │ ├── AppsTokenV2Response.cs │ │ │ │ ├── Capacity/ │ │ │ │ │ ├── AppsCapacityUploadMaterialV1Request.cs │ │ │ │ │ ├── AppsCapacityUploadMaterialV1Response.cs │ │ │ │ │ ├── ClueComponent/ │ │ │ │ │ │ ├── AppsCapacityCreateClueComponentInfoV1Request.cs │ │ │ │ │ │ ├── AppsCapacityCreateClueComponentInfoV1Response.cs │ │ │ │ │ │ ├── AppsCapacityDeleteClueComponentInfoV1Request.cs │ │ │ │ │ │ ├── AppsCapacityDeleteClueComponentInfoV1Response.cs │ │ │ │ │ │ ├── AppsCapacityQueryClueComponentInfoV1Request.cs │ │ │ │ │ │ ├── AppsCapacityQueryClueComponentInfoV1Response.cs │ │ │ │ │ │ ├── AppsCapacityUpdateClueComponentInfoV1Request.cs │ │ │ │ │ │ └── AppsCapacityUpdateClueComponentInfoV1Response.cs │ │ │ │ │ ├── Doudian/ │ │ │ │ │ │ ├── AppsCapacityBindDoudianAccountV1Request.cs │ │ │ │ │ │ ├── AppsCapacityBindDoudianAccountV1Response.cs │ │ │ │ │ │ ├── AppsCapacityCreateDoudianAppV1Request.cs │ │ │ │ │ │ ├── AppsCapacityCreateDoudianAppV1Response.cs │ │ │ │ │ │ ├── AppsCapacityQueryBindDoudianAccountV1Request.cs │ │ │ │ │ │ ├── AppsCapacityQueryBindDoudianAccountV1Response.cs │ │ │ │ │ │ ├── AppsCapacityQueryDoudianAppV1Request.cs │ │ │ │ │ │ ├── AppsCapacityQueryDoudianAppV1Response.cs │ │ │ │ │ │ ├── AppsCapacityQueryDoudianShopInfoV1Request.cs │ │ │ │ │ │ └── AppsCapacityQueryDoudianShopInfoV1Response.cs │ │ │ │ │ └── Mount/ │ │ │ │ │ ├── AppsCapacityApplyCapacityV1Request.cs │ │ │ │ │ ├── AppsCapacityApplyCapacityV1Response.cs │ │ │ │ │ ├── AppsCapacityQueryApplyStatusV1Request.cs │ │ │ │ │ └── AppsCapacityQueryApplyStatusV1Response.cs │ │ │ │ ├── Censor/ │ │ │ │ │ ├── AppsCensorImageRequest.cs │ │ │ │ │ └── AppsCensorImageResponse.cs │ │ │ │ ├── Chat/ │ │ │ │ │ ├── AppsChatCustomerServiceUrlRequest.cs │ │ │ │ │ └── AppsChatCustomerServiceUrlResponse.cs │ │ │ │ ├── CustomerService/ │ │ │ │ │ ├── AppsCustomerServiceUrlRequest.cs │ │ │ │ │ └── AppsCustomerServiceUrlResponse.cs │ │ │ │ ├── Live/ │ │ │ │ │ ├── AppsLiveSetBlackWhiteListV1Request.cs │ │ │ │ │ ├── AppsLiveSetBlackWhiteListV1Response.cs │ │ │ │ │ ├── AppsUploadLiveImageRequest.cs │ │ │ │ │ └── AppsUploadLiveImageResponse.cs │ │ │ │ ├── Message/ │ │ │ │ │ ├── AppsMessageCustomSendRequest.cs │ │ │ │ │ └── AppsMessageCustomSendResponse.cs │ │ │ │ ├── Order/ │ │ │ │ │ ├── AppsOrderDeleteRequest.cs │ │ │ │ │ ├── AppsOrderDeleteResponse.cs │ │ │ │ │ ├── AppsOrderPushV2Request.cs │ │ │ │ │ └── AppsOrderPushV2Response.cs │ │ │ │ ├── Qrcode/ │ │ │ │ │ ├── AppsQrcodeRequest.cs │ │ │ │ │ └── AppsQrcodeResponse.cs │ │ │ │ ├── ShareConfig/ │ │ │ │ │ ├── AppsShareConfigRequest.cs │ │ │ │ │ └── AppsShareConfigResponse.cs │ │ │ │ ├── SubscribeNotification/ │ │ │ │ │ ├── AppsSubscribeNotificationDeveloperNotifyV1Request.cs │ │ │ │ │ └── AppsSubscribeNotificationDeveloperNotifyV1Response.cs │ │ │ │ ├── TaskBox/ │ │ │ │ │ ├── AppsTaskBoxAddTaskRequest.cs │ │ │ │ │ ├── AppsTaskBoxAddTaskResponse.cs │ │ │ │ │ ├── AppsTaskBoxQueryAppTaskIdRequest.cs │ │ │ │ │ ├── AppsTaskBoxQueryAppTaskIdResponse.cs │ │ │ │ │ ├── AppsTaskBoxQueryTaskVideoDataRequest.cs │ │ │ │ │ ├── AppsTaskBoxQueryTaskVideoDataResponse.cs │ │ │ │ │ ├── AppsTaskBoxUpdateOrientTalentsRequest.cs │ │ │ │ │ ├── AppsTaskBoxUpdateOrientTalentsResponse.cs │ │ │ │ │ ├── AppsTaskBoxUpdateStatusRequest.cs │ │ │ │ │ ├── AppsTaskBoxUpdateStatusResponse.cs │ │ │ │ │ ├── AppsTaskBoxUpdateTaskRequest.cs │ │ │ │ │ ├── AppsTaskBoxUpdateTaskResponse.cs │ │ │ │ │ └── __Abstractions/ │ │ │ │ │ ├── AppsTaskBoxRequestBase.cs │ │ │ │ │ └── AppsTaskBoxResponseBase.cs │ │ │ │ └── Video/ │ │ │ │ ├── AppsConvertOpenItemIdToEncryptIdRequest.cs │ │ │ │ ├── AppsConvertOpenItemIdToEncryptIdResponse.cs │ │ │ │ ├── AppsConvertVideoIdToOpenItemIdRequest.cs │ │ │ │ └── AppsConvertVideoIdToOpenItemIdResponse.cs │ │ │ ├── AppsECPay/ │ │ │ │ ├── Bills/ │ │ │ │ │ ├── AppsBillsRequest.cs │ │ │ │ │ ├── AppsBillsResponse.cs │ │ │ │ │ ├── AppsFundBillsRequest.cs │ │ │ │ │ └── AppsFundBillsResponse.cs │ │ │ │ ├── Order/ │ │ │ │ │ ├── AppsECPayCreateOrderV1Request.cs │ │ │ │ │ ├── AppsECPayCreateOrderV1Response.cs │ │ │ │ │ ├── AppsECPayCreateRefundV1Request.cs │ │ │ │ │ ├── AppsECPayCreateRefundV1Response.cs │ │ │ │ │ ├── AppsECPayCreateReturnV1Request.cs │ │ │ │ │ ├── AppsECPayCreateReturnV1Response.cs │ │ │ │ │ ├── AppsECPayQueryOrderV1Request.cs │ │ │ │ │ ├── AppsECPayQueryOrderV1Response.cs │ │ │ │ │ ├── AppsECPayQueryPlatformOrderV1Request.cs │ │ │ │ │ ├── AppsECPayQueryPlatformOrderV1Response.cs │ │ │ │ │ ├── AppsECPayQueryRefundV1Request.cs │ │ │ │ │ ├── AppsECPayQueryRefundV1Response.cs │ │ │ │ │ ├── AppsECPayQueryReturnV1Request.cs │ │ │ │ │ ├── AppsECPayQueryReturnV1Response.cs │ │ │ │ │ ├── AppsECPayQuerySettleV1Request.cs │ │ │ │ │ ├── AppsECPayQuerySettleV1Response.cs │ │ │ │ │ ├── AppsECPaySettleV1Request.cs │ │ │ │ │ └── AppsECPaySettleV1Response.cs │ │ │ │ └── SaaS/ │ │ │ │ ├── Apply/ │ │ │ │ │ ├── AppsECPaySaaSCreateMerchantRequest.cs │ │ │ │ │ ├── AppsECPaySaaSCreateMerchantResponse.cs │ │ │ │ │ ├── AppsECPaySaaSImageUploadRequest.cs │ │ │ │ │ ├── AppsECPaySaaSImageUploadResponse.cs │ │ │ │ │ ├── AppsECPaySaaSQueryMerchantStatusRequest.cs │ │ │ │ │ └── AppsECPaySaaSQueryMerchantStatusResponse.cs │ │ │ │ ├── PageLinks/ │ │ │ │ │ ├── AppsECPaySaaSAddMerchantRequest.cs │ │ │ │ │ ├── AppsECPaySaaSAddMerchantResponse.cs │ │ │ │ │ ├── AppsECPaySaaSAddSubMerchantRequest.cs │ │ │ │ │ ├── AppsECPaySaaSAddSubMerchantResponse.cs │ │ │ │ │ ├── AppsECPaySaaSAppAddSubMerchantRequest.cs │ │ │ │ │ ├── AppsECPaySaaSAppAddSubMerchantResponse.cs │ │ │ │ │ ├── AppsECPaySaaSGetAppMerchantRequest.cs │ │ │ │ │ └── AppsECPaySaaSGetAppMerchantResponse.cs │ │ │ │ └── Withdraw/ │ │ │ │ ├── AppsECPaySaaSMerchantWithdrawRequest.cs │ │ │ │ ├── AppsECPaySaaSMerchantWithdrawResponse.cs │ │ │ │ ├── AppsECPaySaaSQueryMerchantBalanceRequest.cs │ │ │ │ ├── AppsECPaySaaSQueryMerchantBalanceResponse.cs │ │ │ │ ├── AppsECPaySaaSQueryWithdrawOrderRequest.cs │ │ │ │ └── AppsECPaySaaSQueryWithdrawOrderResponse.cs │ │ │ ├── AppsGame/ │ │ │ │ ├── AppsGameWalletAddCoinRequest.cs │ │ │ │ ├── AppsGameWalletAddCoinResponse.cs │ │ │ │ ├── AppsGameWalletGamePayRequest.cs │ │ │ │ ├── AppsGameWalletGamePayResponse.cs │ │ │ │ ├── AppsGameWalletGetBalanceRequest.cs │ │ │ │ ├── AppsGameWalletGetBalanceResponse.cs │ │ │ │ └── __Abstractions/ │ │ │ │ ├── AppsGameWalletRequestBase.cs │ │ │ │ └── AppsGameWalletResponseBase.cs │ │ │ ├── AppsStorage/ │ │ │ │ ├── AppsRemoveUserStorageRequest.cs │ │ │ │ ├── AppsRemoveUserStorageResponse.cs │ │ │ │ ├── AppsSetUserStorageRequest.cs │ │ │ │ └── AppsSetUserStorageResponse.cs │ │ │ ├── AppsTrade/ │ │ │ │ ├── PreOrder/ │ │ │ │ │ ├── AppsTradeCreateOrderV2Request.cs │ │ │ │ │ ├── AppsTradeCreateOrderV2Response.cs │ │ │ │ │ ├── AppsTradeQueryCPSV2Request.cs │ │ │ │ │ ├── AppsTradeQueryCPSV2Response.cs │ │ │ │ │ ├── AppsTradeQueryOrderV2Request.cs │ │ │ │ │ └── AppsTradeQueryOrderV2Response.cs │ │ │ │ ├── Refund/ │ │ │ │ │ ├── AppsTradeCreateRefundV2Request.cs │ │ │ │ │ ├── AppsTradeCreateRefundV2Response.cs │ │ │ │ │ ├── AppsTradeMerchantAuditCallbackV2Request.cs │ │ │ │ │ ├── AppsTradeMerchantAuditCallbackV2Response.cs │ │ │ │ │ ├── AppsTradeQueryRefundV2Request.cs │ │ │ │ │ └── AppsTradeQueryRefundV2Response.cs │ │ │ │ ├── Settlement/ │ │ │ │ │ ├── AppsTradeCreateSettleV2Request.cs │ │ │ │ │ ├── AppsTradeCreateSettleV2Response.cs │ │ │ │ │ ├── AppsTradeQuerySettleV2Request.cs │ │ │ │ │ └── AppsTradeQuerySettleV2Response.cs │ │ │ │ └── WriteOff/ │ │ │ │ ├── AppsTradeDeliveryPrepareV2Request.cs │ │ │ │ ├── AppsTradeDeliveryPrepareV2Response.cs │ │ │ │ ├── AppsTradeDeliveryVerifyV2Request.cs │ │ │ │ ├── AppsTradeDeliveryVerifyV2Response.cs │ │ │ │ ├── AppsTradePushDeliveryV2Request.cs │ │ │ │ ├── AppsTradePushDeliveryV2Response.cs │ │ │ │ ├── AppsTradeQueryItemOrderInfoV2Request.cs │ │ │ │ └── AppsTradeQueryItemOrderInfoV2Response.cs │ │ │ ├── Comment/ │ │ │ │ ├── CommentDeveloperDeleteRequest.cs │ │ │ │ ├── CommentDeveloperDeleteResponse.cs │ │ │ │ ├── CommentDeveloperReplyRequest.cs │ │ │ │ ├── CommentDeveloperReplyResponse.cs │ │ │ │ ├── CommentOpenGetRequest.cs │ │ │ │ └── CommentOpenGetResponse.cs │ │ │ └── Tags/ │ │ │ ├── TagsImageV2Request.cs │ │ │ ├── TagsImageV2Response.cs │ │ │ ├── TagsTextAntiDirtV2Request.cs │ │ │ └── TagsTextAntiDirtV2Response.cs │ │ ├── README.md │ │ ├── SKIT.FlurlHttpClient.ByteDance.MicroApp.csproj │ │ ├── Settings/ │ │ │ └── Credentials.cs │ │ └── Utilities/ │ │ ├── AESUtility.cs │ │ ├── HMACUtility.cs │ │ ├── MD5Utility.cs │ │ ├── RSAUtility.cs │ │ ├── SHA1Utility.cs │ │ └── [Internal]/ │ │ ├── DyMsgCryptor.cs │ │ ├── HttpContentBuilder.cs │ │ └── XmlHelper.cs │ ├── SKIT.FlurlHttpClient.ByteDance.OceanEngine/ │ │ ├── Extensions/ │ │ │ ├── OceanEngineClientExecuteAdvertiserExtensions.cs │ │ │ ├── OceanEngineClientExecuteAdvertisingExtensions.cs │ │ │ ├── OceanEngineClientExecuteAgentExtensions.cs │ │ │ ├── OceanEngineClientExecuteBusinessPlatformExtensions.cs │ │ │ ├── OceanEngineClientExecuteCampaignExtensions.cs │ │ │ ├── OceanEngineClientExecuteCreativeExtensions.cs │ │ │ ├── OceanEngineClientExecuteCustomerCenterExtensions.cs │ │ │ ├── OceanEngineClientExecuteEnterpriseExtensions.cs │ │ │ ├── OceanEngineClientExecuteFileExtensions.cs │ │ │ ├── OceanEngineClientExecuteFundExtensions.cs │ │ │ ├── OceanEngineClientExecuteMajordomoExtensions.cs │ │ │ ├── OceanEngineClientExecuteOAuth2Extensions.cs │ │ │ ├── OceanEngineClientExecuteToolsExtensions.cs │ │ │ └── OceanEngineClientExecuteUserExtensions.cs │ │ ├── Models/ │ │ │ ├── Advertiser/ │ │ │ │ ├── AdvertiserInfoRequest.cs │ │ │ │ ├── AdvertiserInfoResponse.cs │ │ │ │ ├── AdvertiserPublicInfoRequest.cs │ │ │ │ ├── AdvertiserPublicInfoResponse.cs │ │ │ │ ├── Avatar/ │ │ │ │ │ ├── AdvertiserAvatarGetRequest.cs │ │ │ │ │ ├── AdvertiserAvatarGetResponse.cs │ │ │ │ │ ├── AdvertiserAvatarSubmitRequest.cs │ │ │ │ │ └── AdvertiserAvatarSubmitResponse.cs │ │ │ │ ├── Budget/ │ │ │ │ │ ├── AdvertiserBudgetGetRequest.cs │ │ │ │ │ ├── AdvertiserBudgetGetResponse.cs │ │ │ │ │ ├── AdvertiserUpdateBudgetRequest.cs │ │ │ │ │ └── AdvertiserUpdateBudgetResponse.cs │ │ │ │ ├── Fund/ │ │ │ │ │ ├── AdvertiserFundDailyStatisticsRequest.cs │ │ │ │ │ ├── AdvertiserFundDailyStatisticsResponse.cs │ │ │ │ │ ├── AdvertiserFundGetRequest.cs │ │ │ │ │ ├── AdvertiserFundGetResponse.cs │ │ │ │ │ ├── AdvertiserFundTransactionGetRequest.cs │ │ │ │ │ └── AdvertiserFundTransactionGetResponse.cs │ │ │ │ └── Qualification/ │ │ │ │ ├── AdvertiserQualificationCreateV2Request.cs │ │ │ │ ├── AdvertiserQualificationCreateV2Response.cs │ │ │ │ ├── AdvertiserQualificationGetRequest.cs │ │ │ │ ├── AdvertiserQualificationGetResponse.cs │ │ │ │ ├── AdvertiserQualificationSelectV2Request.cs │ │ │ │ ├── AdvertiserQualificationSelectV2Response.cs │ │ │ │ ├── AdvertiserQualificationSubmitRequest.cs │ │ │ │ └── AdvertiserQualificationSubmitResponse.cs │ │ │ ├── Advertising/ │ │ │ │ ├── AdvertisingCostProtectStatusGetRequest.cs │ │ │ │ ├── AdvertisingCostProtectStatusGetResponse.cs │ │ │ │ ├── AdvertisingCreateRequest.cs │ │ │ │ ├── AdvertisingCreateResponse.cs │ │ │ │ ├── AdvertisingGetRequest.cs │ │ │ │ ├── AdvertisingGetResponse.cs │ │ │ │ ├── AdvertisingRejectReasonRequest.cs │ │ │ │ ├── AdvertisingRejectReasonResponse.cs │ │ │ │ ├── AdvertisingUpdateBidRequest.cs │ │ │ │ ├── AdvertisingUpdateBidResponse.cs │ │ │ │ ├── AdvertisingUpdateBudgetRequest.cs │ │ │ │ ├── AdvertisingUpdateBudgetResponse.cs │ │ │ │ ├── AdvertisingUpdateRequest.cs │ │ │ │ ├── AdvertisingUpdateResponse.cs │ │ │ │ ├── AdvertisingUpdateStatusRequest.cs │ │ │ │ └── AdvertisingUpdateStatusResponse.cs │ │ │ ├── Agent/ │ │ │ │ ├── Advertiser/ │ │ │ │ │ ├── AgentAdvertiserCreateV2Request.cs │ │ │ │ │ ├── AgentAdvertiserCreateV2Response.cs │ │ │ │ │ ├── AgentAdvertiserRechargeRequest.cs │ │ │ │ │ ├── AgentAdvertiserRechargeResponse.cs │ │ │ │ │ ├── AgentAdvertiserRefundRequest.cs │ │ │ │ │ ├── AgentAdvertiserRefundResponse.cs │ │ │ │ │ ├── AgentAdvertiserSelectRequest.cs │ │ │ │ │ ├── AgentAdvertiserSelectResponse.cs │ │ │ │ │ ├── AgentAdvertiserUpdateRequest.cs │ │ │ │ │ └── AgentAdvertiserUpdateResponse.cs │ │ │ │ ├── AgentChildAgentSelectRequest.cs │ │ │ │ ├── AgentChildAgentSelectResponse.cs │ │ │ │ ├── AgentInfoRequest.cs │ │ │ │ └── AgentInfoResponse.cs │ │ │ ├── BusinessPlatform/ │ │ │ │ ├── BusinessPlatformPartnerOrganizationListRequest.cs │ │ │ │ └── BusinessPlatformPartnerOrganizationListResponse.cs │ │ │ ├── Campaign/ │ │ │ │ ├── CampaignCreateRequest.cs │ │ │ │ ├── CampaignCreateResponse.cs │ │ │ │ ├── CampaignGetRequest.cs │ │ │ │ ├── CampaignGetResponse.cs │ │ │ │ ├── CampaignUpdateRequest.cs │ │ │ │ ├── CampaignUpdateResponse.cs │ │ │ │ ├── CampaignUpdateStatusRequest.cs │ │ │ │ └── CampaignUpdateStatusResponse.cs │ │ │ ├── Creative/ │ │ │ │ ├── CreativeCreateV2Request.cs │ │ │ │ ├── CreativeCreateV2Response.cs │ │ │ │ ├── CreativeGetRequest.cs │ │ │ │ └── CreativeGetResponse.cs │ │ │ ├── CustomerCenter/ │ │ │ │ └── Advertiser/ │ │ │ │ ├── CustomerCenterAdvertiserListRequest.cs │ │ │ │ └── CustomerCenterAdvertiserListResponse.cs │ │ │ ├── Enterprise/ │ │ │ │ ├── EnterpriseInfoRequest.cs │ │ │ │ └── EnterpriseInfoResponse.cs │ │ │ ├── File/ │ │ │ │ ├── FileImageAdvertiserGetRequest.cs │ │ │ │ ├── FileImageAdvertiserGetResponse.cs │ │ │ │ ├── FileImageAdvertiserRequest.cs │ │ │ │ ├── FileImageAdvertiserResponse.cs │ │ │ │ ├── FileImageAdvertisingRequest.cs │ │ │ │ ├── FileImageAdvertisingResponse.cs │ │ │ │ ├── FileImageGetRequest.cs │ │ │ │ ├── FileImageGetResponse.cs │ │ │ │ ├── FileMaterialBindRequest.cs │ │ │ │ ├── FileMaterialBindResponse.cs │ │ │ │ ├── FileVideoAdvertiserGetRequest.cs │ │ │ │ ├── FileVideoAdvertiserGetResponse.cs │ │ │ │ ├── FileVideoAdvertisingRequest.cs │ │ │ │ ├── FileVideoAdvertisingResponse.cs │ │ │ │ ├── FileVideoDeleteRequest.cs │ │ │ │ ├── FileVideoDeleteResponse.cs │ │ │ │ ├── FileVideoGetRequest.cs │ │ │ │ ├── FileVideoGetResponse.cs │ │ │ │ ├── FileVideoUpdateRequest.cs │ │ │ │ └── FileVideoUpdateResponse.cs │ │ │ ├── Fund/ │ │ │ │ ├── FundSharedWalletBalanceGetRequest.cs │ │ │ │ └── FundSharedWalletBalanceGetResponse.cs │ │ │ ├── Majordomo/ │ │ │ │ └── Advertiser/ │ │ │ │ ├── MajordomoAdvertiserSelectRequest.cs │ │ │ │ └── MajordomoAdvertiserSelectResponse.cs │ │ │ ├── OAuth2/ │ │ │ │ ├── OAuth2AccessTokenRequest.cs │ │ │ │ ├── OAuth2AccessTokenResponse.cs │ │ │ │ ├── OAuth2AdvertiserGetRequest.cs │ │ │ │ ├── OAuth2AdvertiserGetResponse.cs │ │ │ │ ├── OAuth2AppAccessTokenRequest.cs │ │ │ │ ├── OAuth2AppAccessTokenResponse.cs │ │ │ │ ├── OAuth2RefreshTokenRequest.cs │ │ │ │ └── OAuth2RefreshTokenResponse.cs │ │ │ ├── Tools/ │ │ │ │ └── VideoCover/ │ │ │ │ ├── ToolsVideoCoverSuggestRequest.cs │ │ │ │ └── ToolsVideoCoverSuggestResponse.cs │ │ │ └── User/ │ │ │ ├── UserInfoRequest.cs │ │ │ └── UserInfoResponse.cs │ │ ├── OceanEngineClient.cs │ │ ├── OceanEngineClientOptions.cs │ │ ├── OceanEngineEndpoints.cs │ │ ├── OceanEngineException.cs │ │ ├── OceanEngineRequest.cs │ │ ├── OceanEngineResponse.cs │ │ ├── README.md │ │ ├── SKIT.FlurlHttpClient.ByteDance.OceanEngine.csproj │ │ ├── Settings/ │ │ │ └── Credentials.cs │ │ └── Utilities/ │ │ └── MD5Utility.cs │ ├── SKIT.FlurlHttpClient.ByteDance.TikTokGlobal/ │ │ ├── Extensions/ │ │ │ ├── TikTokV2ClientExecuteOAuthExtensions.cs │ │ │ ├── TikTokV2ClientExecutePostExtensions.cs │ │ │ ├── TikTokV2ClientExecuteResearchExtensions.cs │ │ │ ├── TikTokV2ClientExecuteUserExtensions.cs │ │ │ └── TikTokV2ClientExecuteVideoExtensions.cs │ │ ├── Models/ │ │ │ ├── OAuth/ │ │ │ │ ├── OAuthAccessTokenRequest.cs │ │ │ │ ├── OAuthAccessTokenResponse.cs │ │ │ │ ├── OAuthRefreshTokenRequest.cs │ │ │ │ ├── OAuthRefreshTokenResponse.cs │ │ │ │ ├── OAuthRevokeTokenRequest.cs │ │ │ │ ├── OAuthRevokeTokenResponse.cs │ │ │ │ └── Qrcode/ │ │ │ │ ├── OAuthCheckQrcodeRequest.cs │ │ │ │ ├── OAuthCheckQrcodeResponse.cs │ │ │ │ ├── OAuthGetQrcodeRequest.cs │ │ │ │ └── OAuthGetQrcodeResponse.cs │ │ │ ├── Post/ │ │ │ │ ├── PostPublishContentInitRequest.cs │ │ │ │ ├── PostPublishContentInitResponse.cs │ │ │ │ ├── PostPublishCreatorInfoQueryRequest.cs │ │ │ │ ├── PostPublishCreatorInfoQueryResponse.cs │ │ │ │ ├── PostPublishInboxVideoInitRequest.cs │ │ │ │ ├── PostPublishInboxVideoInitResponse.cs │ │ │ │ ├── PostPublishStatusFetchRequest.cs │ │ │ │ ├── PostPublishStatusFetchResponse.cs │ │ │ │ ├── PostPublishVideoInitRequest.cs │ │ │ │ ├── PostPublishVideoInitResponse.cs │ │ │ │ ├── PostUploadVideoRequest.cs │ │ │ │ └── PostUploadVideoResponse.cs │ │ │ ├── Research/ │ │ │ │ ├── Adlib/ │ │ │ │ │ ├── ResearchAdlibAdDetailRequest.cs │ │ │ │ │ ├── ResearchAdlibAdDetailResponse.cs │ │ │ │ │ ├── ResearchAdlibAdQueryRequest.cs │ │ │ │ │ ├── ResearchAdlibAdQueryResponse.cs │ │ │ │ │ ├── ResearchAdlibAdReportRequest.cs │ │ │ │ │ ├── ResearchAdlibAdReportResponse.cs │ │ │ │ │ ├── ResearchAdlibAdvertiserQueryRequest.cs │ │ │ │ │ ├── ResearchAdlibAdvertiserQueryResponse.cs │ │ │ │ │ ├── ResearchAdlibCommercialContentQueryRequest.cs │ │ │ │ │ └── ResearchAdlibCommercialContentQueryResponse.cs │ │ │ │ ├── Playlist/ │ │ │ │ │ ├── ResearchPlaylistInfoRequest.cs │ │ │ │ │ └── ResearchPlaylistInfoResponse.cs │ │ │ │ ├── User/ │ │ │ │ │ ├── ResearchUserFollowersRequest.cs │ │ │ │ │ ├── ResearchUserFollowersResponse.cs │ │ │ │ │ ├── ResearchUserFollowingRequest.cs │ │ │ │ │ ├── ResearchUserFollowingResponse.cs │ │ │ │ │ ├── ResearchUserInfoRequest.cs │ │ │ │ │ ├── ResearchUserInfoResponse.cs │ │ │ │ │ ├── ResearchUserLikedVideosRequest.cs │ │ │ │ │ ├── ResearchUserLikedVideosResponse.cs │ │ │ │ │ ├── ResearchUserPinnedVideosRequest.cs │ │ │ │ │ ├── ResearchUserPinnedVideosResponse.cs │ │ │ │ │ ├── ResearchUserRepostedVideosRequest.cs │ │ │ │ │ └── ResearchUserRepostedVideosResponse.cs │ │ │ │ └── Video/ │ │ │ │ ├── ResearchVideoCommentListRequest.cs │ │ │ │ ├── ResearchVideoCommentListResponse.cs │ │ │ │ ├── ResearchVideoQueryRequest.cs │ │ │ │ └── ResearchVideoQueryResponse.cs │ │ │ ├── User/ │ │ │ │ ├── Data/ │ │ │ │ │ ├── UserDataAddRequest.cs │ │ │ │ │ ├── UserDataAddResponse.cs │ │ │ │ │ ├── UserDataCancelRequest.cs │ │ │ │ │ ├── UserDataCancelResponse.cs │ │ │ │ │ ├── UserDataCheckRequest.cs │ │ │ │ │ ├── UserDataCheckResponse.cs │ │ │ │ │ ├── UserDataDownloadRequest.cs │ │ │ │ │ └── UserDataDownloadResponse.cs │ │ │ │ ├── UserInfoRequest.cs │ │ │ │ └── UserInfoResponse.cs │ │ │ └── Video/ │ │ │ ├── VideoListRequest.cs │ │ │ ├── VideoListResponse.cs │ │ │ ├── VideoQueryRequest.cs │ │ │ └── VideoQueryResponse.cs │ │ ├── README.md │ │ ├── SKIT.FlurlHttpClient.ByteDance.TikTokGlobal.csproj │ │ ├── Settings/ │ │ │ └── Credentials.cs │ │ ├── TikTokV2Client.cs │ │ ├── TikTokV2ClientBuilder.cs │ │ ├── TikTokV2ClientOptions.cs │ │ ├── TikTokV2Endpoints.cs │ │ ├── TikTokV2Exception.cs │ │ ├── TikTokV2Request.cs │ │ ├── TikTokV2Response.cs │ │ └── Utilities/ │ │ └── [Internal]/ │ │ └── HttpContentBuilder.cs │ └── SKIT.FlurlHttpClient.ByteDance.TikTokGlobalShop/ │ ├── Events/ │ │ ├── CancellationStatusChangeEvent.cs │ │ ├── OrderStatusChangeEvent.cs │ │ ├── PackageUpdateEvent.cs │ │ ├── ProductCreationEvent.cs │ │ ├── ProductInformationChangeEvent.cs │ │ ├── ProductStatusChangeEvent.cs │ │ ├── RecipientAddressUpdateEvent.cs │ │ ├── ReturnStatusChangeEvent.cs │ │ ├── SellerDeauthorizationEvent.cs │ │ └── UpcomingAuthorizationExpirationEvent.cs │ ├── Extensions/ │ │ ├── TikTokShopClientEventExtensions.cs │ │ ├── TikTokShopClientExecuteAuthExtensions.cs │ │ ├── TikTokShopClientExecuteAuthorizationExtensions.cs │ │ ├── TikTokShopClientExecuteCustomerServiceExtensions.cs │ │ ├── TikTokShopClientExecuteEventExtensions.cs │ │ ├── TikTokShopClientExecuteFBTExtensions.cs │ │ ├── TikTokShopClientExecuteFinanceExtensions.cs │ │ ├── TikTokShopClientExecuteFulfillmentExtensions.cs │ │ ├── TikTokShopClientExecuteLogisticsExtensions.cs │ │ ├── TikTokShopClientExecuteOrderExtensions.cs │ │ ├── TikTokShopClientExecuteProductExtensions.cs │ │ ├── TikTokShopClientExecutePromotionExtensions.cs │ │ ├── TikTokShopClientExecuteReturnRefundExtensions.cs │ │ ├── TikTokShopClientExecuteSellerExtensions.cs │ │ └── TikTokShopClientExecuteSupplyChainExtensions.cs │ ├── Interceptors/ │ │ └── TikTokShopRequestSigningInterceptor.cs │ ├── Models/ │ │ ├── Auth/ │ │ │ ├── AuthGetTokenRequest.cs │ │ │ ├── AuthGetTokenResponse.cs │ │ │ ├── AuthRefreshTokenRequest.cs │ │ │ └── AuthRefreshTokenResponse.cs │ │ ├── Authorization/ │ │ │ ├── AuthorizationGetCategoryAssetsRequest.cs │ │ │ ├── AuthorizationGetCategoryAssetsResponse.cs │ │ │ ├── AuthorizationGetShopsRequest.cs │ │ │ └── AuthorizationGetShopsResponse.cs │ │ ├── CustomerService/ │ │ │ ├── Agents/ │ │ │ │ ├── CustomerServiceGetAgentSettingsRequest.cs │ │ │ │ ├── CustomerServiceGetAgentSettingsResponse.cs │ │ │ │ ├── CustomerServiceUpdateAgentSettingsRequest.cs │ │ │ │ └── CustomerServiceUpdateAgentSettingsResponse.cs │ │ │ ├── CustomerServiceCreateConversationMessageRequest.cs │ │ │ ├── CustomerServiceCreateConversationMessageResponse.cs │ │ │ ├── CustomerServiceCreateConversationRequest.cs │ │ │ ├── CustomerServiceCreateConversationResponse.cs │ │ │ ├── CustomerServiceGetConversationMessagesRequest.cs │ │ │ ├── CustomerServiceGetConversationMessagesResponse.cs │ │ │ ├── CustomerServiceGetConversationsRequest.cs │ │ │ ├── CustomerServiceGetConversationsResponse.cs │ │ │ ├── CustomerServiceReadConversationMessageRequest.cs │ │ │ ├── CustomerServiceReadConversationMessageResponse.cs │ │ │ ├── CustomerServiceUploadImageRequest.cs │ │ │ ├── CustomerServiceUploadImageResponse.cs │ │ │ └── Performance/ │ │ │ ├── CustomerServiceGetPerformanceRequest.cs │ │ │ └── CustomerServiceGetPerformanceResponse.cs │ │ ├── Event/ │ │ │ ├── EventDeleteWebhookRequest.cs │ │ │ ├── EventDeleteWebhookResponse.cs │ │ │ ├── EventGetWebhooksRequest.cs │ │ │ ├── EventGetWebhooksResponse.cs │ │ │ ├── EventUpdateWebhookRequest.cs │ │ │ └── EventUpdateWebhookResponse.cs │ │ ├── FBT/ │ │ │ ├── FBTGetGoodsRequest.cs │ │ │ ├── FBTGetGoodsResponse.cs │ │ │ ├── FBTGetInboundOrdersRequest.cs │ │ │ ├── FBTGetInboundOrdersResponse.cs │ │ │ ├── FBTGetInventoriesRequest.cs │ │ │ ├── FBTGetInventoriesResponse.cs │ │ │ ├── FBTGetInventoryRecordsRequest.cs │ │ │ ├── FBTGetInventoryRecordsResponse.cs │ │ │ ├── FBTGetMerchantOnboardedRegionsRequest.cs │ │ │ ├── FBTGetMerchantOnboardedRegionsResponse.cs │ │ │ ├── FBTGetWarehousesRequest.cs │ │ │ └── FBTGetWarehousesResponse.cs │ │ ├── Finance/ │ │ │ ├── FinanceGetOrderStatementTransactionsRequest.cs │ │ │ ├── FinanceGetOrderStatementTransactionsResponse.cs │ │ │ ├── FinanceGetPaymentsRequest.cs │ │ │ ├── FinanceGetPaymentsResponse.cs │ │ │ ├── FinanceGetStatementTransactionsRequest.cs │ │ │ ├── FinanceGetStatementTransactionsResponse.cs │ │ │ ├── FinanceGetStatementsRequest.cs │ │ │ ├── FinanceGetStatementsResponse.cs │ │ │ ├── FinanceGetWithdrawalsRequest.cs │ │ │ └── FinanceGetWithdrawalsResponse.cs │ │ ├── Fulfillment/ │ │ │ ├── Bundle/ │ │ │ │ ├── FulfillmentCreateBundleRequest.cs │ │ │ │ └── FulfillmentCreateBundleResponse.cs │ │ │ ├── Orders/ │ │ │ │ ├── FulfillmentGetOrderSplitAttributesRequest.cs │ │ │ │ ├── FulfillmentGetOrderSplitAttributesResponse.cs │ │ │ │ ├── FulfillmentGetOrderTrackingRequest.cs │ │ │ │ ├── FulfillmentGetOrderTrackingResponse.cs │ │ │ │ ├── FulfillmentSearchOrderShippingServicesRequest.cs │ │ │ │ ├── FulfillmentSearchOrderShippingServicesResponse.cs │ │ │ │ ├── FulfillmentSplitOrderRequest.cs │ │ │ │ ├── FulfillmentSplitOrderResponse.cs │ │ │ │ ├── FulfillmentUpdateOrderPackagesRequest.cs │ │ │ │ ├── FulfillmentUpdateOrderPackagesResponse.cs │ │ │ │ ├── FulfillmentUpdateOrderShippingInfoRequest.cs │ │ │ │ └── FulfillmentUpdateOrderShippingInfoResponse.cs │ │ │ ├── Packages/ │ │ │ │ ├── Combine/ │ │ │ │ │ ├── FulfillmentCombinePackageRequest.cs │ │ │ │ │ ├── FulfillmentCombinePackageResponse.cs │ │ │ │ │ ├── FulfillmentSearchCombinablePackagesRequest.cs │ │ │ │ │ ├── FulfillmentSearchCombinablePackagesResponse.cs │ │ │ │ │ ├── FulfillmentUncombinePackageRequest.cs │ │ │ │ │ └── FulfillmentUncombinePackageResponse.cs │ │ │ │ ├── FulfillmentBatchShipPackagesRequest.cs │ │ │ │ ├── FulfillmentBatchShipPackagesResponse.cs │ │ │ │ ├── FulfillmentBatchUpdatePackagesDeliveryStatusRequest.cs │ │ │ │ ├── FulfillmentBatchUpdatePackagesDeliveryStatusResponse.cs │ │ │ │ ├── FulfillmentCreatePackageRequest.cs │ │ │ │ ├── FulfillmentCreatePackageResponse.cs │ │ │ │ ├── FulfillmentGetPackageDetailRequest.cs │ │ │ │ ├── FulfillmentGetPackageDetailResponse.cs │ │ │ │ ├── FulfillmentGetPackageHandoverTimeSlotsRequest.cs │ │ │ │ ├── FulfillmentGetPackageHandoverTimeSlotsResponse.cs │ │ │ │ ├── FulfillmentGetPackageShippingDocumentsRequest.cs │ │ │ │ ├── FulfillmentGetPackageShippingDocumentsResponse.cs │ │ │ │ ├── FulfillmentSearchPackagesRequest.cs │ │ │ │ ├── FulfillmentSearchPackagesResponse.cs │ │ │ │ ├── FulfillmentShipPackageRequest.cs │ │ │ │ ├── FulfillmentShipPackageResponse.cs │ │ │ │ ├── FulfillmentUpdatePackageShippingInfoRequest.cs │ │ │ │ └── FulfillmentUpdatePackageShippingInfoResponse.cs │ │ │ └── Upload/ │ │ │ ├── FulfillmentUploadFileRequest.cs │ │ │ ├── FulfillmentUploadFileResponse.cs │ │ │ ├── FulfillmentUploadImageRequest.cs │ │ │ └── FulfillmentUploadImageResponse.cs │ │ ├── Logistics/ │ │ │ ├── LogisticsGetDeliveryOptionShippingProvidersRequest.cs │ │ │ ├── LogisticsGetDeliveryOptionShippingProvidersResponse.cs │ │ │ ├── LogisticsGetGlobalWarehousesRequest.cs │ │ │ ├── LogisticsGetGlobalWarehousesResponse.cs │ │ │ ├── LogisticsGetWarehouseDeliveryOptionsRequest.cs │ │ │ ├── LogisticsGetWarehouseDeliveryOptionsResponse.cs │ │ │ ├── LogisticsGetWarehousesRequest.cs │ │ │ └── LogisticsGetWarehousesResponse.cs │ │ ├── Order/ │ │ │ ├── ExternalOrder/ │ │ │ │ ├── OrderCreateExternalOrderRequest.cs │ │ │ │ ├── OrderCreateExternalOrderResponse.cs │ │ │ │ ├── OrderGetExternalOrdersRequest.cs │ │ │ │ ├── OrderGetExternalOrdersResponse.cs │ │ │ │ ├── OrderSearchExternalOrdersRequest.cs │ │ │ │ └── OrderSearchExternalOrdersResponse.cs │ │ │ ├── OrderBatchGetOrderDetailRequest.cs │ │ │ ├── OrderBatchGetOrderDetailResponse.cs │ │ │ ├── OrderGetOrderPriceDetailRequest.cs │ │ │ ├── OrderGetOrderPriceDetailResponse.cs │ │ │ ├── OrderSearchOrdersRequest.cs │ │ │ └── OrderSearchOrdersResponse.cs │ │ ├── Product/ │ │ │ ├── Brand/ │ │ │ │ ├── ProductCreateBrandRequest.cs │ │ │ │ ├── ProductCreateBrandResponse.cs │ │ │ │ ├── ProductGetBrandsRequest.cs │ │ │ │ └── ProductGetBrandsResponse.cs │ │ │ ├── Category/ │ │ │ │ ├── ProductGetCategoriesRequest.cs │ │ │ │ ├── ProductGetCategoriesResponse.cs │ │ │ │ ├── ProductGetCategoryAttributesRequest.cs │ │ │ │ ├── ProductGetCategoryAttributesResponse.cs │ │ │ │ ├── ProductGetCategoryRulesRequest.cs │ │ │ │ ├── ProductGetCategoryRulesResponse.cs │ │ │ │ ├── ProductRecommendCategoriesRequest.cs │ │ │ │ └── ProductRecommendCategoriesResponse.cs │ │ │ ├── Compliance/ │ │ │ │ ├── ProductCreateComplianceManufacturerRequest.cs │ │ │ │ ├── ProductCreateComplianceManufacturerResponse.cs │ │ │ │ ├── ProductCreateComplianceResponsiblePersonRequest.cs │ │ │ │ ├── ProductCreateComplianceResponsiblePersonResponse.cs │ │ │ │ ├── ProductSearchComplianceManufacturersRequest.cs │ │ │ │ ├── ProductSearchComplianceManufacturersResponse.cs │ │ │ │ ├── ProductSearchComplianceResponsiblePersonsRequest.cs │ │ │ │ ├── ProductSearchComplianceResponsiblePersonsResponse.cs │ │ │ │ ├── ProductUpdateComplianceManufacturerPartiallyRequest.cs │ │ │ │ ├── ProductUpdateComplianceManufacturerPartiallyResponse.cs │ │ │ │ ├── ProductUpdateComplianceResponsiblePersonPartiallyRequest.cs │ │ │ │ └── ProductUpdateComplianceResponsiblePersonPartiallyResponse.cs │ │ │ ├── Global/ │ │ │ │ ├── Category/ │ │ │ │ │ ├── ProductGetGlobalCategoriesRequest.cs │ │ │ │ │ ├── ProductGetGlobalCategoriesResponse.cs │ │ │ │ │ ├── ProductGetGlobalCategoryAttributesRequest.cs │ │ │ │ │ ├── ProductGetGlobalCategoryAttributesResponse.cs │ │ │ │ │ ├── ProductGetGlobalCategoryRulesRequest.cs │ │ │ │ │ ├── ProductGetGlobalCategoryRulesResponse.cs │ │ │ │ │ ├── ProductRecommendGlobalCategoriesRequest.cs │ │ │ │ │ └── ProductRecommendGlobalCategoriesResponse.cs │ │ │ │ ├── ProductCreateGlobalProductRequest.cs │ │ │ │ ├── ProductCreateGlobalProductResponse.cs │ │ │ │ ├── ProductDeleteGlobalProductsRequest.cs │ │ │ │ ├── ProductDeleteGlobalProductsResponse.cs │ │ │ │ ├── ProductGetGlobalProductDetailRequest.cs │ │ │ │ ├── ProductGetGlobalProductDetailResponse.cs │ │ │ │ ├── ProductPublishGlobalProductRequest.cs │ │ │ │ ├── ProductPublishGlobalProductResponse.cs │ │ │ │ ├── ProductSearchGlobalProductsRequest.cs │ │ │ │ ├── ProductSearchGlobalProductsResponse.cs │ │ │ │ ├── ProductUpdateGlobalProductInventoryRequest.cs │ │ │ │ ├── ProductUpdateGlobalProductInventoryResponse.cs │ │ │ │ ├── ProductUpdateGlobalProductRequest.cs │ │ │ │ └── ProductUpdateGlobalProductResponse.cs │ │ │ ├── ProductActivateProductsRequest.cs │ │ │ ├── ProductActivateProductsResponse.cs │ │ │ ├── ProductCreateProductCategoryUpgradeTaskRequest.cs │ │ │ ├── ProductCreateProductCategoryUpgradeTaskResponse.cs │ │ │ ├── ProductCreateProductListingCheckRequest.cs │ │ │ ├── ProductCreateProductListingCheckResponse.cs │ │ │ ├── ProductCreateProductRequest.cs │ │ │ ├── ProductCreateProductResponse.cs │ │ │ ├── ProductDeactivateProductsRequest.cs │ │ │ ├── ProductDeactivateProductsResponse.cs │ │ │ ├── ProductDeleteProductsRequest.cs │ │ │ ├── ProductDeleteProductsResponse.cs │ │ │ ├── ProductGetInventoriesRequest.cs │ │ │ ├── ProductGetInventoriesResponse.cs │ │ │ ├── ProductGetListingSchemasRequest.cs │ │ │ ├── ProductGetListingSchemasResponse.cs │ │ │ ├── ProductGetPrerequisitesRequest.cs │ │ │ ├── ProductGetPrerequisitesResponse.cs │ │ │ ├── ProductGetProductDetailRequest.cs │ │ │ ├── ProductGetProductDetailResponse.cs │ │ │ ├── ProductGetProductDiagnosesRequest.cs │ │ │ ├── ProductGetProductDiagnosesResponse.cs │ │ │ ├── ProductGetProductSEOWordsRequest.cs │ │ │ ├── ProductGetProductSEOWordsResponse.cs │ │ │ ├── ProductGetProductSuggestionsRequest.cs │ │ │ ├── ProductGetProductSuggestionsResponse.cs │ │ │ ├── ProductRecoverProductsRequest.cs │ │ │ ├── ProductRecoverProductsResponse.cs │ │ │ ├── ProductSearchProductsRequest.cs │ │ │ ├── ProductSearchProductsResponse.cs │ │ │ ├── ProductUpdateProductInventoryRequest.cs │ │ │ ├── ProductUpdateProductInventoryResponse.cs │ │ │ ├── ProductUpdateProductPartiallyRequest.cs │ │ │ ├── ProductUpdateProductPartiallyResponse.cs │ │ │ ├── ProductUpdateProductPriceRequest.cs │ │ │ ├── ProductUpdateProductPriceResponse.cs │ │ │ ├── ProductUpdateProductRequest.cs │ │ │ ├── ProductUpdateProductResponse.cs │ │ │ ├── SizeChart/ │ │ │ │ ├── ProductSearchSizeChartsRequest.cs │ │ │ │ └── ProductSearchSizeChartsResponse.cs │ │ │ └── Upload/ │ │ │ ├── ProductOptimizeImagesRequest.cs │ │ │ ├── ProductOptimizeImagesResponse.cs │ │ │ ├── ProductUploadFileRequest.cs │ │ │ ├── ProductUploadFileResponse.cs │ │ │ ├── ProductUploadImageRequest.cs │ │ │ └── ProductUploadImageResponse.cs │ │ ├── Promotion/ │ │ │ ├── Activity/ │ │ │ │ ├── PromotionCreateActivityRequest.cs │ │ │ │ ├── PromotionCreateActivityResponse.cs │ │ │ │ ├── PromotionDeactivateActivityRequest.cs │ │ │ │ ├── PromotionDeactivateActivityResponse.cs │ │ │ │ ├── PromotionDeleteActivityProductsRequest.cs │ │ │ │ ├── PromotionDeleteActivityProductsResponse.cs │ │ │ │ ├── PromotionGetActivityDetailRequest.cs │ │ │ │ ├── PromotionGetActivityDetailResponse.cs │ │ │ │ ├── PromotionSearchActivitiesRequest.cs │ │ │ │ ├── PromotionSearchActivitiesResponse.cs │ │ │ │ ├── PromotionUpdateActivityProductsRequest.cs │ │ │ │ ├── PromotionUpdateActivityProductsResponse.cs │ │ │ │ ├── PromotionUpdateActivityRequest.cs │ │ │ │ └── PromotionUpdateActivityResponse.cs │ │ │ └── Coupon/ │ │ │ ├── PromotionGetCouponDetailRequest.cs │ │ │ ├── PromotionGetCouponDetailResponse.cs │ │ │ ├── PromotionSearchCouponsRequest.cs │ │ │ └── PromotionSearchCouponsResponse.cs │ │ ├── ReturnRefund/ │ │ │ ├── Cancellations/ │ │ │ │ ├── ReturnRefundApproveCancellationRequest.cs │ │ │ │ ├── ReturnRefundApproveCancellationResponse.cs │ │ │ │ ├── ReturnRefundCreateCancellationRequest.cs │ │ │ │ ├── ReturnRefundCreateCancellationResponse.cs │ │ │ │ ├── ReturnRefundRejectCancellationRequest.cs │ │ │ │ ├── ReturnRefundRejectCancellationResponse.cs │ │ │ │ ├── ReturnRefundSearchCancellationsRequest.cs │ │ │ │ └── ReturnRefundSearchCancellationsResponse.cs │ │ │ ├── Orders/ │ │ │ │ ├── ReturnRefundGetOrderAftersaleEligibilityRequest.cs │ │ │ │ └── ReturnRefundGetOrderAftersaleEligibilityResponse.cs │ │ │ ├── Refunds/ │ │ │ │ ├── ReturnRefundCalculateRefundRequest.cs │ │ │ │ └── ReturnRefundCalculateRefundResponse.cs │ │ │ ├── ReturnRefundGetRejectReasonsRequest.cs │ │ │ ├── ReturnRefundGetRejectReasonsResponse.cs │ │ │ └── Returns/ │ │ │ ├── ReturnRefundApproveReturnRequest.cs │ │ │ ├── ReturnRefundApproveReturnResponse.cs │ │ │ ├── ReturnRefundCreateReturnRequest.cs │ │ │ ├── ReturnRefundCreateReturnResponse.cs │ │ │ ├── ReturnRefundGetReturnRecordsRequest.cs │ │ │ ├── ReturnRefundGetReturnRecordsResponse.cs │ │ │ ├── ReturnRefundRejectReturnRequest.cs │ │ │ ├── ReturnRefundRejectReturnResponse.cs │ │ │ ├── ReturnRefundSearchReturnsRequest.cs │ │ │ └── ReturnRefundSearchReturnsResponse.cs │ │ ├── Seller/ │ │ │ ├── SellerGetPermissionsRequest.cs │ │ │ ├── SellerGetPermissionsResponse.cs │ │ │ ├── SellerGetShopsRequest.cs │ │ │ └── SellerGetShopsResponse.cs │ │ └── SupplyChain/ │ │ ├── SupplyChainSyncPackagesRequest.cs │ │ └── SupplyChainSyncPackagesResponse.cs │ ├── README.md │ ├── SKIT.FlurlHttpClient.ByteDance.TikTokGlobalShop.csproj │ ├── Settings/ │ │ └── Credentials.cs │ ├── TikTokShopClient.cs │ ├── TikTokShopClientBuilder.cs │ ├── TikTokShopClientOptions.cs │ ├── TikTokShopEndpoints.cs │ ├── TikTokShopEvent.cs │ ├── TikTokShopException.cs │ ├── TikTokShopRequest.cs │ ├── TikTokShopResponse.cs │ └── Utilities/ │ ├── HMACUtility.cs │ └── [Internal]/ │ └── HttpContentBuilder.cs └── test/ ├── NuGet.config ├── SKIT.FlurlHttpClient.ByteDance.DouyinOpen.UnitTests/ │ ├── .gitignore │ ├── EventSamples/ │ │ ├── GoodLife/ │ │ │ ├── LifeMemberJoinEvent.json │ │ │ ├── LifeMemberLeaveEvent.json │ │ │ ├── LifeProductAuditEvent.json │ │ │ ├── LifeTradeCertificateNotifyEvent.json │ │ │ └── LifeTradeOrderNotifyEvent.json │ │ ├── IM/ │ │ │ ├── EnterGroupAuditChangeEvent.json │ │ │ ├── GroupFansEventEvent.json │ │ │ ├── IMAuthorizeEvent.json │ │ │ ├── IMEnterDirectMessageEvent.json │ │ │ ├── IMGroupReceiveMessageEvent.json │ │ │ └── IMReceiveMessageEvent.json │ │ ├── Interaction/ │ │ │ ├── NewFollowActionEvent.json │ │ │ └── NewVideoDiggEvent.json │ │ ├── UnionAuth/ │ │ │ ├── UnionAuthInfoForBEvent.json │ │ │ └── UnionAuthInfoForCEvent.json │ │ └── Webhook/ │ │ ├── AuthorizeEvent.json │ │ ├── CreateVideoEvent.json │ │ ├── DialogPhoneEvent.json │ │ ├── ItemCommentReplyEvent.json │ │ ├── PersonalTabContactEvent.json │ │ ├── ReceiveMessageEvent.json │ │ ├── UnauthorizeEvent.json │ │ ├── VerifyWebhookEvent.json │ │ └── WebsiteContactEvent.json │ ├── IMPORTANT_CodeAnalyzeTests.cs │ ├── ModelSamples/ │ │ ├── ApiAppsAuth/ │ │ │ ├── AppsAuthGetOpenIdByCV1Request.json │ │ │ └── AppsAuthGetOpenIdByCV1Response.json │ │ ├── ApiAppsTrade/ │ │ │ ├── AppsTradeBookCreateBookV2Request.json │ │ │ ├── AppsTradeBookCreateBookV2Response.json │ │ │ ├── AppsTradeBookMerchantCancelBookV2Request.json │ │ │ ├── AppsTradeBookQueryBookV2Request.json │ │ │ ├── AppsTradeBookQueryBookV2Response.json │ │ │ ├── AppsTradeBookResultCallbackV2Request.json │ │ │ ├── AppsTradeBookUserCancelBookV2Request.json │ │ │ ├── AppsTradeFulfillmentDeliveryPrepareV2Request.json │ │ │ ├── AppsTradeFulfillmentDeliveryPrepareV2Response.json │ │ │ ├── AppsTradeFulfillmentDeliveryVerifyV2Request.json │ │ │ ├── AppsTradeFulfillmentDeliveryVerifyV2Response.json │ │ │ ├── AppsTradeFulfillmentOrderCanUseV2Request.json │ │ │ ├── AppsTradeFulfillmentOrderCanUseV2Response.json │ │ │ ├── AppsTradeFulfillmentPushDeliveryV2Request.json │ │ │ ├── AppsTradeFulfillmentPushDeliveryV2Response.json │ │ │ ├── AppsTradeFulfillmentQueryUserCertificatesV2Request.json │ │ │ ├── AppsTradeFulfillmentQueryUserCertificatesV2Response.json │ │ │ ├── AppsTradeFulfillmentVerifyCancelV2Request.json │ │ │ ├── AppsTradeOrderCloseOrderV2Request.json │ │ │ ├── AppsTradeOrderCreateOrderV2Request.json │ │ │ ├── AppsTradeOrderCreateOrderV2Response.json │ │ │ ├── AppsTradeOrderQueryCPSV2Request.json │ │ │ ├── AppsTradeOrderQueryCPSV2Response.json │ │ │ ├── AppsTradeOrderQueryItemOrderInfoV2Request.json │ │ │ ├── AppsTradeOrderQueryItemOrderInfoV2Response.json │ │ │ ├── AppsTradeOrderQueryOrderV2Request.json │ │ │ ├── AppsTradeOrderQueryOrderV2Response.json │ │ │ ├── AppsTradeRefundCreateRefundV2Request.json │ │ │ ├── AppsTradeRefundCreateRefundV2Response.json │ │ │ ├── AppsTradeRefundMerchantAuditCallbackV2Request.json │ │ │ ├── AppsTradeRefundQueryRefundV2Request.json │ │ │ ├── AppsTradeRefundQueryRefundV2Response.json │ │ │ ├── AppsTradeSettleCreateSettleV2Request.json │ │ │ ├── AppsTradeSettleCreateSettleV2Response.json │ │ │ ├── AppsTradeSettleQuerySettleV2Request.json │ │ │ └── AppsTradeSettleQuerySettleV2Response.json │ │ ├── ApiDouyinAuth/ │ │ │ ├── DouyinAuthGetOpenIdByBV1Request.json │ │ │ ├── DouyinAuthGetOpenIdByBV1Response.json │ │ │ ├── DouyinAuthGetOpenIdByCV1Request.json │ │ │ ├── DouyinAuthGetOpenIdByCV1Response.json │ │ │ ├── DouyinAuthGetRelatedIdV1Request.json │ │ │ └── DouyinAuthGetRelatedIdV1Response.json │ │ ├── ApiDouyinIM/ │ │ │ ├── DouyinIMGetAppletTemplateV1Request.json │ │ │ ├── DouyinIMGetAppletTemplateV1Response.json │ │ │ ├── DouyinIMSetAppletTemplateV1Request.json │ │ │ └── DouyinIMSetAppletTemplateV1Response.json │ │ ├── ApiDouyinInteractive/ │ │ │ └── DouyinInteractiveIntentionLogListV1Response.json │ │ ├── ApiDouyinRole/ │ │ │ ├── DouyinRoleCheckV1Request.json │ │ │ └── DouyinRoleCheckV1Response.json │ │ ├── ApiDouyinSchema/ │ │ │ ├── DouyinSchemaGetChatV1Request.json │ │ │ ├── DouyinSchemaGetChatV1Response.json │ │ │ ├── DouyinSchemaGetItemInfoV1Request.json │ │ │ ├── DouyinSchemaGetItemInfoV1Response.json │ │ │ ├── DouyinSchemaGetLiveV1Request.json │ │ │ ├── DouyinSchemaGetLiveV1Response.json │ │ │ ├── DouyinSchemaGetShareV1Request.json │ │ │ ├── DouyinSchemaGetShareV1Response.json │ │ │ ├── DouyinSchemaGetUserProfileV1Request.json │ │ │ └── DouyinSchemaGetUserProfileV1Response.json │ │ ├── ApiDouyinUser/ │ │ │ └── DouyinUserFansDataV1Response.json │ │ ├── ApiDouyinVideo/ │ │ │ ├── DouyinVideoBasicInfoV1Request.json │ │ │ ├── DouyinVideoBasicInfoV1Response.json │ │ │ ├── DouyinVideoCreateVideoV1Response.json │ │ │ ├── DouyinVideoDataV1Response.json │ │ │ ├── DouyinVideoListV1Response.json │ │ │ ├── DouyinVideoUploadVideoV1Response.json │ │ │ ├── Iframe/ │ │ │ │ ├── DouyinVideoGetIframeByItemV1Response.json │ │ │ │ └── DouyinVideoGetIframeByVideoV1Response.json │ │ │ ├── Image/ │ │ │ │ ├── DouyinVideoCreateImageTextV1Request.json │ │ │ │ ├── DouyinVideoCreateImageTextV1Response.json │ │ │ │ └── DouyinVideoUploadImageV1Response.json │ │ │ └── Part/ │ │ │ ├── DouyinVideoCompleteVideoPartUploadV1Response.json │ │ │ └── DouyinVideoInitVideoPartUploadV1Response.json │ │ ├── ApiIM/ │ │ │ └── IMMessageResourcesResponse.json │ │ ├── ApiIndustry/ │ │ │ ├── AppTestRelation/ │ │ │ │ ├── IndustrySolutionAddAppTestRelationV1Request.json │ │ │ │ ├── IndustrySolutionAddAppTestRelationV1Response.json │ │ │ │ ├── IndustrySolutionDeleteAppTestRelationV1Request.json │ │ │ │ ├── IndustrySolutionDeleteAppTestRelationV1Response.json │ │ │ │ ├── IndustrySolutionQueryAppTestRelationV1Request.json │ │ │ │ └── IndustrySolutionQueryAppTestRelationV1Response.json │ │ │ └── Implementation/ │ │ │ ├── IndustrySolutionQueryImplementationV1Request.json │ │ │ └── IndustrySolutionQueryImplementationV1Response.json │ │ ├── ApiMatch/ │ │ │ ├── MatchTaskboxAgencyQueryBillLinkV2Request.json │ │ │ ├── MatchTaskboxAgencyQueryBillLinkV2Response.json │ │ │ ├── MatchTaskboxAgencyQueryVideoSummaryDataV2Request.json │ │ │ ├── MatchTaskboxAgencyQueryVideoSummaryDataV2Response.json │ │ │ ├── MatchTaskboxChangeUserBindAgentV1Request.json │ │ │ ├── MatchTaskboxGenerateAgentLinkV1Request.json │ │ │ ├── MatchTaskboxGenerateAgentLinkV1Response.json │ │ │ ├── MatchTaskboxGetAgencyUserBindRecordV1Request.json │ │ │ ├── MatchTaskboxGetAgencyUserBindRecordV1Response.json │ │ │ ├── MatchTaskboxQueryAppTaskIdV1Request.json │ │ │ ├── MatchTaskboxQueryAppTaskIdV1Response.json │ │ │ ├── MatchTaskboxQueryTaskInfoV1Request.json │ │ │ ├── MatchTaskboxQueryTaskInfoV1Response.json │ │ │ ├── MatchTaskboxQueryTaskVideoStatusV2Request.json │ │ │ ├── MatchTaskboxQueryTaskVideoStatusV2Response.json │ │ │ ├── MatchTaskboxQueryViolateTalentListV2Response.json │ │ │ ├── MatchTaskboxSaveAgentV1Request.json │ │ │ └── MatchTaskboxSaveAgentV1Response.json │ │ ├── DataExternal/ │ │ │ ├── Anchor/ │ │ │ │ └── DataExternalAnchorMpItemClickDistributionResponse.json │ │ │ ├── Billboard/ │ │ │ │ ├── HotVideo/ │ │ │ │ │ └── DataExternalBillboardHotVideoResponse.json │ │ │ │ ├── Live/ │ │ │ │ │ └── DataExternalBillboardLiveResponse.json │ │ │ │ ├── Music/ │ │ │ │ │ └── DataExternalBillboardMusicHotResponse.json │ │ │ │ ├── Prop/ │ │ │ │ │ └── DataExternalBillboardPropResponse.json │ │ │ │ ├── Sport/ │ │ │ │ │ ├── DataExternalBillboardSportBasketballResponse.json │ │ │ │ │ ├── DataExternalBillboardSportComprehensiveResponse.json │ │ │ │ │ ├── DataExternalBillboardSportCultureResponse.json │ │ │ │ │ ├── DataExternalBillboardSportFitnessResponse.json │ │ │ │ │ ├── DataExternalBillboardSportOutdoorsResponse.json │ │ │ │ │ ├── DataExternalBillboardSportOverallResponse.json │ │ │ │ │ ├── DataExternalBillboardSportSoccerResponse.json │ │ │ │ │ └── DataExternalBillboardSportTableTennisResponse.json │ │ │ │ ├── Stars/ │ │ │ │ │ └── DataExternalBillboardStarsResponse.json │ │ │ │ └── Topic/ │ │ │ │ └── DataExternalBillboardTopicResponse.json │ │ │ ├── Fans/ │ │ │ │ ├── DataExternalFansFavouriteResponse.json │ │ │ │ └── DataExternalFansSourceResponse.json │ │ │ ├── Item/ │ │ │ │ ├── DataExternalItemBaseResponse.json │ │ │ │ ├── DataExternalItemCommentResponse.json │ │ │ │ ├── DataExternalItemLikeResponse.json │ │ │ │ ├── DataExternalItemPlayResponse.json │ │ │ │ └── DataExternalItemShareResponse.json │ │ │ ├── POI/ │ │ │ │ ├── DataExternalPOIBaseResponse.json │ │ │ │ ├── DataExternalPOIBillboardResponse.json │ │ │ │ ├── DataExternalPOIClaimListResponse.json │ │ │ │ ├── DataExternalPOIServiceBaseResponse.json │ │ │ │ ├── DataExternalPOIServiceUserResponse.json │ │ │ │ └── DataExternalPOIUserResponse.json │ │ │ └── User/ │ │ │ ├── DataExternalUserCommentResponse.json │ │ │ ├── DataExternalUserFansResponse.json │ │ │ ├── DataExternalUserItemResponse.json │ │ │ ├── DataExternalUserLikeResponse.json │ │ │ ├── DataExternalUserProfileResponse.json │ │ │ └── DataExternalUserShareResponse.json │ │ ├── DevTool/ │ │ │ └── DevToolMicroAppIsLegalResponse.json │ │ ├── Discovery/ │ │ │ ├── DiscoveryEntertainmentRankItemResponse.json │ │ │ └── DiscoveryEntertainmentRankVersionResponse.json │ │ ├── Enterprise/ │ │ │ └── Media/ │ │ │ ├── EnterpriseMediaDeleteResponse.json │ │ │ ├── EnterpriseMediaListResponse.json │ │ │ ├── EnterpriseMediaTempUploadResponse.json │ │ │ └── EnterpriseMediaUploadResponse.json │ │ ├── Event/ │ │ │ ├── EventStatusListResponse.json │ │ │ └── EventStatusUpdateResponse.json │ │ ├── Fans/ │ │ │ └── FansCheckResponse.json │ │ ├── GoodLife/ │ │ │ ├── Aftersale/ │ │ │ │ ├── Audit/ │ │ │ │ │ └── GoodLifeAftersaleAuditNotifyV1Request.json │ │ │ │ └── Order/ │ │ │ │ ├── GoodLifeAftersaleOrderApplyRefundV1Request.json │ │ │ │ └── GoodLifeAftersaleOrderMerchantRejectV1Request.json │ │ │ ├── Fulfilment/ │ │ │ │ ├── Certificate/ │ │ │ │ │ ├── GoodLifeFulfilmentCertificateGetV1Response.json │ │ │ │ │ ├── GoodLifeFulfilmentCertificateQueryV1Response.json │ │ │ │ │ ├── GoodLifeFulfilmentCertificateVerifyRecordQueryV1Response.json │ │ │ │ │ ├── GoodLifeFulfilmentCertificateVerifyV1Request.json │ │ │ │ │ └── GoodLifeFulfilmentCertificateVerifyV1Response.json │ │ │ │ ├── Distribution/ │ │ │ │ │ └── GoodLifeFulfilmentDistributionOrderSyncStatusV1Request.json │ │ │ │ └── ReserveCode/ │ │ │ │ ├── GoodLifeFulfilmentReserveCodeBatchImportV1Request.json │ │ │ │ ├── GoodLifeFulfilmentReserveCodeBindOrderInfoV1Request.json │ │ │ │ └── GoodLifeFulfilmentReserveCodeBindOrderInfoV1Response.json │ │ │ ├── Goods/ │ │ │ │ ├── Calendar/ │ │ │ │ │ ├── GoodLifeGoodsCalendarAmountGroupSaveV1Request.json │ │ │ │ │ ├── GoodLifeGoodsCalendarStaticAttributeGroupSaveV1Request.json │ │ │ │ │ └── GoodLifeGoodsCalendarStockGroupSaveV1Request.json │ │ │ │ ├── Product/ │ │ │ │ │ ├── GoodLifeGoodsProductDraftGetV1Response.json │ │ │ │ │ ├── GoodLifeGoodsProductDraftQueryV1Response.json │ │ │ │ │ ├── GoodLifeGoodsProductFreeAuditV1Request.json │ │ │ │ │ ├── GoodLifeGoodsProductOnlineGetV1Response.json │ │ │ │ │ ├── GoodLifeGoodsProductOnlineQueryV1Response.json │ │ │ │ │ ├── GoodLifeGoodsProductOperateV1Request.json │ │ │ │ │ ├── GoodLifeGoodsProductSaveV1Request.json │ │ │ │ │ └── GoodLifeGoodsProductSaveV1Response.json │ │ │ │ ├── SKU/ │ │ │ │ │ └── GoodLifeGoodsSKUBatchSaveV1Request.json │ │ │ │ ├── SPU/ │ │ │ │ │ ├── GoodLifeGoodsSPUSaveV1Request.json │ │ │ │ │ └── GoodLifeGoodsSPUSaveV1Response.json │ │ │ │ ├── Stock/ │ │ │ │ │ └── GoodLifeGoodsStockSyncV1Request.json │ │ │ │ └── Template/ │ │ │ │ └── GoodLifeGoodsTemplateGetV1Response.json │ │ │ ├── Member/ │ │ │ │ ├── GoodLifeMemberUnionIdGetV1Request.json │ │ │ │ ├── GoodLifeMemberUnionIdGetV1Response.json │ │ │ │ └── GoodLifeMemberUserUpdateV1Request.json │ │ │ ├── POI/ │ │ │ │ ├── Crowd/ │ │ │ │ │ └── GoodLifePOICrowdSaveV1Request.json │ │ │ │ ├── GoodLifePOIClaimV1Request.json │ │ │ │ ├── GoodLifePOIClaimV1Response.json │ │ │ │ ├── GoodLifePOIMatchRelationQueryV1Response.json │ │ │ │ ├── GoodLifePOIMatchTaskQueryV1Response.json │ │ │ │ ├── GoodLifePOIMatchTaskSubmitV1Request.json │ │ │ │ ├── GoodLifePOIMatchTaskSubmitV1Response.json │ │ │ │ ├── GoodLifePOISyncV1Request.json │ │ │ │ └── GoodLifePOISyncV1Response.json │ │ │ ├── Partner/ │ │ │ │ ├── Commission/ │ │ │ │ │ ├── GoodLifePartnerCommissionRecordGetV1Response.json │ │ │ │ │ ├── GoodLifePartnerCommissionRecordQueryV1Response.json │ │ │ │ │ ├── GoodLifePartnerProductCommissionQueryV1Response.json │ │ │ │ │ ├── GoodLifePartnerProductCommissionSaveV1Request.json │ │ │ │ │ └── GoodLifePartnerProductCommissionSaveV1Response.json │ │ │ │ └── Order/ │ │ │ │ ├── GoodLifePartnerOrderCreateV1Request.json │ │ │ │ ├── GoodLifePartnerOrderCreateV1Response.json │ │ │ │ ├── GoodLifePartnerOrderGetV1Response.json │ │ │ │ └── GoodLifePartnerOrderQueryV1Response.json │ │ │ ├── Settle/ │ │ │ │ ├── GoodLifeSettleLedgerDetailedQueryByOrderV1Response.json │ │ │ │ ├── GoodLifeSettleLedgerDetailedQueryV1Response.json │ │ │ │ ├── GoodLifeSettleLedgerQueryByOrderV1Response.json │ │ │ │ ├── GoodLifeSettleLedgerQueryRecordByCertificateV1Response.json │ │ │ │ └── GoodLifeSettleLedgerQueryV1Response.json │ │ │ ├── Shop/ │ │ │ │ └── GoodLifeShopPOIQueryV1Response.json │ │ │ └── Trade/ │ │ │ ├── GoodLifeTradeBookGetV1Response.json │ │ │ ├── GoodLifeTradeBuyMerchantConfirmOrderV1Request.json │ │ │ └── GoodLifeTradeOrderQueryV1Response.json │ │ ├── HotSearch/ │ │ │ ├── HotSearchSentencesResponse.json │ │ │ ├── HotSearchTrendingSentencesResponse.json │ │ │ └── HotSearchVideosResponse.json │ │ ├── IM/ │ │ │ ├── Authorize/ │ │ │ │ ├── IMAuthorizeStatusRequest.json │ │ │ │ ├── IMAuthorizeStatusResponse.json │ │ │ │ ├── IMAuthorizeUserListRequest.json │ │ │ │ └── IMAuthorizeUserListResponse.json │ │ │ ├── Card/ │ │ │ │ ├── IMGetRetainConsultCardResponse.json │ │ │ │ ├── IMSaveRetainConsultCardRequest.json │ │ │ │ └── IMSaveRetainConsultCardResponse.json │ │ │ ├── Group/ │ │ │ │ ├── IMGroupEnterAuditGetResponse.json │ │ │ │ ├── IMGroupEnterAuditSetRequest.json │ │ │ │ ├── IMGroupEnterAuditSetResponse.json │ │ │ │ ├── IMGroupFansCountResponse.json │ │ │ │ ├── IMGroupFansCreateRequest.json │ │ │ │ ├── IMGroupFansCreateResponse.json │ │ │ │ ├── IMGroupFansListResponse.json │ │ │ │ ├── IMGroupSettingDisableRequest.json │ │ │ │ └── IMGroupSettingSetRequest.json │ │ │ └── Message/ │ │ │ ├── IMRecallMessageRequest.json │ │ │ ├── IMSendMessageGroupRequest.json │ │ │ ├── IMSendMessageGroupResponse.json │ │ │ ├── IMSendMessageRequest.json │ │ │ └── IMSendMessageResponse.json │ │ ├── Image/ │ │ │ ├── ImageCreateResponse.json │ │ │ └── ImageUploadResponse.json │ │ ├── Item/ │ │ │ └── Comment/ │ │ │ ├── ItemCommentListResponse.json │ │ │ ├── ItemCommentReplyListResponse.json │ │ │ └── ItemCommentReplyResponse.json │ │ ├── JS/ │ │ │ └── JSGetTicketResponse.json │ │ ├── MarketService/ │ │ │ ├── MarketServiceUserDeletePurchaseInfoRequest.json │ │ │ ├── MarketServiceUserInsertPurchaseInfoRequest.json │ │ │ ├── MarketServiceUserPurchaseListResponse.json │ │ │ └── MarketServiceUserRemainTimesDecreaseRequest.json │ │ ├── Message/ │ │ │ ├── MessageOnceSendRequest.json │ │ │ └── MessageOnceSendResponse.json │ │ ├── Namek/ │ │ │ └── NamekFulfilmentPrepareResponse.json │ │ ├── OAuth/ │ │ │ ├── OAuthAccessTokenResponse.json │ │ │ ├── OAuthBusinessScopesResponse.json │ │ │ ├── OAuthBusinessTokenRequest.json │ │ │ ├── OAuthBusinessTokenResponse.json │ │ │ ├── OAuthClientTokenResponse.json │ │ │ ├── OAuthRefreshBusinessTokenRequest.json │ │ │ ├── OAuthRefreshBusinessTokenResponse.json │ │ │ ├── OAuthRefreshTokenResponse.json │ │ │ ├── OAuthRenewRefreshTokenResponse.json │ │ │ └── User/ │ │ │ ├── OAuthUserInfoRequest.json │ │ │ └── OAuthUserInfoResponse.json │ │ ├── Open/ │ │ │ └── OpenGetTicketResponse.json │ │ ├── POI/ │ │ │ ├── External/ │ │ │ │ ├── Hotel/ │ │ │ │ │ ├── POIExternalHotelOrderCancelRequest.json │ │ │ │ │ ├── POIExternalHotelOrderCancelResponse.json │ │ │ │ │ ├── POIExternalHotelOrderCommitRequest.json │ │ │ │ │ ├── POIExternalHotelOrderCommitResponse.json │ │ │ │ │ ├── POIExternalHotelOrderStatusRequest.json │ │ │ │ │ ├── POIExternalHotelOrderStatusResponse.json │ │ │ │ │ └── POIExternalHotelSKUResponse.json │ │ │ │ └── PresaleGroupon/ │ │ │ │ ├── POIExternalPresaleGrouponOrderCancelRequest.json │ │ │ │ ├── POIExternalPresaleGrouponOrderCancelResponse.json │ │ │ │ ├── POIExternalPresaleGrouponOrderCommitRequest.json │ │ │ │ ├── POIExternalPresaleGrouponOrderCommitResponse.json │ │ │ │ ├── POIExternalPresaleGrouponOrderCreateRequest.json │ │ │ │ └── POIExternalPresaleGrouponOrderCreateResponse.json │ │ │ ├── Order/ │ │ │ │ ├── POIOrderBillTokenResponse.json │ │ │ │ ├── POIOrderConfirmCancelPrepareRequest.json │ │ │ │ ├── POIOrderConfirmCancelPrepareResponse.json │ │ │ │ ├── POIOrderConfirmPrepareRequest.json │ │ │ │ ├── POIOrderConfirmPrepareResponse.json │ │ │ │ ├── POIOrderConfirmRequest.json │ │ │ │ ├── POIOrderConfirmResponse.json │ │ │ │ ├── POIOrderListTokenResponse.json │ │ │ │ ├── POIOrderStatusRequest.json │ │ │ │ ├── POIOrderStatusResponse.json │ │ │ │ ├── POIOrderSyncRequest.json │ │ │ │ └── POIOrderSyncResponse.json │ │ │ ├── POIBaseQueryAMapResponse.json │ │ │ ├── POIQueryResponse.json │ │ │ ├── POISearchKeywordResponse.json │ │ │ ├── Plan/ │ │ │ │ ├── POICommonPlanDetailRequest.json │ │ │ │ ├── POICommonPlanDetailResponse.json │ │ │ │ ├── POICommonPlanSaveRequest.json │ │ │ │ ├── POICommonPlanSaveResponse.json │ │ │ │ ├── POICommonPlanTalentDetailRequest.json │ │ │ │ ├── POICommonPlanTalentDetailResponse.json │ │ │ │ ├── POICommonPlanTalentListRequest.json │ │ │ │ ├── POICommonPlanTalentListResponse.json │ │ │ │ ├── POICommonPlanTalentMediaListRequest.json │ │ │ │ └── POICommonPlanTalentMediaListResponse.json │ │ │ ├── SKU/ │ │ │ │ ├── POISKUSyncRequest.json │ │ │ │ └── POISKUSyncResponse.json │ │ │ ├── SPU/ │ │ │ │ ├── POISPUGetV2Response.json │ │ │ │ ├── POISPUStatusSyncV2Request.json │ │ │ │ ├── POISPUStatusSyncV2Response.json │ │ │ │ ├── POISPUStockUpdateV2Request.json │ │ │ │ ├── POISPUStockUpdateV2Response.json │ │ │ │ ├── POISPUSyncV2Request.json │ │ │ │ ├── POISPUSyncV2Response.json │ │ │ │ ├── POISPUTakeRateSyncV2Request.json │ │ │ │ └── POISPUTakeRateSyncV2Response.json │ │ │ ├── ServiceProvider/ │ │ │ │ ├── POIServiceProviderSyncV2Request.json │ │ │ │ └── POIServiceProviderSyncV2Response.json │ │ │ └── Supplier/ │ │ │ ├── POISupplierMatchV2Request.json │ │ │ ├── POISupplierMatchV2Response.json │ │ │ ├── POISupplierQueryAllResponse.json │ │ │ ├── POISupplierQueryCallbackResponse.json │ │ │ ├── POISupplierQueryResponse.json │ │ │ ├── POISupplierQuerySupplierV2Response.json │ │ │ ├── POISupplierQueryTaskV2Response.json │ │ │ ├── POISupplierSyncRequest.json │ │ │ └── POISupplierSyncResponse.json │ │ ├── Room/ │ │ │ ├── RoomDataAudienceGetResponse.json │ │ │ ├── RoomDataBaseGetResponse.json │ │ │ ├── RoomDataInteractiveGetResponse.json │ │ │ └── RoomDataRoomIdGetResponse.json │ │ ├── Sandbox/ │ │ │ └── SandboxWebhookEventSendResponse.json │ │ ├── ShareId/ │ │ │ └── ShareIdResponse.json │ │ ├── Star/ │ │ │ ├── StarAuthorScoreResponse.json │ │ │ ├── StarAuthorScoreV2Response.json │ │ │ └── StarHotListResponse.json │ │ ├── Task/ │ │ │ ├── TaskPostingBindVideoRequest.json │ │ │ ├── TaskPostingCreateRequest.json │ │ │ ├── TaskPostingCreateResponse.json │ │ │ ├── TaskPostingUserRequest.json │ │ │ └── TaskPostingUserResponse.json │ │ ├── Tool/ │ │ │ └── ToolImagexClientUploadResponse.json │ │ └── Video/ │ │ ├── Comment/ │ │ │ ├── VideoCommentListResponse.json │ │ │ ├── VideoCommentReplyListResponse.json │ │ │ └── VideoCommentReplyResponse.json │ │ └── Search/ │ │ ├── VideoSearchCommentListResponse.json │ │ ├── VideoSearchCommentReplyListResponse.json │ │ ├── VideoSearchCommentReplyResponse.json │ │ └── VideoSearchResponse.json │ ├── SKIT.FlurlHttpClient.ByteDance.DouyinOpen.UnitTests.csproj │ ├── TestCase_ApiExecuteOAuthTests.cs │ ├── TestCase_DecryptionTests.cs │ ├── TestClients.cs │ ├── TestConfigs.cs │ └── appsettings.json ├── SKIT.FlurlHttpClient.ByteDance.DouyinShop.UnitTests/ │ ├── .gitignore │ ├── EventSamples/ │ │ ├── IOPTrade/ │ │ │ ├── IOPTradeDistributionEvent.json │ │ │ ├── IOPTradeStatusReturnEvent.json │ │ │ ├── IOPTradeUpdateReceiverEvent.json │ │ │ └── IOPTradeUpdateRemarkEvent.json │ │ ├── Product/ │ │ │ └── ProductChangeEvent.json │ │ ├── Refund/ │ │ │ ├── Arbitrate/ │ │ │ │ ├── RefundArbitrateAppliedEvent.json │ │ │ │ ├── RefundArbitrateAuditedEvent.json │ │ │ │ ├── RefundArbitrateDiscussUploadEvent.json │ │ │ │ └── RefundArbitrateServiceInterveneEvent.json │ │ │ ├── RefundClosedEvent.json │ │ │ ├── RefundCreatedEvent.json │ │ │ ├── RefundExchangeComfirmedEvent.json │ │ │ ├── RefundExpirationChangeEvent.json │ │ │ ├── RefundModifiedEvent.json │ │ │ ├── RefundRefusedEvent.json │ │ │ ├── RefundSuccessEvent.json │ │ │ └── Return/ │ │ │ ├── RefundBuyerReturnGoodsEvent.json │ │ │ ├── RefundReturnAgreedEvent.json │ │ │ ├── RefundReturnApplyAgreedEvent.json │ │ │ └── RefundReturnApplyRefusedEvent.json │ │ └── Trade/ │ │ ├── TradeAddressChangeAppliedEvent.json │ │ ├── TradeAmountChangedEvent.json │ │ ├── TradeAppointmentEvent.json │ │ ├── TradeCanceledEvent.json │ │ ├── TradeCreateEvent.json │ │ ├── TradeMemoModifyEvent.json │ │ ├── TradePaidEvent.json │ │ ├── TradePartlySellerShipEvent.json │ │ ├── TradePendingEvent.json │ │ └── TradeSuccessEvent.json │ ├── ModelSamples/ │ │ ├── Address/ │ │ │ ├── AddressCreateRequest.json │ │ │ ├── AddressCreateResponse.json │ │ │ ├── AddressGetAreasByProvinceRequest.json │ │ │ ├── AddressGetAreasByProvinceResponse.json │ │ │ ├── AddressGetProvinceResponse.json │ │ │ ├── AddressListRequest.json │ │ │ ├── AddressListResponse.json │ │ │ └── AddressUpdateRequest.json │ │ ├── Aftersale/ │ │ │ ├── AftersaleAddOrderRemarkRequest.json │ │ │ ├── AftersaleApplyLogisticsInterceptRequest.json │ │ │ ├── AftersaleApplyLogisticsInterceptResponse.json │ │ │ ├── AftersaleBuyerExchangeConfirmRequest.json │ │ │ ├── AftersaleBuyerExchangeRequest.json │ │ │ ├── AftersaleDetailRequest.json │ │ │ ├── AftersaleDetailResponse.json │ │ │ ├── AftersaleListRequest.json │ │ │ ├── AftersaleListResponse.json │ │ │ ├── AftersaleOpenAfterSaleChannelRequest.json │ │ │ ├── AftersaleOpenAfterSaleChannelResponse.json │ │ │ ├── AftersaleOperateRequest.json │ │ │ ├── AftersaleOperateResponse.json │ │ │ ├── AftersaleRefundListSearchRequest.json │ │ │ ├── AftersaleRefundListSearchResponse.json │ │ │ ├── AftersaleReturnGoodsToWareHouseSuccessRequest.json │ │ │ ├── AftersaleSubmitEvidenceRequest.json │ │ │ └── AftersaleTimeExtendRequest.json │ │ ├── Alliance/ │ │ │ ├── AllianceGetOrderListRequest.json │ │ │ ├── AllianceGetOrderListResponse.json │ │ │ └── MaterialsProducts/ │ │ │ ├── AllianceMaterialsProductsDetailsRequest.json │ │ │ ├── AllianceMaterialsProductsDetailsResponse.json │ │ │ ├── AllianceMaterialsProductsSearchRequest.json │ │ │ └── AllianceMaterialsProductsSearchResponse.json │ │ ├── AntiSpam/ │ │ │ ├── AntiSpamUserLoginRequest.json │ │ │ └── AntiSpamUserLoginResponse.json │ │ ├── BTAS/ │ │ │ ├── BTASGetInspectionOrderRequest.json │ │ │ ├── BTASGetInspectionOrderResponse.json │ │ │ ├── BTASGetOrderInspectionResultRequest.json │ │ │ ├── BTASGetOrderInspectionResultResponse.json │ │ │ ├── BTASListBrandResponse.json │ │ │ ├── BTASSaveInspectionInformationRequest.json │ │ │ ├── BTASSaveInspectionOnlineRequest.json │ │ │ └── BTASShippingRequest.json │ │ ├── Buyin/ │ │ │ ├── Activity/ │ │ │ │ ├── BuyinApplyActivitiesRequest.json │ │ │ │ └── BuyinApplyActivitiesResponse.json │ │ │ ├── BuyinInstituteOrderAdsRequest.json │ │ │ ├── BuyinInstituteOrderAdsResponse.json │ │ │ ├── OrientPlan/ │ │ │ │ ├── BuyinCreateOrUpdateOrientPlanRequest.json │ │ │ │ ├── BuyinCreateOrUpdateOrientPlanResponse.json │ │ │ │ ├── BuyinOrientPlanAuditRequest.json │ │ │ │ ├── BuyinOrientPlanAuthorsAddRequest.json │ │ │ │ ├── BuyinOrientPlanAuthorsAddResponse.json │ │ │ │ ├── BuyinOrientPlanAuthorsRequest.json │ │ │ │ ├── BuyinOrientPlanAuthorsResponse.json │ │ │ │ ├── BuyinOrientPlanControlRequest.json │ │ │ │ ├── BuyinOrientPlanListRequest.json │ │ │ │ └── BuyinOrientPlanListResponse.json │ │ │ └── Plan/ │ │ │ ├── BuyinExclusivePlanRequest.json │ │ │ ├── BuyinExclusivePlanResponse.json │ │ │ ├── BuyinSimplePlanRequest.json │ │ │ └── BuyinSimplePlanResponse.json │ │ ├── Coupons/ │ │ │ ├── CouponsAbandonRequest.json │ │ │ ├── CouponsCancelVerifyRequest.json │ │ │ ├── CouponsSyncV2Request.json │ │ │ └── CouponsVerifyV2Request.json │ │ ├── CrossBorder/ │ │ │ ├── CrossBorderBankAccountVerifyRequest.json │ │ │ ├── CrossBorderBankAccountVerifyResponse.json │ │ │ ├── CrossBorderOrderInterceptionRequest.json │ │ │ ├── CrossBorderOrderInterceptionResponse.json │ │ │ ├── CrossBorderOrderListRequest.json │ │ │ ├── CrossBorderOrderListResponse.json │ │ │ ├── CrossBorderQueryBalanceRequest.json │ │ │ ├── CrossBorderQueryBalanceResponse.json │ │ │ ├── CrossBorderStockTakingRequest.json │ │ │ ├── CrossBorderStockTakingResponse.json │ │ │ ├── CrossBorderStockTransformRequest.json │ │ │ ├── CrossBorderStockTransformResponse.json │ │ │ ├── CrossBorderWarehouseInOutboundEventRequest.json │ │ │ └── CrossBorderWarehouseInOutboundEventResponse.json │ │ ├── DutyFree/ │ │ │ └── DutyFreeOrderConfirmRequest.json │ │ ├── FreightTemplate/ │ │ │ ├── FreightTemplateListRequest.json │ │ │ └── FreightTemplateListResponse.json │ │ ├── IOP/ │ │ │ ├── IOPOrderInformationRequest.json │ │ │ ├── IOPOrderInformationResponse.json │ │ │ ├── IOPOrderListRequest.json │ │ │ ├── IOPOrderListResponse.json │ │ │ ├── IOPRoleGetResponse.json │ │ │ ├── Seller/ │ │ │ │ ├── IOPSellerCancelDistributeRequest.json │ │ │ │ ├── IOPSellerCancelDistributeResponse.json │ │ │ │ ├── IOPSellerDistributeRequest.json │ │ │ │ ├── IOPSellerDistributeResponse.json │ │ │ │ ├── IOPSellerOrderInformationRequest.json │ │ │ │ ├── IOPSellerOrderInformationResponse.json │ │ │ │ ├── IOPSellerOrderListRequest.json │ │ │ │ ├── IOPSellerOrderListResponse.json │ │ │ │ ├── IOPSellerSupplierListRequest.json │ │ │ │ └── IOPSellerSupplierListResponse.json │ │ │ └── Waybill/ │ │ │ ├── IOPWaybillCancelRequest.json │ │ │ ├── IOPWaybillCancelResponse.json │ │ │ ├── IOPWaybillGetRequest.json │ │ │ ├── IOPWaybillGetResponse.json │ │ │ ├── IOPWaybillReturnRequest.json │ │ │ ├── IOPWaybillReturnResponse.json │ │ │ ├── IOPWaybillUpdateRequest.json │ │ │ └── IOPWaybillUpdateResponse.json │ │ ├── Logistics/ │ │ │ ├── LogisticsCancelOrderRequest.json │ │ │ ├── LogisticsCancelOrderResponse.json │ │ │ ├── LogisticsGetCustomTemplateListRequest.json │ │ │ ├── LogisticsGetCustomTemplateListResponse.json │ │ │ ├── LogisticsGetOutRangeRequest.json │ │ │ ├── LogisticsGetOutRangeResponse.json │ │ │ ├── LogisticsListShopNetSiteRequest.json │ │ │ ├── LogisticsListShopNetSiteResponse.json │ │ │ ├── LogisticsNewCreateOrderRequest.json │ │ │ ├── LogisticsNewCreateOrderResponse.json │ │ │ ├── LogisticsTemplateListResponse.json │ │ │ ├── LogisticsTrackNoRouteDetailRequest.json │ │ │ └── LogisticsTrackNoRouteDetailResponse.json │ │ ├── Material/ │ │ │ ├── Folder/ │ │ │ │ ├── MaterialCreateFolderRequest.json │ │ │ │ ├── MaterialCreateFolderResponse.json │ │ │ │ ├── MaterialDeleteFolderRequest.json │ │ │ │ ├── MaterialDeleteFolderResponse.json │ │ │ │ ├── MaterialEditFolderRequest.json │ │ │ │ ├── MaterialGetFolderInformationRequest.json │ │ │ │ ├── MaterialGetFolderInformationResponse.json │ │ │ │ ├── MaterialMoveFolderToRecyleBinRequest.json │ │ │ │ ├── MaterialMoveFolderToRecyleBinResponse.json │ │ │ │ ├── MaterialSearchFolderRequest.json │ │ │ │ └── MaterialSearchFolderResponse.json │ │ │ ├── Material/ │ │ │ │ ├── MaterialDeleteMaterialRequest.json │ │ │ │ ├── MaterialDeleteMaterialResponse.json │ │ │ │ ├── MaterialEditMaterialRequest.json │ │ │ │ ├── MaterialQueryMaterialDetailRequest.json │ │ │ │ ├── MaterialQueryMaterialDetailResponse.json │ │ │ │ ├── MaterialSearchMaterialRequest.json │ │ │ │ └── MaterialSearchMaterialResponse.json │ │ │ ├── MaterialUploadImageSyncRequest.json │ │ │ ├── MaterialUploadImageSyncResponse.json │ │ │ ├── MaterialUploadVideoAsyncRequest.json │ │ │ └── MaterialUploadVideoAsyncResponse.json │ │ ├── Member/ │ │ │ ├── MemberBatchUpdateRequest.json │ │ │ ├── MemberSearchListRequest.json │ │ │ └── MemberSearchListResponse.json │ │ ├── OpportunityProduct/ │ │ │ ├── OpportunityProductApplyRequest.json │ │ │ ├── OpportunityProductClueRequest.json │ │ │ ├── OpportunityProductClueResponse.json │ │ │ ├── OpportunityProductGetApplyProgressRequest.json │ │ │ └── OpportunityProductGetApplyProgressResponse.json │ │ ├── Order/ │ │ │ ├── CrossBorder/ │ │ │ │ ├── OrderGetCrossBorderFulfillInformationRequest.json │ │ │ │ └── OrderGetCrossBorderFulfillInformationResponse.json │ │ │ ├── Encryption/ │ │ │ │ ├── OrderBatchDecryptRequest.json │ │ │ │ ├── OrderBatchDecryptResponse.json │ │ │ │ ├── OrderBatchEncryptRequest.json │ │ │ │ ├── OrderBatchEncryptResponse.json │ │ │ │ ├── OrderBatchSearchIndexRequest.json │ │ │ │ ├── OrderBatchSearchIndexResponse.json │ │ │ │ ├── OrderBatchSensitiveRequest.json │ │ │ │ └── OrderBatchSensitiveResponse.json │ │ │ ├── Insurance/ │ │ │ │ ├── OrderInsuranceRequest.json │ │ │ │ └── OrderInsuranceResponse.json │ │ │ ├── Invoice/ │ │ │ │ └── OrderInvoiceUploadRequest.json │ │ │ ├── Logistics/ │ │ │ │ ├── OrderLogisticsAddRequest.json │ │ │ │ ├── OrderLogisticsCompanyListResponse.json │ │ │ │ ├── OrderLogisticsEditRequest.json │ │ │ │ └── Package/ │ │ │ │ ├── OrderLogisticsAddMultiplePackageRequest.json │ │ │ │ ├── OrderLogisticsAddMultiplePackageResponse.json │ │ │ │ ├── OrderLogisticsAddSinglePackageRequest.json │ │ │ │ ├── OrderLogisticsAddSinglePackageResponse.json │ │ │ │ └── OrderLogisticsEditByPackageRequest.json │ │ │ ├── OrderAddOrderRemarkRequest.json │ │ │ ├── OrderAddSerialNumberRequest.json │ │ │ ├── OrderAddressAppliedSwitchRequest.json │ │ │ ├── OrderAddressConfirmRequest.json │ │ │ ├── OrderAddressModifyRequest.json │ │ │ ├── OrderAddressSwitchConfigResponse.json │ │ │ ├── OrderDetailRequest.json │ │ │ ├── OrderDetailResponse.json │ │ │ ├── OrderSearchListRequest.json │ │ │ ├── OrderSearchListResponse.json │ │ │ ├── OrderUpdateOrderAmountRequest.json │ │ │ ├── OrderUpdatePostAmountRequest.json │ │ │ ├── Service/ │ │ │ │ ├── OrderGetServiceListRequest.json │ │ │ │ ├── OrderGetServiceListResponse.json │ │ │ │ ├── OrderReplyServiceRequest.json │ │ │ │ ├── OrderServiceDetailRequest.json │ │ │ │ └── OrderServiceDetailResponse.json │ │ │ └── Settle/ │ │ │ ├── OrderDownloadSettleItemToShopRequest.json │ │ │ ├── OrderDownloadSettleItemToShopResponse.json │ │ │ ├── OrderDownloadToShopRequest.json │ │ │ ├── OrderDownloadToShopResponse.json │ │ │ ├── OrderGetSettleBillDetailRequest.json │ │ │ ├── OrderGetSettleBillDetailResponse.json │ │ │ ├── OrderSettleRequest.json │ │ │ └── OrderSettleResponse.json │ │ ├── OrderCode/ │ │ │ ├── OrderCodeBatchGetOrderCodeByShopRequest.json │ │ │ ├── OrderCodeBatchGetOrderCodeByShopResponse.json │ │ │ ├── OrderCodeDownloadOrderCodeByShopRequest.json │ │ │ ├── OrderCodeDownloadOrderCodeByShopResponse.json │ │ │ └── OrderCodeERPShopBindOrderCodeRequest.json │ │ ├── Product/ │ │ │ ├── ProductAddV2Request.json │ │ │ ├── ProductAddV2Response.json │ │ │ ├── ProductDeleteRequest.json │ │ │ ├── ProductDetailRequest.json │ │ │ ├── ProductDetailResponse.json │ │ │ ├── ProductEditBuyerLimitRequest.json │ │ │ ├── ProductGetCategoryPropertyRequest.json │ │ │ ├── ProductGetCategoryPropertyResponse.json │ │ │ ├── ProductSetOfflineRequest.json │ │ │ ├── ProductSetOnlineRequest.json │ │ │ └── Quality/ │ │ │ ├── ProductQualityDetailRequest.json │ │ │ ├── ProductQualityDetailResponse.json │ │ │ ├── ProductQualityListRequest.json │ │ │ ├── ProductQualityListResponse.json │ │ │ ├── ProductQualityTaskRequest.json │ │ │ └── ProductQualityTaskResponse.json │ │ ├── Recycle/ │ │ │ ├── RecycleApplyChangePriceRequest.json │ │ │ ├── RecycleApplyChangePriceResponse.json │ │ │ ├── RecycleChangePriceRequest.json │ │ │ ├── RecycleConfirmReceiveRequest.json │ │ │ ├── RecycleCreatePriceRequest.json │ │ │ ├── RecycleLogisticsBackRequest.json │ │ │ ├── RecycleLogisticsBackResponse.json │ │ │ ├── RecycleQualityTestingResultRequest.json │ │ │ └── RecycleSellSucceedRequest.json │ │ ├── SKU/ │ │ │ ├── SKUEditCodeRequest.json │ │ │ ├── SKUEditPriceRequest.json │ │ │ ├── SKUListRequest.json │ │ │ ├── SKUListResponse.json │ │ │ ├── SKUStockNumberRequest.json │ │ │ ├── SKUStockNumberResponse.json │ │ │ └── SKUSyncStockRequest.json │ │ ├── SPU/ │ │ │ ├── SPUAddShopSPURequest.json │ │ │ ├── SPUAddShopSPUResponse.json │ │ │ ├── SPUGetKeyPropertyByCategoryIdRequest.json │ │ │ ├── SPUGetKeyPropertyByCategoryIdResponse.json │ │ │ ├── SPUGetSPUInformationBySPUIdRequest.json │ │ │ ├── SPUGetSPUInformationBySPUIdResponse.json │ │ │ ├── SPUGetSPUTemplateRequest.json │ │ │ └── SPUGetSPUTemplateResponse.json │ │ ├── Shop/ │ │ │ ├── ShopBandListResponse.json │ │ │ └── ShopGetShopCategoryResponse.json │ │ ├── Storage/ │ │ │ └── StorageNotifySaleReturnStatusRequest.json │ │ ├── Token/ │ │ │ ├── TokenCreateRequest.json │ │ │ └── TokenCreateResponse.json │ │ └── Warehouse/ │ │ ├── WarehouseCreateBatchRequest.json │ │ ├── WarehouseCreateBatchResponse.json │ │ ├── WarehouseCreateRequest.json │ │ ├── WarehouseCreateResponse.json │ │ ├── WarehouseEditRequest.json │ │ ├── WarehouseInformationRequest.json │ │ ├── WarehouseInformationResponse.json │ │ ├── WarehouseListRequest.json │ │ ├── WarehouseListResponse.json │ │ ├── WarehouseRemoveAddressRequest.json │ │ ├── WarehouseSetAddressRequest.json │ │ └── WarehouseSetPriorityRequest.json │ ├── SKIT.FlurlHttpClient.ByteDance.DouyinShop.UnitTests.csproj │ ├── TestCase_ApiExecuteTokenTests.cs │ ├── TestCase_CodeReview.cs │ ├── TestClients.cs │ ├── TestConfigs.cs │ └── appsettings.json ├── SKIT.FlurlHttpClient.ByteDance.MicroApp.UnitTests/ │ ├── .gitignore │ ├── EventSamples/ │ │ ├── OpenApi/ │ │ │ ├── Auth/ │ │ │ │ ├── ComponentAuthorizedEvent.json │ │ │ │ ├── ComponentPushTicketEvent.json │ │ │ │ ├── ComponentUnauthorizedEvent.json │ │ │ │ └── ComponentUpdateAuthorizedEvent.json │ │ │ ├── MicroAppManagement/ │ │ │ │ ├── AppNameResetEvent.json │ │ │ │ ├── ModifyAppCategoryEvent.json │ │ │ │ ├── ModifyAppIconEvent.json │ │ │ │ ├── ModifyAppIntroductionEvent.json │ │ │ │ ├── ModifyAppNameEvent.json │ │ │ │ └── PackageAuditEvent.json │ │ │ └── MicroAppOperation/ │ │ │ ├── AliasAuditResultEvent.json │ │ │ ├── ApplyCapabilityEvent.json │ │ │ ├── ApplyLiveCapabilityEvent.json │ │ │ ├── ApplyPhoneNumberCapabilityEvent.json │ │ │ ├── ApplyShareTemplateEvent.json │ │ │ ├── ApplyVideoCapabilityEvent.json │ │ │ ├── AwemePermissionAuditResultEvent.json │ │ │ ├── AwemeVideoKeywordAuditResultEvent.json │ │ │ ├── BindAwemeUserEvent.json │ │ │ ├── CreateSubscribeNotificationTemplateResultEvent.json │ │ │ ├── ScopeQuotaAuditResultEvent.json │ │ │ ├── SearchTagAuditResultEvent.json │ │ │ └── SelfMountBindEvent.json │ │ ├── ProductApi/ │ │ │ ├── ProductEvent.json │ │ │ ├── ProductFulfilmentEvent.json │ │ │ ├── ProductQualificationEvent.json │ │ │ └── ProductResourceEvent.json │ │ └── _/ │ │ └── Message/ │ │ ├── ImageMessageEvent.json │ │ ├── ImageMessageEvent.xml │ │ ├── TextMessageEvent.json │ │ └── TextMessageEvent.xml │ ├── IMPORTANT_CodeAnalyzeTests.cs │ ├── ModelSamples/ │ │ ├── OpenApi/ │ │ │ ├── AppsBasicInfo/ │ │ │ │ ├── OpenAppsBasicInfoGetInfoV2Response.json │ │ │ │ ├── OpenAppsBasicInfoGetQrcodeV2Request.json │ │ │ │ ├── OpenAppsBasicInfoGetQrcodeV2Response.json │ │ │ │ ├── OpenAppsBasicInfoModifyAppIntroductionV2Request.json │ │ │ │ └── OpenAppsBasicInfoModifyAppNameV2Request.json │ │ │ ├── AppsCategory/ │ │ │ │ ├── OpenAppsCategoryAddCategoriesV1Request.json │ │ │ │ ├── OpenAppsCategoryDeleteCategoriesV1Request.json │ │ │ │ ├── OpenAppsCategoryGetAllCategoriesV1Response.json │ │ │ │ ├── OpenAppsCategoryGetAuditCategoriesV1Response.json │ │ │ │ └── OpenAppsCategorySupplyCategoriesV1Request.json │ │ │ ├── AppsCreditScore/ │ │ │ │ └── OpenAppsCreditScoreGetCreditScoreV2Response.json │ │ │ ├── AppsDomain/ │ │ │ │ ├── OpenAppsDomainModifyServerDomainV2Request.json │ │ │ │ ├── OpenAppsDomainModifyServerDomainV2Response.json │ │ │ │ ├── OpenAppsDomainModifyWebviewDomainV2Request.json │ │ │ │ └── OpenAppsDomainModifyWebviewDomainV2Response.json │ │ │ ├── AppsICPRecord/ │ │ │ │ ├── OpenAppsICPRecordGetFacialRecognitionUrlV1Response.json │ │ │ │ ├── OpenAppsICPRecordQueryCorpTypeListV1Response.json │ │ │ │ ├── OpenAppsICPRecordQueryFacialRecognitionStatusV1Response.json │ │ │ │ ├── OpenAppsICPRecordQueryInchargePeopleCredentialsTypeListV1Response.json │ │ │ │ ├── OpenAppsICPRecordQueryPreApprovalItemTypeListV1Response.json │ │ │ │ ├── OpenAppsICPRecordQueryRecordStatusV1Response.json │ │ │ │ ├── OpenAppsICPRecordQueryRegionListV1Response.json │ │ │ │ ├── OpenAppsICPRecordQueryServiceContentTypeListV1Response.json │ │ │ │ ├── OpenAppsICPRecordSendFacialRecognitionNotifyV1Request.json │ │ │ │ ├── OpenAppsICPRecordSendFacialRecognitionNotifyV1Response.json │ │ │ │ ├── OpenAppsICPRecordSubmitRecordInfoV1Request.json │ │ │ │ └── OpenAppsICPRecordUploadImageV1Response.json │ │ │ ├── AppsMicroApp/ │ │ │ │ ├── OpenAppsMicroAppCode2SessionV1Request.json │ │ │ │ └── OpenAppsMicroAppCode2SessionV1Response.json │ │ │ ├── AppsPackageVersion/ │ │ │ │ ├── OpenAppsPackageVersionAuditV1Request.json │ │ │ │ ├── OpenAppsPackageVersionGetAuditHostsV1Response.json │ │ │ │ ├── OpenAppsPackageVersionGetVersionsV1Response.json │ │ │ │ └── OpenAppsPackageVersionUploadV1Request.json │ │ │ ├── AppsTrial/ │ │ │ │ └── OpenAppsTrialGetTrialInfoV2Response.json │ │ │ ├── Platform/ │ │ │ │ └── Webhook/ │ │ │ │ ├── OpenPlatformWebhookEventStatusListV1Response.json │ │ │ │ ├── OpenPlatformWebhookResetSecretV1Response.json │ │ │ │ ├── OpenPlatformWebhookSaveCallbackUrlV1Request.json │ │ │ │ └── OpenPlatformWebhookUpdateEventStatusV1Request.json │ │ │ ├── TpAppAuth/ │ │ │ │ ├── OpenAuthThirdPartyTokenV2Response.json │ │ │ │ ├── OpenTpAppAuthGenerateLinkV3Request.json │ │ │ │ ├── OpenTpAppAuthGenerateLinkV3Response.json │ │ │ │ ├── OpenTpAppAuthGetAuthAppListV2Response.json │ │ │ │ ├── OpenTpAppAuthGetAuthTokenV2Response.json │ │ │ │ ├── OpenTpAppAuthRetrieveAuthCodeV2Request.json │ │ │ │ └── OpenTpAppAuthRetrieveAuthCodeV2Response.json │ │ │ ├── TpAppDomain/ │ │ │ │ └── OpenTpAppDomainGetWebviewCheckFileInfoV2Response.json │ │ │ ├── TpAppFile/ │ │ │ │ └── OpenTpAppFileUploadMaterialV2Response.json │ │ │ ├── TpAppTemplate/ │ │ │ │ ├── OpenTpAppTemplateAddTemplateV2Request.json │ │ │ │ ├── OpenTpAppTemplateDeleteTemplateV2Request.json │ │ │ │ ├── OpenTpAppTemplateGetTemplateAppListV2Response.json │ │ │ │ └── OpenTpAppTemplateGetTemplateListV2Response.json │ │ │ └── _Legacy/ │ │ │ ├── Auth/ │ │ │ │ ├── OpenApiAuthGenerateLinkV2Response.json │ │ │ │ ├── OpenApiAuthPreAuthCodeV2Request.json │ │ │ │ ├── OpenApiAuthPreAuthCodeV2Response.json │ │ │ │ ├── OpenApiAuthRetrieveV1Response.json │ │ │ │ ├── OpenApiAuthThirdPartyTokenV1Response.json │ │ │ │ └── OpenApiOAuthTokenV1Response.json │ │ │ ├── MicroApp/ │ │ │ │ ├── App/ │ │ │ │ │ ├── Category/ │ │ │ │ │ │ ├── OpenApiMicroAppAppAddCategoriesV1Request.json │ │ │ │ │ │ ├── OpenApiMicroAppAppAllCategoriesV1Response.json │ │ │ │ │ │ ├── OpenApiMicroAppAppCategoriesV1Response.json │ │ │ │ │ │ ├── OpenApiMicroAppAppDeleteCategoriesV1Request.json │ │ │ │ │ │ └── OpenApiMicroAppAppSupplyCategoriesV1Request.json │ │ │ │ │ ├── OpenApiMicroAppAppCreditScoreV1Response.json │ │ │ │ │ ├── OpenApiMicroAppAppInfoV1Response.json │ │ │ │ │ ├── OpenApiMicroAppAppModifyAppIconV1Request.json │ │ │ │ │ ├── OpenApiMicroAppAppModifyAppIntroductionV1Request.json │ │ │ │ │ ├── OpenApiMicroAppAppModifyAppNameV1Request.json │ │ │ │ │ ├── OpenApiMicroAppAppModifyServerDomainV1Request.json │ │ │ │ │ ├── OpenApiMicroAppAppModifyServerDomainV1Response.json │ │ │ │ │ ├── OpenApiMicroAppAppModifyWebviewDomainV1Request.json │ │ │ │ │ ├── OpenApiMicroAppAppModifyWebviewDomainV1Response.json │ │ │ │ │ ├── OpenApiMicroAppAppQrcodeV1Request.json │ │ │ │ │ └── OpenApiMicroAppAppQualityRatingV1Response.json │ │ │ │ ├── OpenApiMicroAppCode2SessionV1Response.json │ │ │ │ ├── OpenApiMicroAppUploadMaterialV1Response.json │ │ │ │ ├── Operation/ │ │ │ │ │ ├── Application/ │ │ │ │ │ │ ├── OpenApiMicroAppOperationLiveApplicationStatusV1Response.json │ │ │ │ │ │ ├── OpenApiMicroAppOperationLiveApplicationV1Request.json │ │ │ │ │ │ ├── OpenApiMicroAppOperationPhoneNumberApplicationStatusV1Response.json │ │ │ │ │ │ ├── OpenApiMicroAppOperationPhoneNumberApplicationV1Request.json │ │ │ │ │ │ ├── OpenApiMicroAppOperationVideoApplicationStatusV1Response.json │ │ │ │ │ │ └── OpenApiMicroAppOperationVideoApplicationV1Request.json │ │ │ │ │ ├── ShareTemplate/ │ │ │ │ │ │ ├── OpenApiMicroAppOperationAddShareTemplateV1Request.json │ │ │ │ │ │ ├── OpenApiMicroAppOperationDeleteShareTemplateV1Request.json │ │ │ │ │ │ ├── OpenApiMicroAppOperationModifyShareTemplateV1Request.json │ │ │ │ │ │ ├── OpenApiMicroAppOperationSetDefaultShareTemplateV1Request.json │ │ │ │ │ │ └── OpenApiMicroAppOperationShareTemplateListV1Response.json │ │ │ │ │ └── ShopMaterial/ │ │ │ │ │ ├── OpenApiMicroAppOperationAddShopMaterialV1Request.json │ │ │ │ │ └── OpenApiMicroAppOperationQueryShopMaterialV1Response.json │ │ │ │ └── Package/ │ │ │ │ ├── OpenApiMicroAppPackageAuditHostsV1Response.json │ │ │ │ ├── OpenApiMicroAppPackageAuditV2Request.json │ │ │ │ ├── OpenApiMicroAppPackageUploadV1Request.json │ │ │ │ └── OpenApiMicroAppPackageVersionsV1Response.json │ │ │ ├── Settle/ │ │ │ │ ├── OpenApiSettleApplyV1Request.json │ │ │ │ ├── OpenApiSettleApplyV1Response.json │ │ │ │ ├── OpenApiSettleGetApplyStatusV1Response.json │ │ │ │ └── OpenApiSettlePreCheckV1Request.json │ │ │ └── ThirdParty/ │ │ │ ├── OpenApiThirdPartyAuthAppListV1Response.json │ │ │ ├── OpenApiThirdPartyUploadPictureMaterialV1Response.json │ │ │ ├── POI/ │ │ │ │ ├── OpenApiThirdPartyPOIBaseQueryAMapV1Response.json │ │ │ │ ├── OpenApiThirdPartyPOISupplierMatchV1Request.json │ │ │ │ ├── OpenApiThirdPartyPOISupplierMatchV1Response.json │ │ │ │ ├── OpenApiThirdPartyPOISupplierQueryMatchTaskV1Response.json │ │ │ │ ├── OpenApiThirdPartyPOISupplierQueryMatchV1Response.json │ │ │ │ ├── OpenApiThirdPartyPOISupplierQueryV1Response.json │ │ │ │ └── OpenApiThirdPartyPOISupplierSyncV1Request.json │ │ │ └── Template/ │ │ │ ├── OpenApiThirdPartyTemplateAddTemplateV1Request.json │ │ │ ├── OpenApiThirdPartyTemplateDeleteTemplateV1Request.json │ │ │ ├── OpenApiThirdPartyTemplateGetTemplateAppListV1Response.json │ │ │ └── OpenApiThirdPartyTemplateGetTemplateListV1Response.json │ │ ├── ProductApi/ │ │ │ ├── Callback/ │ │ │ │ ├── ProductSyncCallbackUrlRequest.json │ │ │ │ └── ProductSyncCallbackUrlResponse.json │ │ │ ├── Product/ │ │ │ │ ├── ProductAddRequest.json │ │ │ │ ├── ProductAddResponse.json │ │ │ │ ├── ProductModifyNoAuditRequest.json │ │ │ │ ├── ProductModifyNoAuditResponse.json │ │ │ │ ├── ProductModifyRequest.json │ │ │ │ ├── ProductModifyResponse.json │ │ │ │ ├── ProductModifyStatusRequest.json │ │ │ │ ├── ProductModifyStatusResponse.json │ │ │ │ ├── ProductQueryClassInfoRequest.json │ │ │ │ ├── ProductQueryClassInfoResponse.json │ │ │ │ ├── ProductQueryRequest.json │ │ │ │ ├── ProductQueryResponse.json │ │ │ │ ├── ProductQueryReviewRequest.json │ │ │ │ ├── ProductQueryReviewResponse.json │ │ │ │ ├── ProductQueryTemplateInfoRequest.json │ │ │ │ └── ProductQueryTemplateInfoResponse.json │ │ │ ├── Qualification/ │ │ │ │ ├── ProductAddQualificationRequest.json │ │ │ │ ├── ProductAddQualificationResponse.json │ │ │ │ ├── ProductModifyQualificationRequest.json │ │ │ │ ├── ProductModifyQualificationResponse.json │ │ │ │ ├── ProductQueryQualificationRequest.json │ │ │ │ └── ProductQueryQualificationResponse.json │ │ │ ├── RefundRule/ │ │ │ │ ├── ProductModifyRefundRuleRequest.json │ │ │ │ ├── ProductQueryRefundRuleMetaRequest.json │ │ │ │ └── ProductQueryRefundRuleMetaResponse.json │ │ │ └── Resource/ │ │ │ ├── ProductQueryResourceStatusRequest.json │ │ │ ├── ProductQueryResourceStatusResponse.json │ │ │ ├── ProductUploadResourceRequest.json │ │ │ └── ProductUploadResourceResponse.json │ │ ├── RoleApi/ │ │ │ ├── Auth/ │ │ │ │ ├── AuthEntityAddClassAuthRequest.json │ │ │ │ ├── AuthEntityAddClassAuthResponse.json │ │ │ │ ├── AuthEntityByPartnerRequest.json │ │ │ │ ├── AuthEntityByPartnerResponse.json │ │ │ │ ├── AuthEntityBySelfRequest.json │ │ │ │ ├── AuthEntityBySelfResponse.json │ │ │ │ ├── AuthEntityGetAuditDetailRequest.json │ │ │ │ ├── AuthEntityGetAuditDetailResponse.json │ │ │ │ ├── AuthEntityGetBasicAuthRequest.json │ │ │ │ ├── AuthEntityGetBasicAuthResponse.json │ │ │ │ ├── AuthEntityGetClassAuthRequest.json │ │ │ │ ├── AuthEntityGetClassAuthResponse.json │ │ │ │ ├── AuthEntityUpdateBasicAuthRequest.json │ │ │ │ ├── AuthEntityUpdateBasicAuthResponse.json │ │ │ │ ├── AuthEntityUpdateClassAuthRequest.json │ │ │ │ └── AuthEntityUpdateClassAuthResponse.json │ │ │ ├── AuthEntityQueryEntityInfoRequest.json │ │ │ ├── AuthEntityQueryEntityInfoResponse.json │ │ │ ├── AuthEntityUploadMaterialResponse.json │ │ │ ├── Bind/ │ │ │ │ ├── AuthEntityEnableMountScopeRequest.json │ │ │ │ ├── AuthEntityQueryBindToCListRequest.json │ │ │ │ ├── AuthEntityQueryBindToCListResponse.json │ │ │ │ ├── AuthEntityQueryMountScopeRequest.json │ │ │ │ ├── AuthEntityQueryMountScopeResponse.json │ │ │ │ └── AuthEntityUnbindAccountRequest.json │ │ │ ├── MerchantCode/ │ │ │ │ ├── AuthEntityActivateMerchantCodeRequest.json │ │ │ │ ├── AuthEntityQueryMerchantCodeStatusRequest.json │ │ │ │ └── AuthEntityQueryMerchantCodeStatusResponse.json │ │ │ └── Role/ │ │ │ ├── AuthEntityAddRoleRequest.json │ │ │ ├── AuthEntityAddRoleResponse.json │ │ │ ├── AuthEntityAuthRoleRequest.json │ │ │ ├── AuthEntityAuthRoleResponse.json │ │ │ ├── AuthEntityBindRoleRequest.json │ │ │ ├── AuthEntityGetAppIdAuthRequest.json │ │ │ ├── AuthEntityGetAppIdAuthResponse.json │ │ │ ├── AuthEntityGetBindListRequest.json │ │ │ ├── AuthEntityGetBindListResponse.json │ │ │ ├── AuthEntityUnauthRoleRequest.json │ │ │ ├── AuthEntityUnbindRoleRequest.json │ │ │ ├── AuthEntityUpdateAuthLetterRequest.json │ │ │ └── AuthEntityUpdateAuthLetterResponse.json │ │ ├── Webcast/ │ │ │ ├── Audience/ │ │ │ │ ├── WebcastAudienceJoinGameRequest.json │ │ │ │ └── WebcastAudienceLeaveGameRequest.json │ │ │ ├── Business/ │ │ │ │ ├── WebcastBusinessDiamondOrderAckRequest.json │ │ │ │ ├── WebcastBusinessDiamondOrderAckResponse.json │ │ │ │ ├── WebcastBusinessDiamondQueryRequest.json │ │ │ │ ├── WebcastBusinessDiamondQueryResponse.json │ │ │ │ ├── WebcastBusinessDiamondReconciliationRequest.json │ │ │ │ ├── WebcastBusinessDiamondReconciliationResponse.json │ │ │ │ ├── WebcastBusinessOrderPrecreateRequest.json │ │ │ │ └── WebcastBusinessOrderPrecreateResponse.json │ │ │ ├── Card/ │ │ │ │ ├── WebcastCardDefaultGetResponse.json │ │ │ │ ├── WebcastCardDefaultSetRequest.json │ │ │ │ ├── WebcastCardDefaultSetResponse.json │ │ │ │ ├── WebcastCardDeleteRequest.json │ │ │ │ ├── WebcastCardDeleteResponse.json │ │ │ │ ├── WebcastCardGetAllCardsForUserResponse.json │ │ │ │ ├── WebcastCardGetRequest.json │ │ │ │ ├── WebcastCardGetResponse.json │ │ │ │ ├── WebcastCardSetRequest.json │ │ │ │ ├── WebcastCardSetResponse.json │ │ │ │ ├── WebcastCardUpdateRequest.json │ │ │ │ └── WebcastCardUpdateResponse.json │ │ │ ├── File/ │ │ │ │ ├── WebcastFileCardImageGetRequest.json │ │ │ │ ├── WebcastFileCardImageGetResponse.json │ │ │ │ └── WebcastFileCardImageUploadResponse.json │ │ │ ├── GamingCon/ │ │ │ │ ├── WebcastGamingConRoundCoGameUploadUserDataRequest.json │ │ │ │ ├── WebcastGamingConRoundCompleteUploadUserResultRequest.json │ │ │ │ ├── WebcastGamingConRoundSyncStatusRequest.json │ │ │ │ ├── WebcastGamingConRoundUploadRankListRequest.json │ │ │ │ ├── WebcastGamingConRoundUploadUserGroupInfoRequest.json │ │ │ │ ├── WebcastGamingConRoundUploadUserResultRequest.json │ │ │ │ ├── WebcastGamingConWorldRankCompleteUploadUserResultRequest.json │ │ │ │ ├── WebcastGamingConWorldRankSetValidVersionRequest.json │ │ │ │ ├── WebcastGamingConWorldRankUploadRankListRequest.json │ │ │ │ └── WebcastGamingConWorldRankUploadUserResultRequest.json │ │ │ ├── Gift/ │ │ │ │ ├── WebcastGiftTopGiftRequest.json │ │ │ │ └── WebcastGiftTopGiftResponse.json │ │ │ ├── LinkMic/ │ │ │ │ ├── WebcastLinkMicQueryRequest.json │ │ │ │ └── WebcastLinkMicQueryResponse.json │ │ │ ├── LiveData/ │ │ │ │ ├── WebcastLiveDataTaskFailDataGetResponse.json │ │ │ │ ├── WebcastLiveDataTaskGetResponse.json │ │ │ │ ├── WebcastLiveDataTaskStartRequest.json │ │ │ │ ├── WebcastLiveDataTaskStartResponse.json │ │ │ │ └── WebcastLiveDataTaskStopRequest.json │ │ │ ├── Quiz/ │ │ │ │ └── WebcastQuizGetResponse.json │ │ │ └── WebcastMate/ │ │ │ ├── WebcastWebcastMateInfoRequest.json │ │ │ └── WebcastWebcastMateInfoResponse.json │ │ └── _/ │ │ ├── AppsAdPlacement/ │ │ │ ├── AppsAdPlacementAddV1Request.json │ │ │ ├── AppsAdPlacementQueryV1Response.json │ │ │ └── AppsAdPlacementUpdateV1Request.json │ │ ├── AppsAuth/ │ │ │ ├── AppsAuthGetRelatedIdV1Request.json │ │ │ └── AppsAuthGetRelatedIdV1Response.json │ │ ├── AppsCapacity/ │ │ │ ├── Ad/ │ │ │ │ ├── AppsCapacityQueryAdIncomeV3Response.json │ │ │ │ └── AppsCapacityQueryAdSettlementListV3Response.json │ │ │ ├── AwemeBind/ │ │ │ │ ├── AppsCapacityBindAwemeRelationV1Request.json │ │ │ │ ├── AppsCapacityGetAwemeBindTemplateInfoV1Request.json │ │ │ │ ├── AppsCapacityGetAwemeBindTemplateInfoV1Response.json │ │ │ │ ├── AppsCapacityGetAwemeBindTemplateListV1Request.json │ │ │ │ ├── AppsCapacityGetAwemeBindTemplateListV1Response.json │ │ │ │ ├── AppsCapacityGetAwemeRelationBindQrcodeV1Response.json │ │ │ │ ├── AppsCapacityQueryAwemeRelationListV1Response.json │ │ │ │ └── AppsCapacityUnbindAwemeRelationV1Request.json │ │ │ ├── AwemeKeyword/ │ │ │ │ ├── AppsCapacityAddAwemeVideoKeywordV1Request.json │ │ │ │ ├── AppsCapacityDeleteAwemeVideoKeywordV1Request.json │ │ │ │ └── AppsCapacityQueryAwemeVideoKeywordListV1Response.json │ │ │ ├── Delivery/ │ │ │ │ ├── AppsCapacityCreateAliasV1Request.json │ │ │ │ ├── AppsCapacityDeleteAliasV1Request.json │ │ │ │ ├── AppsCapacityListAliasV1Response.json │ │ │ │ ├── AppsCapacityModifyAliasV1Request.json │ │ │ │ ├── AppsCapacityQuerySearchTagListV1Response.json │ │ │ │ └── AppsCapacitySetSearchTagV1Request.json │ │ │ ├── SimpleQrcode/ │ │ │ │ ├── AppsCapacityAddSimpleQrcodeBindV2Request.json │ │ │ │ ├── AppsCapacityDeleteSimpleQrcodeBindV2Request.json │ │ │ │ ├── AppsCapacityQuerySimpleQrcodeBindListV2Response.json │ │ │ │ ├── AppsCapacityUpdateSimpleQrcodeBindStatusV2Request.json │ │ │ │ └── AppsCapacityUpdateSimpleQrcodeBindV2Request.json │ │ │ └── SubService/ │ │ │ ├── AppsCapacityCreateMicroAppSubServiceV1Request.json │ │ │ └── AppsCapacityQueryMicroAppSubServiceV1Response.json │ │ ├── AppsCategory/ │ │ │ └── AppsCategoryQueryAppCategoriesV1Response.json │ │ ├── AppsCensor/ │ │ │ ├── AppsCensorImageV1Request.json │ │ │ └── AppsCensorImageV1Response.json │ │ ├── AppsDeveloperToolbox/ │ │ │ ├── AppsDeveloperToolboxImageMaterialFunctionConfigAddV1Request.json │ │ │ ├── AppsDeveloperToolboxImageMaterialFunctionConfigQueryStatusV1Response.json │ │ │ ├── AppsDeveloperToolboxImageMaterialUploadV1Request.json │ │ │ └── AppsDeveloperToolboxImageMaterialUploadV1Response.json │ │ ├── AppsDouyin/ │ │ │ ├── InteractTask/ │ │ │ │ ├── AppsDouyinCreateInteractTaskV1Request.json │ │ │ │ ├── AppsDouyinCreateInteractTaskV1Response.json │ │ │ │ ├── AppsDouyinQueryUserInteractTaskV1Request.json │ │ │ │ └── AppsDouyinQueryUserInteractTaskV1Response.json │ │ │ └── Task/ │ │ │ ├── AppsDouyinCreateTaskV1Request.json │ │ │ ├── AppsDouyinCreateTaskV1Response.json │ │ │ ├── AppsDouyinQueryUserTaskV1Request.json │ │ │ └── AppsDouyinQueryUserTaskV1Response.json │ │ ├── AppsECPay/ │ │ │ ├── Bill/ │ │ │ │ ├── AppsBillsV3Request.json │ │ │ │ ├── AppsBillsV3Response.json │ │ │ │ ├── AppsFundBillsV3Request.json │ │ │ │ └── AppsFundBillsV3Response.json │ │ │ └── SaaS/ │ │ │ ├── Applyment/ │ │ │ │ ├── AppsECPaySaaSCreateMerchantV3Request.json │ │ │ │ ├── AppsECPaySaaSCreateMerchantV3Response.json │ │ │ │ ├── AppsECPaySaaSImageUploadV3Response.json │ │ │ │ ├── AppsECPaySaaSQueryMerchantStatusV3Request.json │ │ │ │ └── AppsECPaySaaSQueryMerchantStatusV3Response.json │ │ │ ├── Links/ │ │ │ │ ├── AppsECPaySaaSAddMerchantV3Request.json │ │ │ │ ├── AppsECPaySaaSAddMerchantV3Response.json │ │ │ │ ├── AppsECPaySaaSAddSubMerchantV3Request.json │ │ │ │ ├── AppsECPaySaaSAddSubMerchantV3Response.json │ │ │ │ ├── AppsECPaySaaSAppAddSubMerchantV3Request.json │ │ │ │ ├── AppsECPaySaaSAppAddSubMerchantV3Response.json │ │ │ │ ├── AppsECPaySaaSGetAppMerchantV3Request.json │ │ │ │ └── AppsECPaySaaSGetAppMerchantV3Response.json │ │ │ └── Withdraw/ │ │ │ ├── AppsECPaySaaSMerchantWithdrawV3Request.json │ │ │ ├── AppsECPaySaaSMerchantWithdrawV3Response.json │ │ │ ├── AppsECPaySaaSQueryMerchantBalanceV3Request.json │ │ │ ├── AppsECPaySaaSQueryMerchantBalanceV3Response.json │ │ │ ├── AppsECPaySaaSQueryWithdrawOrderV3Request.json │ │ │ └── AppsECPaySaaSQueryWithdrawOrderV3Response.json │ │ ├── AppsItem/ │ │ │ ├── AppsItemBCGetBaseV1Response.json │ │ │ ├── AppsItemBCGetCommentV1Response.json │ │ │ ├── AppsItemBCGetLikeV1Response.json │ │ │ ├── AppsItemBCGetPlayV1Response.json │ │ │ ├── AppsItemBCGetShareV1Response.json │ │ │ ├── AppsItemGetBaseV1Response.json │ │ │ ├── AppsItemGetCommentV1Response.json │ │ │ ├── AppsItemGetLikeV1Response.json │ │ │ ├── AppsItemGetPlayV1Response.json │ │ │ ├── AppsItemGetShareV1Response.json │ │ │ └── Comment/ │ │ │ ├── AppsItemBCListCommentReplyV1Response.json │ │ │ ├── AppsItemBCListCommentV1Response.json │ │ │ ├── AppsItemBCReplyCommentV1Request.json │ │ │ ├── AppsItemBCReplyCommentV1Response.json │ │ │ ├── AppsItemBCTopCommentV1Request.json │ │ │ ├── AppsItemListCommentReplyV1Response.json │ │ │ ├── AppsItemListCommentV1Response.json │ │ │ ├── AppsItemReplyCommentV1Request.json │ │ │ ├── AppsItemReplyCommentV1Response.json │ │ │ └── AppsItemTopCommentV1Request.json │ │ ├── AppsLiveBooking/ │ │ │ ├── AppsLiveBookingVideoCancelV2Request.json │ │ │ ├── AppsLiveBookingVideoCancelV2Response.json │ │ │ ├── AppsLiveBookingVideoCreateV2Request.json │ │ │ └── AppsLiveBookingVideoCreateV2Response.json │ │ ├── AppsPlayletBusiness/ │ │ │ ├── AppsPlayletBusinessUploadV1Request.json │ │ │ └── AppsPlayletBusinessUploadV1Response.json │ │ ├── AppsPrivacySetting/ │ │ │ ├── AppsPrivacySettingAddV1Request.json │ │ │ └── AppsPrivacySettingQueryV1Response.json │ │ ├── AppsQrcode/ │ │ │ ├── AppsQrcodeCreateV1Request.json │ │ │ └── AppsQrcodeCreateV1Response.json │ │ ├── AppsSearch/ │ │ │ ├── AppsSearchDeleteIndexV1Request.json │ │ │ └── AppsSearchUploadSitemapV1Request.json │ │ ├── AppsShare/ │ │ │ └── Task/ │ │ │ ├── AppsShareCreateTaskV1Request.json │ │ │ ├── AppsShareCreateTaskV1Response.json │ │ │ ├── AppsShareQueryUserTaskV1Request.json │ │ │ └── AppsShareQueryUserTaskV1Response.json │ │ ├── AppsTask/ │ │ │ ├── AppsTaskCreateLiveV2Request.json │ │ │ ├── AppsTaskCreateLiveV2Response.json │ │ │ ├── AppsTaskCreateVideoV2Request.json │ │ │ ├── AppsTaskCreateVideoV2Response.json │ │ │ ├── AppsTaskWriteoffLiveV2Request.json │ │ │ └── AppsTaskWriteoffVideoV2Request.json │ │ ├── AppsTrade/ │ │ │ ├── AppsTradeToolkitButtonWhiteSettingV2Request.json │ │ │ ├── AppsTradeToolkitQueryTextV2Request.json │ │ │ ├── AppsTradeToolkitQueryTextV2Response.json │ │ │ ├── AppsTradeToolkitUpdateMerchantConfigV2Request.json │ │ │ └── AppsTradeToolkitUpdateMerchantPathV2Request.json │ │ ├── AppsTrafficPermission/ │ │ │ ├── AppsTrafficPermissionOpenV1Request.json │ │ │ └── AppsTrafficPermissionQueryV1Response.json │ │ ├── AppsUrlLink/ │ │ │ ├── AppsUrlLinkGenerateV1Request.json │ │ │ ├── AppsUrlLinkGenerateV1Response.json │ │ │ ├── AppsUrlLinkQueryInfoV1Request.json │ │ │ ├── AppsUrlLinkQueryInfoV1Response.json │ │ │ ├── AppsUrlLinkQueryQuotaV1Request.json │ │ │ └── AppsUrlLinkQueryQuotaV1Response.json │ │ ├── AppsUrlSchema/ │ │ │ ├── AppsUrlGenerateSchemaV1Request.json │ │ │ ├── AppsUrlGenerateSchemaV1Response.json │ │ │ ├── AppsUrlQuerySchemaQuotaV1Request.json │ │ │ ├── AppsUrlQuerySchemaQuotaV1Response.json │ │ │ ├── AppsUrlQuerySchemaV1Request.json │ │ │ └── AppsUrlQuerySchemaV1Response.json │ │ ├── AppsUser/ │ │ │ ├── AppsUserBCGetCommentV1Response.json │ │ │ ├── AppsUserBCGetFansV1Response.json │ │ │ ├── AppsUserBCGetItemV1Response.json │ │ │ ├── AppsUserBCGetLikeV1Response.json │ │ │ ├── AppsUserBCGetProfileV1Response.json │ │ │ ├── AppsUserBCGetShareV1Response.json │ │ │ ├── AppsUserGetCommentV1Response.json │ │ │ ├── AppsUserGetFansV1Response.json │ │ │ ├── AppsUserGetItemV1Response.json │ │ │ ├── AppsUserGetLikeV1Response.json │ │ │ ├── AppsUserGetProfileV1Response.json │ │ │ └── AppsUserGetShareV1Response.json │ │ ├── AppsVideo/ │ │ │ ├── AppsConvertOpenItemIdToEncryptIdV1Request.json │ │ │ ├── AppsConvertOpenItemIdToEncryptIdV1Response.json │ │ │ ├── AppsConvertVideoIdToOpenItemIdV1Request.json │ │ │ ├── AppsConvertVideoIdToOpenItemIdV1Response.json │ │ │ ├── AppsVideoBCQueryV1Request.json │ │ │ ├── AppsVideoBCQueryV1Response.json │ │ │ ├── AppsVideoQueryV1Request.json │ │ │ └── AppsVideoQueryV1Response.json │ │ ├── ECommerce/ │ │ │ ├── ECommerceConfigLimitOperatePointV1Request.json │ │ │ ├── ECommerceConfigRegisterMicroAppV1Request.json │ │ │ ├── ECommerceCustomizationQueryStatusV1Request.json │ │ │ └── ECommerceCustomizationQueryStatusV1Response.json │ │ ├── Gift/ │ │ │ ├── GiftReceiveRewardRequest.json │ │ │ └── GiftReceiveRewardResponse.json │ │ ├── LiveBooking/ │ │ │ ├── LiveBookingTextCloseResponse.json │ │ │ ├── LiveBookingTextCreateRequest.json │ │ │ ├── LiveBookingTextCreateResponse.json │ │ │ ├── LiveBookingTextDetailResponse.json │ │ │ └── LiveBookingVideoListResponse.json │ │ ├── MatchTaskBox/ │ │ │ ├── MatchTaskBoxAddRoomTaskV2Request.json │ │ │ ├── MatchTaskBoxAddRoomTaskV2Response.json │ │ │ ├── MatchTaskBoxAddTaskV2Request.json │ │ │ ├── MatchTaskBoxAddTaskV2Response.json │ │ │ ├── MatchTaskBoxQueryAppTaskIdV2Request.json │ │ │ ├── MatchTaskBoxQueryAppTaskIdV2Response.json │ │ │ ├── MatchTaskBoxQueryBillLinkV2Request.json │ │ │ ├── MatchTaskBoxQueryBillLinkV2Response.json │ │ │ ├── MatchTaskBoxQueryTaskInfoV2Request.json │ │ │ ├── MatchTaskBoxQueryTaskInfoV2Response.json │ │ │ ├── MatchTaskBoxQueryVideoSummaryDataV2Request.json │ │ │ ├── MatchTaskBoxQueryVideoSummaryDataV2Response.json │ │ │ ├── MatchTaskBoxUpdateStatusV2Request.json │ │ │ ├── MatchTaskBoxUpdateStatusV2Response.json │ │ │ ├── MatchTaskBoxUpdateTaskV2Request.json │ │ │ └── MatchTaskBoxUpdateTaskV2Response.json │ │ ├── NotificationSubscription/ │ │ │ ├── NotificationSubscriptionAddAppTemplateV2Request.json │ │ │ ├── NotificationSubscriptionAddAppTemplateV2Response.json │ │ │ ├── NotificationSubscriptionCreateTemplateV2Request.json │ │ │ ├── NotificationSubscriptionNotifyUserV2Request.json │ │ │ ├── NotificationSubscriptionQueryAppTemplateV2Response.json │ │ │ ├── NotificationSubscriptionQueryCreatedTemplateListV2Response.json │ │ │ └── NotificationSubscriptionQueryTemplateListV2Response.json │ │ ├── PlatformDataAnalysis/ │ │ │ ├── Component/ │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithDataV2Request.json │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithDataV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithDetailV2Request.json │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithDetailV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithOverviewV2Request.json │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithOverviewV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryComponentWithSourceV2Request.json │ │ │ │ └── PlatformDataAnalysisQueryComponentWithSourceV2Response.json │ │ │ ├── Live/ │ │ │ │ ├── PlatformDataAnalysisQueryLiveWithShortIdV2Request.json │ │ │ │ └── PlatformDataAnalysisQueryLiveWithShortIdV2Response.json │ │ │ ├── SmallRoom/ │ │ │ │ ├── PlatformDataAnalysisQuerySmallHomeOrderDataV2Response.json │ │ │ │ ├── PlatformDataAnalysisQuerySmallHomeOverviewDataV2Response.json │ │ │ │ └── PlatformDataAnalysisQuerySmallHomeRoomDataV2Response.json │ │ │ ├── Transaction/ │ │ │ │ ├── PlatformDataAnalysisQueryDealDataWithConversionV2Request.json │ │ │ │ ├── PlatformDataAnalysisQueryDealDataWithConversionV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryDealOverviewDataV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryLiveDealDataV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryLiveRoomDataV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryLiveRoomV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryProductDealDataV2Response.json │ │ │ │ └── PlatformDataAnalysisQueryVideoDealDataV2Response.json │ │ │ ├── User/ │ │ │ │ ├── PlatformDataAnalysisQueryBehaviorDataV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryClientDataV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryPageDataV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryRealTimeUserDataV2Response.json │ │ │ │ ├── PlatformDataAnalysisQueryRetentionDataV2Response.json │ │ │ │ ├── PlatformDataAnalysisQuerySceneDataV2Response.json │ │ │ │ └── PlatformDataAnalysisQueryUserPortraitDataV2Response.json │ │ │ └── Video/ │ │ │ ├── PlatformDataAnalysisQueryShortLiveDataWithIdV2Request.json │ │ │ ├── PlatformDataAnalysisQueryShortLiveDataWithIdV2Response.json │ │ │ ├── PlatformDataAnalysisQueryShortLiveIdWithAwemeIdV2Request.json │ │ │ ├── PlatformDataAnalysisQueryShortLiveIdWithAwemeIdV2Response.json │ │ │ ├── PlatformDataAnalysisQueryVideoDataV2Request.json │ │ │ ├── PlatformDataAnalysisQueryVideoDataV2Response.json │ │ │ ├── PlatformDataAnalysisQueryVideoWithSourceV2Request.json │ │ │ └── PlatformDataAnalysisQueryVideoWithSourceV2Response.json │ │ ├── Product/ │ │ │ └── Region/ │ │ │ ├── ProductAppRegionAddV1Request.json │ │ │ ├── ProductAppRegionAddV1Response.json │ │ │ └── ProductAppRegionModifyV1Request.json │ │ ├── Promotion/ │ │ │ ├── Activity/ │ │ │ │ ├── PromotionActivityAddSelfTestAccountsV2Request.json │ │ │ │ ├── PromotionActivityBindUserToSidebarActivityV2Request.json │ │ │ │ ├── PromotionActivityCreatePromotionActivityV2Request.json │ │ │ │ ├── PromotionActivityCreatePromotionActivityV2Response.json │ │ │ │ ├── PromotionActivityModifyPromotionActivityV2Request.json │ │ │ │ ├── PromotionActivityQueryBindedUserV2Request.json │ │ │ │ ├── PromotionActivityQueryBindedUserV2Response.json │ │ │ │ ├── PromotionActivityQueryPromotionActivityV2Request.json │ │ │ │ ├── PromotionActivityQueryPromotionActivityV2Response.json │ │ │ │ └── PromotionActivityUpdatePromotionActivityStatusV2Request.json │ │ │ ├── Coupon/ │ │ │ │ ├── DeveloperActivity/ │ │ │ │ │ ├── PromotionCouponCreateDeveloperActivityV1Request.json │ │ │ │ │ ├── PromotionCouponCreateDeveloperActivityV1Response.json │ │ │ │ │ └── PromotionCouponDeleteDeveloperActivityV1Request.json │ │ │ │ ├── PromotionCouponBatchConsumeCouponV1Request.json │ │ │ │ ├── PromotionCouponBatchConsumeCouponV1Response.json │ │ │ │ ├── PromotionCouponBatchRollbackConsumeCouponV1Request.json │ │ │ │ ├── PromotionCouponBatchRollbackConsumeCouponV1Response.json │ │ │ │ ├── PromotionCouponGetBillDownloadUrlV1Request.json │ │ │ │ ├── PromotionCouponGetBillDownloadUrlV1Response.json │ │ │ │ ├── PromotionCouponGetCouponReceiveInfoV1Request.json │ │ │ │ ├── PromotionCouponGetCouponReceiveInfoV1Response.json │ │ │ │ ├── PromotionCouponGetTalentCouponV1Request.json │ │ │ │ ├── PromotionCouponGetTalentCouponV1Response.json │ │ │ │ ├── PromotionCouponSendCouponToDesignatedUserV1Request.json │ │ │ │ ├── PromotionCouponSendCouponToDesignatedUserV1Response.json │ │ │ │ ├── PromotionCouponSetTalentCouponV1Request.json │ │ │ │ ├── PromotionCouponUpdateTalentCouponStatusV1Request.json │ │ │ │ └── PromotionCouponUpdateTalentCouponStockV1Request.json │ │ │ └── CouponMeta/ │ │ │ ├── PromotionCouponCreateCouponMetaV2Request.json │ │ │ ├── PromotionCouponCreateCouponMetaV2Response.json │ │ │ ├── PromotionCouponDeleteCouponMetaV1Request.json │ │ │ ├── PromotionCouponGetCouponMetaStatisticsV1Request.json │ │ │ ├── PromotionCouponGetCouponMetaStatisticsV1Response.json │ │ │ ├── PromotionCouponModifyCouponMetaV2Request.json │ │ │ ├── PromotionCouponQueryActivityMetaDataV1Request.json │ │ │ ├── PromotionCouponQueryActivityMetaDataV1Response.json │ │ │ ├── PromotionCouponQueryCouponMetaV2Request.json │ │ │ ├── PromotionCouponQueryCouponMetaV2Response.json │ │ │ ├── PromotionCouponUpdateCouponMetaStatusV1Request.json │ │ │ └── PromotionCouponUpdateCouponMetaStockV1Request.json │ │ ├── TradeAuthDeveloper/ │ │ │ ├── AuthDeposit/ │ │ │ │ ├── Auth/ │ │ │ │ │ ├── TradeAuthDeveloperCancelAuthOrderV1Request.json │ │ │ │ │ ├── TradeAuthDeveloperCreateAuthOrderV1Request.json │ │ │ │ │ ├── TradeAuthDeveloperCreateAuthOrderV1Response.json │ │ │ │ │ ├── TradeAuthDeveloperFinishAuthOrderV1Request.json │ │ │ │ │ ├── TradeAuthDeveloperQueryAdmissibleAuthV1Request.json │ │ │ │ │ ├── TradeAuthDeveloperQueryAdmissibleAuthV1Response.json │ │ │ │ │ ├── TradeAuthDeveloperQueryAuthOrderV1Request.json │ │ │ │ │ └── TradeAuthDeveloperQueryAuthOrderV1Response.json │ │ │ │ ├── Pay/ │ │ │ │ │ ├── TradeAuthDeveloperClosePayOrderV1Request.json │ │ │ │ │ ├── TradeAuthDeveloperCreatePayOrderV1Request.json │ │ │ │ │ ├── TradeAuthDeveloperCreatePayOrderV1Response.json │ │ │ │ │ ├── TradeAuthDeveloperQueryPayOrderV1Request.json │ │ │ │ │ └── TradeAuthDeveloperQueryPayOrderV1Response.json │ │ │ │ └── Refund/ │ │ │ │ ├── TradeAuthDeveloperCreateRefundV1Request.json │ │ │ │ ├── TradeAuthDeveloperCreateRefundV1Response.json │ │ │ │ ├── TradeAuthDeveloperQueryRefundV1Request.json │ │ │ │ └── TradeAuthDeveloperQueryRefundV1Response.json │ │ │ └── PeriodicDeduction/ │ │ │ ├── Pay/ │ │ │ │ ├── TradeAuthDeveloperCreateSignPayV1Request.json │ │ │ │ ├── TradeAuthDeveloperCreateSignPayV1Response.json │ │ │ │ ├── TradeAuthDeveloperQuerySignPayV1Request.json │ │ │ │ └── TradeAuthDeveloperQuerySignPayV1Response.json │ │ │ ├── Refund/ │ │ │ │ ├── TradeAuthDeveloperCreateSignRefundV1Request.json │ │ │ │ ├── TradeAuthDeveloperCreateSignRefundV1Response.json │ │ │ │ ├── TradeAuthDeveloperQuerySignRefundV1Request.json │ │ │ │ └── TradeAuthDeveloperQuerySignRefundV1Response.json │ │ │ └── Sign/ │ │ │ ├── TradeAuthDeveloperQuerySignOrderV1Request.json │ │ │ ├── TradeAuthDeveloperQuerySignOrderV1Response.json │ │ │ └── TradeAuthDeveloperTerminateSignV1Request.json │ │ ├── TradeBasicDeveloper/ │ │ │ ├── TradeBasicDeveloperFulfillPushStatusV1Request.json │ │ │ ├── TradeBasicDeveloperOrderQueryV1Request.json │ │ │ ├── TradeBasicDeveloperOrderQueryV1Response.json │ │ │ ├── TradeBasicDeveloperQueryCPSV1Request.json │ │ │ ├── TradeBasicDeveloperQueryCPSV1Response.json │ │ │ ├── TradeBasicDeveloperRefundAuditCallbackV1Request.json │ │ │ ├── TradeBasicDeveloperRefundCreateV1Request.json │ │ │ ├── TradeBasicDeveloperRefundCreateV1Response.json │ │ │ ├── TradeBasicDeveloperRefundQueryV1Request.json │ │ │ ├── TradeBasicDeveloperRefundQueryV1Response.json │ │ │ ├── TradeBasicDeveloperSettleCreateV1Request.json │ │ │ ├── TradeBasicDeveloperSettleCreateV1Response.json │ │ │ ├── TradeBasicDeveloperSettleQueryV1Request.json │ │ │ ├── TradeBasicDeveloperSettleQueryV1Response.json │ │ │ ├── TradeBasicDeveloperTagQueryV1Request.json │ │ │ └── TradeBasicDeveloperTagQueryV1Response.json │ │ └── _Legacy/ │ │ ├── Apps/ │ │ │ ├── AppsJsCode2SessionV2Request.json │ │ │ ├── AppsJsCode2SessionV2Response.json │ │ │ ├── AppsTokenV2Request.json │ │ │ ├── AppsTokenV2Response.json │ │ │ ├── Capacity/ │ │ │ │ ├── AppsCapacityUploadMaterialV1Response.json │ │ │ │ ├── ClueComponent/ │ │ │ │ │ ├── AppsCapacityCreateClueComponentInfoV1Request.json │ │ │ │ │ ├── AppsCapacityCreateClueComponentInfoV1Response.json │ │ │ │ │ ├── AppsCapacityDeleteClueComponentInfoV1Request.json │ │ │ │ │ ├── AppsCapacityQueryClueComponentInfoV1Response.json │ │ │ │ │ └── AppsCapacityUpdateClueComponentInfoV1Request.json │ │ │ │ ├── Doudian/ │ │ │ │ │ ├── AppsCapacityBindDoudianAccountV1Response.json │ │ │ │ │ ├── AppsCapacityCreateDoudianAppV1Request.json │ │ │ │ │ ├── AppsCapacityCreateDoudianAppV1Response.json │ │ │ │ │ ├── AppsCapacityQueryBindDoudianAccountV1Response.json │ │ │ │ │ ├── AppsCapacityQueryDoudianAppV1Response.json │ │ │ │ │ └── AppsCapacityQueryDoudianShopInfoV1Response.json │ │ │ │ └── Mount/ │ │ │ │ ├── AppsCapacityApplyCapacityV1Request.json │ │ │ │ └── AppsCapacityQueryApplyStatusV1Response.json │ │ │ ├── Censor/ │ │ │ │ ├── AppsCensorImageRequest.json │ │ │ │ └── AppsCensorImageResponse.json │ │ │ ├── Chat/ │ │ │ │ └── AppsChatCustomerServiceUrlResponse.json │ │ │ ├── CustomerService/ │ │ │ │ └── AppsCustomerServiceUrlResponse.json │ │ │ ├── Live/ │ │ │ │ └── AppsLiveSetBlackWhiteListV1Request.json │ │ │ ├── Message/ │ │ │ │ └── AppsMessageCustomSendRequest.json │ │ │ ├── Order/ │ │ │ │ ├── AppsOrderDeleteRequest.json │ │ │ │ ├── AppsOrderPushV2Request.json │ │ │ │ └── AppsOrderPushV2Response.json │ │ │ ├── Qrcode/ │ │ │ │ └── AppsQrcodeRequest.json │ │ │ ├── ShareConfig/ │ │ │ │ ├── AppsShareConfigRequest.json │ │ │ │ └── AppsShareConfigResponse.json │ │ │ ├── SubscribeNotification/ │ │ │ │ └── AppsSubscribeNotificationDeveloperNotifyV1Request.json │ │ │ ├── TaskBox/ │ │ │ │ ├── AppsTaskBoxAddTaskRequest.json │ │ │ │ ├── AppsTaskBoxAddTaskResponse.json │ │ │ │ ├── AppsTaskBoxQueryAppTaskIdRequest.json │ │ │ │ ├── AppsTaskBoxQueryAppTaskIdResponse.json │ │ │ │ ├── AppsTaskBoxQueryTaskVideoDataRequest.json │ │ │ │ ├── AppsTaskBoxQueryTaskVideoDataResponse.json │ │ │ │ ├── AppsTaskBoxUpdateOrientTalentsRequest.json │ │ │ │ ├── AppsTaskBoxUpdateOrientTalentsResponse.json │ │ │ │ ├── AppsTaskBoxUpdateStatusRequest.json │ │ │ │ ├── AppsTaskBoxUpdateStatusResponse.json │ │ │ │ ├── AppsTaskBoxUpdateTaskRequest.json │ │ │ │ └── AppsTaskBoxUpdateTaskResponse.json │ │ │ └── Video/ │ │ │ ├── AppsConvertOpenItemIdToEncryptIdRequest.json │ │ │ ├── AppsConvertOpenItemIdToEncryptIdResponse.json │ │ │ ├── AppsConvertVideoIdToOpenItemIdRequest.json │ │ │ └── AppsConvertVideoIdToOpenItemIdResponse.json │ │ ├── AppsECPay/ │ │ │ ├── Order/ │ │ │ │ ├── AppsECPayCreateOrderV1Request.json │ │ │ │ ├── AppsECPayCreateOrderV1Response.json │ │ │ │ ├── AppsECPayCreateRefundV1Request.json │ │ │ │ ├── AppsECPayCreateRefundV1Response.json │ │ │ │ ├── AppsECPayCreateReturnV1Request.json │ │ │ │ ├── AppsECPayCreateReturnV1Response.json │ │ │ │ ├── AppsECPayQueryOrderV1Request.json │ │ │ │ ├── AppsECPayQueryOrderV1Response.json │ │ │ │ ├── AppsECPayQueryRefundV1Request.json │ │ │ │ ├── AppsECPayQueryRefundV1Response.json │ │ │ │ ├── AppsECPayQueryReturnV1Request.json │ │ │ │ ├── AppsECPayQueryReturnV1Response.json │ │ │ │ ├── AppsECPayQuerySettleV1Request.json │ │ │ │ ├── AppsECPayQuerySettleV1Response.json │ │ │ │ ├── AppsECPaySettleV1Request.json │ │ │ │ └── AppsECPaySettleV1Response.json │ │ │ └── SaaS/ │ │ │ ├── Apply/ │ │ │ │ ├── AppsECPaySaaSCreateMerchantRequest.json │ │ │ │ ├── AppsECPaySaaSCreateMerchantResponse.json │ │ │ │ ├── AppsECPaySaaSQueryMerchantStatusRequest.json │ │ │ │ └── AppsECPaySaaSQueryMerchantStatusResponse.json │ │ │ ├── PageLinks/ │ │ │ │ ├── AppsECPaySaaSAddMerchantRequest.json │ │ │ │ ├── AppsECPaySaaSAddMerchantResponse.json │ │ │ │ ├── AppsECPaySaaSAddSubMerchantRequest.json │ │ │ │ ├── AppsECPaySaaSAddSubMerchantResponse.json │ │ │ │ ├── AppsECPaySaaSAppAddSubMerchantRequest.json │ │ │ │ ├── AppsECPaySaaSAppAddSubMerchantResponse.json │ │ │ │ ├── AppsECPaySaaSGetAppMerchantRequest.json │ │ │ │ └── AppsECPaySaaSGetAppMerchantResponse.json │ │ │ └── Withdraw/ │ │ │ ├── AppsECPaySaaSMerchantWithdrawRequest.json │ │ │ ├── AppsECPaySaaSMerchantWithdrawResponse.json │ │ │ ├── AppsECPaySaaSQueryMerchantBalanceRequest.json │ │ │ ├── AppsECPaySaaSQueryMerchantBalanceResponse.json │ │ │ ├── AppsECPaySaaSQueryWithdrawOrderRequest.json │ │ │ └── AppsECPaySaaSQueryWithdrawOrderResponse.json │ │ ├── AppsGame/ │ │ │ ├── AppsGameWalletAddCoinRequest.json │ │ │ ├── AppsGameWalletAddCoinResponse.json │ │ │ ├── AppsGameWalletGamePayRequest.json │ │ │ ├── AppsGameWalletGamePayResponse.json │ │ │ ├── AppsGameWalletGetBalanceRequest.json │ │ │ └── AppsGameWalletGetBalanceResponse.json │ │ ├── AppsStorage/ │ │ │ ├── AppsRemoveUserStorageRequest.json │ │ │ └── AppsSetUserStorageRequest.json │ │ ├── AppsTrade/ │ │ │ ├── PreOrder/ │ │ │ │ ├── AppsTradeCreateOrderV2Request.json │ │ │ │ ├── AppsTradeCreateOrderV2Response.json │ │ │ │ ├── AppsTradeQueryCPSV2Request.json │ │ │ │ ├── AppsTradeQueryCPSV2Response.json │ │ │ │ ├── AppsTradeQueryOrderV2Request.json │ │ │ │ └── AppsTradeQueryOrderV2Response.json │ │ │ ├── Refund/ │ │ │ │ ├── AppsTradeCreateRefundV2Request.json │ │ │ │ ├── AppsTradeCreateRefundV2Response.json │ │ │ │ ├── AppsTradeMerchantAuditCallbackV2Request.json │ │ │ │ ├── AppsTradeQueryRefundV2Request.json │ │ │ │ └── AppsTradeQueryRefundV2Response.json │ │ │ ├── Settlement/ │ │ │ │ ├── AppsTradeCreateSettleV2Request.json │ │ │ │ ├── AppsTradeCreateSettleV2Response.json │ │ │ │ ├── AppsTradeQuerySettleV2Request.json │ │ │ │ └── AppsTradeQuerySettleV2Response.json │ │ │ └── WriteOff/ │ │ │ ├── AppsTradeDeliveryPrepareV2Request.json │ │ │ ├── AppsTradeDeliveryPrepareV2Response.json │ │ │ ├── AppsTradeDeliveryVerifyV2Request.json │ │ │ ├── AppsTradeDeliveryVerifyV2Response.json │ │ │ ├── AppsTradePushDeliveryV2Request.json │ │ │ ├── AppsTradePushDeliveryV2Response.json │ │ │ ├── AppsTradeQueryItemOrderInfoV2Request.json │ │ │ └── AppsTradeQueryItemOrderInfoV2Response.json │ │ ├── Comment/ │ │ │ ├── CommentDeveloperDeleteRequest.json │ │ │ ├── CommentDeveloperDeleteResponse.json │ │ │ ├── CommentDeveloperReplyRequest.json │ │ │ ├── CommentDeveloperReplyResponse.json │ │ │ ├── CommentOpenGetRequest.json │ │ │ └── CommentOpenGetResponse.json │ │ └── Tags/ │ │ ├── TagsImageV2Request.json │ │ ├── TagsImageV2Response.json │ │ ├── TagsTextAntiDirtV2Request.json │ │ └── TagsTextAntiDirtV2Response.json │ ├── SKIT.FlurlHttpClient.ByteDance.MicroApp.UnitTests.csproj │ ├── TestCase_ApiExecuteAppsECPayTests.cs │ ├── TestCase_ApiExecuteTokenTests.cs │ ├── TestCase_EventVerificationTests.cs │ ├── TestClients.cs │ ├── TestConfigs.cs │ └── appsettings.json ├── SKIT.FlurlHttpClient.ByteDance.OceanEngine.UnitTests/ │ ├── .gitignore │ ├── IMPORTANT_CodeAnalyzeTests.cs │ ├── ModelSamples/ │ │ ├── Advertiser/ │ │ │ ├── AdvertiserInfoRequest.json │ │ │ ├── AdvertiserInfoResponse.json │ │ │ ├── AdvertiserPublicInfoRequest.json │ │ │ ├── AdvertiserPublicInfoResponse.json │ │ │ ├── Avatar/ │ │ │ │ ├── AdvertiserAvatarGetRequest.json │ │ │ │ ├── AdvertiserAvatarGetResponse.json │ │ │ │ ├── AdvertiserAvatarSubmitRequest.json │ │ │ │ └── AdvertiserAvatarSubmitResponse.json │ │ │ ├── Budget/ │ │ │ │ ├── AdvertiserBudgetGetRequest.json │ │ │ │ ├── AdvertiserBudgetGetResponse.json │ │ │ │ ├── AdvertiserUpdateBudgetRequest.json │ │ │ │ └── AdvertiserUpdateBudgetResponse.json │ │ │ ├── Fund/ │ │ │ │ ├── AdvertiserFundDailyStatisticsRequest.json │ │ │ │ ├── AdvertiserFundDailyStatisticsResponse.json │ │ │ │ ├── AdvertiserFundGetRequest.json │ │ │ │ ├── AdvertiserFundGetResponse.json │ │ │ │ ├── AdvertiserFundTransactionGetRequest.json │ │ │ │ └── AdvertiserFundTransactionGetResponse.json │ │ │ └── Qualification/ │ │ │ ├── AdvertiserQualificationCreateV2Request.json │ │ │ ├── AdvertiserQualificationCreateV2Response.json │ │ │ ├── AdvertiserQualificationGetRequest.json │ │ │ ├── AdvertiserQualificationGetResponse.json │ │ │ ├── AdvertiserQualificationSelectV2Request.json │ │ │ ├── AdvertiserQualificationSelectV2Response.json │ │ │ ├── AdvertiserQualificationSubmitRequest.json │ │ │ └── AdvertiserQualificationSubmitResponse.json │ │ ├── Advertising/ │ │ │ ├── AdvertisingCostProtectStatusGetRequest.json │ │ │ ├── AdvertisingCostProtectStatusGetResponse.json │ │ │ ├── AdvertisingCreateRequest.json │ │ │ ├── AdvertisingCreateResponse.json │ │ │ ├── AdvertisingGetRequest.json │ │ │ ├── AdvertisingGetResponse.json │ │ │ ├── AdvertisingRejectReasonRequest.json │ │ │ ├── AdvertisingRejectReasonResponse.json │ │ │ ├── AdvertisingUpdateBidRequest.json │ │ │ ├── AdvertisingUpdateBidResponse.json │ │ │ ├── AdvertisingUpdateBudgetRequest.json │ │ │ ├── AdvertisingUpdateBudgetResponse.json │ │ │ ├── AdvertisingUpdateRequest.json │ │ │ ├── AdvertisingUpdateResponse.json │ │ │ ├── AdvertisingUpdateStatusRequest.json │ │ │ └── AdvertisingUpdateStatusResponse.json │ │ ├── Agent/ │ │ │ ├── Advertiser/ │ │ │ │ ├── AgentAdvertiserCreateV2Request.json │ │ │ │ ├── AgentAdvertiserCreateV2Response.json │ │ │ │ ├── AgentAdvertiserRechargeRequest.json │ │ │ │ ├── AgentAdvertiserRechargeResponse.json │ │ │ │ ├── AgentAdvertiserRefundRequest.json │ │ │ │ ├── AgentAdvertiserRefundResponse.json │ │ │ │ ├── AgentAdvertiserSelectRequest.json │ │ │ │ ├── AgentAdvertiserSelectResponse.json │ │ │ │ ├── AgentAdvertiserUpdateRequest.json │ │ │ │ └── AgentAdvertiserUpdateResponse.json │ │ │ ├── AgentChildAgentSelectRequest.json │ │ │ ├── AgentChildAgentSelectResponse.json │ │ │ ├── AgentInfoRequest.json │ │ │ └── AgentInfoResponse.json │ │ ├── BusinessPlatform/ │ │ │ ├── BusinessPlatformPartnerOrganizationListRequest.json │ │ │ └── BusinessPlatformPartnerOrganizationListResponse.json │ │ ├── Campaign/ │ │ │ ├── CampaignCreateRequest.json │ │ │ ├── CampaignCreateResponse.json │ │ │ ├── CampaignGetRequest.json │ │ │ ├── CampaignGetResponse.json │ │ │ ├── CampaignUpdateRequest.json │ │ │ ├── CampaignUpdateResponse.json │ │ │ ├── CampaignUpdateStatusRequest.json │ │ │ └── CampaignUpdateStatusResponse.json │ │ ├── Creative/ │ │ │ ├── CreativeCreateV2Request.json │ │ │ ├── CreativeCreateV2Response.json │ │ │ ├── CreativeGetRequest.json │ │ │ └── CreativeGetResponse.json │ │ ├── CustomerCenter/ │ │ │ └── Advertiser/ │ │ │ ├── CustomerCenterAdvertiserListRequest.json │ │ │ └── CustomerCenterAdvertiserListResponse.json │ │ ├── Enterprise/ │ │ │ ├── EnterpriseInfoRequest.json │ │ │ └── EnterpriseInfoResponse.json │ │ ├── File/ │ │ │ ├── FileImageAdvertiserGetRequest.json │ │ │ ├── FileImageAdvertiserGetResponse.json │ │ │ ├── FileImageAdvertiserResponse.json │ │ │ ├── FileImageAdvertisingResponse.json │ │ │ ├── FileImageGetRequest.json │ │ │ ├── FileImageGetResponse.json │ │ │ ├── FileMaterialBindRequest.json │ │ │ ├── FileMaterialBindResponse.json │ │ │ ├── FileVideoAdvertiserGetRequest.json │ │ │ ├── FileVideoAdvertiserGetResponse.json │ │ │ ├── FileVideoAdvertisingResponse.json │ │ │ ├── FileVideoDeleteRequest.json │ │ │ ├── FileVideoDeleteResponse.json │ │ │ ├── FileVideoGetRequest.json │ │ │ ├── FileVideoGetResponse.json │ │ │ ├── FileVideoUpdateRequest.json │ │ │ └── FileVideoUpdateResponse.json │ │ ├── Fund/ │ │ │ ├── FundSharedWalletBalanceGetRequest.json │ │ │ └── FundSharedWalletBalanceGetResponse.json │ │ ├── Majordomo/ │ │ │ └── Advertiser/ │ │ │ ├── MajordomoAdvertiserSelectRequest.json │ │ │ └── MajordomoAdvertiserSelectResponse.json │ │ ├── OAuth2/ │ │ │ ├── OAuth2AccessTokenRequest.json │ │ │ ├── OAuth2AccessTokenResponse.json │ │ │ ├── OAuth2AdvertiserGetRequest.json │ │ │ ├── OAuth2AdvertiserGetResponse.json │ │ │ ├── OAuth2AppAccessTokenRequest.json │ │ │ ├── OAuth2AppAccessTokenResponse.json │ │ │ ├── OAuth2RefreshTokenRequest.json │ │ │ └── OAuth2RefreshTokenResponse.json │ │ ├── Tools/ │ │ │ └── VideoCover/ │ │ │ ├── ToolsVideoCoverSuggestRequest.json │ │ │ └── ToolsVideoCoverSuggestResponse.json │ │ └── User/ │ │ └── UserInfoResponse.json │ ├── SKIT.FlurlHttpClient.ByteDance.OceanEngine.UnitTests.csproj │ ├── TestClients.cs │ ├── TestConfigs.cs │ └── appsettings.json ├── SKIT.FlurlHttpClient.ByteDance.TikTokGlobal.UnitTests/ │ ├── .gitignore │ ├── IMPORTANT_CodeAnalyzeTests.cs │ ├── ModelSamples/ │ │ ├── OAuth/ │ │ │ ├── OAuthAccessTokenRequest.json │ │ │ ├── OAuthAccessTokenResponse.json │ │ │ ├── OAuthRefreshTokenRequest.json │ │ │ ├── OAuthRefreshTokenResponse.json │ │ │ ├── OAuthRevokeTokenRequest.json │ │ │ └── Qrcode/ │ │ │ ├── OAuthCheckQrcodeRequest.json │ │ │ ├── OAuthCheckQrcodeResponse.json │ │ │ ├── OAuthGetQrcodeRequest.json │ │ │ └── OAuthGetQrcodeResponse.json │ │ ├── Post/ │ │ │ ├── PostPublishContentInitRequest.json │ │ │ ├── PostPublishContentInitResponse.json │ │ │ ├── PostPublishCreatorInfoQueryResponse.json │ │ │ ├── PostPublishInboxVideoInitRequest.json │ │ │ ├── PostPublishInboxVideoInitResponse.json │ │ │ ├── PostPublishStatusFetchRequest.json │ │ │ ├── PostPublishStatusFetchResponse.json │ │ │ ├── PostPublishVideoInitRequest.json │ │ │ └── PostPublishVideoInitResponse.json │ │ ├── Research/ │ │ │ ├── Adlib/ │ │ │ │ ├── ResearchAdlibAdDetailRequest.json │ │ │ │ ├── ResearchAdlibAdDetailResponse.json │ │ │ │ ├── ResearchAdlibAdQueryRequest.json │ │ │ │ ├── ResearchAdlibAdQueryResponse.json │ │ │ │ ├── ResearchAdlibAdReportRequest.json │ │ │ │ ├── ResearchAdlibAdReportResponse.json │ │ │ │ ├── ResearchAdlibAdvertiserQueryRequest.json │ │ │ │ ├── ResearchAdlibAdvertiserQueryResponse.json │ │ │ │ ├── ResearchAdlibCommercialContentQueryRequest.json │ │ │ │ └── ResearchAdlibCommercialContentQueryResponse.json │ │ │ ├── Playlist/ │ │ │ │ ├── ResearchPlaylistInfoRequest.json │ │ │ │ └── ResearchPlaylistInfoResponse.json │ │ │ ├── User/ │ │ │ │ ├── ResearchUserFollowersRequest.json │ │ │ │ ├── ResearchUserFollowersResponse.json │ │ │ │ ├── ResearchUserFollowingRequest.json │ │ │ │ ├── ResearchUserFollowingResponse.json │ │ │ │ ├── ResearchUserInfoRequest.json │ │ │ │ ├── ResearchUserInfoResponse.json │ │ │ │ ├── ResearchUserLikedVideosRequest.json │ │ │ │ ├── ResearchUserLikedVideosResponse.json │ │ │ │ ├── ResearchUserPinnedVideosRequest.json │ │ │ │ ├── ResearchUserPinnedVideosResponse.json │ │ │ │ ├── ResearchUserRepostedVideosRequest.json │ │ │ │ └── ResearchUserRepostedVideosResponse.json │ │ │ └── Video/ │ │ │ ├── ResearchVideoCommentListRequest.json │ │ │ ├── ResearchVideoCommentListResponse.json │ │ │ ├── ResearchVideoQueryRequest.json │ │ │ └── ResearchVideoQueryResponse.json │ │ ├── User/ │ │ │ ├── Data/ │ │ │ │ ├── UserDataAddRequest.json │ │ │ │ ├── UserDataAddResponse.json │ │ │ │ ├── UserDataCancelRequest.json │ │ │ │ ├── UserDataCheckRequest.json │ │ │ │ ├── UserDataCheckResponse.json │ │ │ │ └── UserDataDownloadRequest.json │ │ │ └── UserInfoResponse.json │ │ └── Video/ │ │ ├── VideoListResponse.json │ │ ├── VideoQueryRequest.json │ │ └── VideoQueryResponse.json │ ├── SKIT.FlurlHttpClient.ByteDance.TikTokGlobal.UnitTests.csproj │ ├── TestClients.cs │ ├── TestConfigs.cs │ └── appsettings.json └── SKIT.FlurlHttpClient.ByteDance.TikTokGlobalShop.UnitTests/ ├── .gitignore ├── EventSamples/ │ └── _/ │ ├── CancellationStatusChangeEvent.json │ ├── OrderStatusChangeEvent.json │ ├── PackageUpdateEvent.json │ ├── ProductCreationEvent.json │ ├── ProductInformationChangeEvent.json │ ├── ProductStatusChangeEvent.json │ ├── RecipientAddressUpdateEvent.json │ ├── ReturnStatusChangeEvent.json │ ├── SellerDeauthorizationEvent.json │ └── UpcomingAuthorizationExpirationEvent.json ├── IMPORTANT_CodeAnalyzeTests.cs ├── ModelSamples/ │ ├── Legacy/ │ │ ├── Auth/ │ │ │ ├── AuthGetTokenResponse.json │ │ │ └── AuthRefreshTokenResponse.json │ │ ├── Finance/ │ │ │ ├── FinanceGetOrderSettlementListResponse.json │ │ │ ├── FinanceSearchSettlementsRequest.json │ │ │ ├── FinanceSearchSettlementsResponse.json │ │ │ ├── FinanceSearchTransactionsRequest.json │ │ │ └── FinanceSearchTransactionsResponse.json │ │ ├── Fulfillment/ │ │ │ ├── FulfillmentBatchShipPackageRequest.json │ │ │ ├── FulfillmentBatchShipPackageResponse.json │ │ │ ├── FulfillmentCreateLabelRequest.json │ │ │ ├── FulfillmentCreateLabelResponse.json │ │ │ ├── FulfillmentGetPackageDetailResponse.json │ │ │ ├── FulfillmentGetPackagePickupConfigResponse.json │ │ │ ├── FulfillmentGetPackageShippingDocumentResponse.json │ │ │ ├── FulfillmentGetPackageShippingInfoResponse.json │ │ │ ├── FulfillmentGetShippingServiceRequest.json │ │ │ ├── FulfillmentGetShippingServiceResponse.json │ │ │ ├── FulfillmentSearchPackagesRequest.json │ │ │ ├── FulfillmentSearchPackagesResponse.json │ │ │ ├── FulfillmentShipPackageRequest.json │ │ │ ├── FulfillmentShipPackageResponse.json │ │ │ ├── FulfillmentUpdatePackageDeliveryStatusRequest.json │ │ │ ├── FulfillmentUpdatePackageDeliveryStatusResponse.json │ │ │ ├── FulfillmentUpdatePackageShippingInfoRequest.json │ │ │ ├── FulfillmentUpdatePackageShippingInfoResponse.json │ │ │ ├── Order/ │ │ │ │ ├── FulfillmentConfirmOrderSplitRequest.json │ │ │ │ ├── FulfillmentConfirmOrderSplitResponse.json │ │ │ │ ├── FulfillmentRemovePackageOrdersRequest.json │ │ │ │ ├── FulfillmentRemovePackageOrdersResponse.json │ │ │ │ ├── FulfillmentVerifyOrderSplitRequest.json │ │ │ │ └── FulfillmentVerifyOrderSplitResponse.json │ │ │ ├── PreCombinePackage/ │ │ │ │ ├── FulfillmentConfirmPreCombinePackageRequest.json │ │ │ │ ├── FulfillmentConfirmPreCombinePackageResponse.json │ │ │ │ └── FulfillmentSearchPreCombinePackagesResponse.json │ │ │ └── Upload/ │ │ │ ├── FulfillmentUploadFileRequest.json │ │ │ ├── FulfillmentUploadFileResponse.json │ │ │ ├── FulfillmentUploadImageRequest.json │ │ │ └── FulfillmentUploadImageResponse.json │ │ ├── GlobalProduct/ │ │ │ ├── Category/ │ │ │ │ ├── GlobalProductGetAttributeListResponse.json │ │ │ │ ├── GlobalProductGetCategoryListResponse.json │ │ │ │ └── GlobalProductGetCategoryRulesResponse.json │ │ │ ├── GlobalProductCreateProductRequest.json │ │ │ ├── GlobalProductCreateProductResponse.json │ │ │ ├── GlobalProductDeleteProductsRequest.json │ │ │ ├── GlobalProductDeleteProductsResponse.json │ │ │ ├── GlobalProductGetProductDetailResponse.json │ │ │ ├── GlobalProductPublishProductRequest.json │ │ │ ├── GlobalProductPublishProductResponse.json │ │ │ ├── GlobalProductSearchProductsRequest.json │ │ │ ├── GlobalProductSearchProductsResponse.json │ │ │ ├── GlobalProductUpdateProductPriceRequest.json │ │ │ ├── GlobalProductUpdateProductPriceResponse.json │ │ │ ├── GlobalProductUpdateProductRequest.json │ │ │ └── GlobalProductUpdateProductResponse.json │ │ ├── Logistics/ │ │ │ ├── LogisticsGetShippingDocumentResponse.json │ │ │ ├── LogisticsGetShippingInfoResponse.json │ │ │ ├── LogisticsGetShippingProviderListResponse.json │ │ │ ├── LogisticsGetSubscribedDeliveryOptionsRequest.json │ │ │ ├── LogisticsGetSubscribedDeliveryOptionsResponse.json │ │ │ ├── LogisticsGetWarehouseListResponse.json │ │ │ └── LogisticsUpdateShippingInfoRequest.json │ │ ├── Order/ │ │ │ ├── OrderGetOrderDetailRequest.json │ │ │ ├── OrderGetOrderDetailResponse.json │ │ │ ├── OrderSearchOrdersRequest.json │ │ │ ├── OrderSearchOrdersResponse.json │ │ │ └── OrderShipOrderRequest.json │ │ ├── Product/ │ │ │ ├── Category/ │ │ │ │ ├── ProductCreateBrandRequest.json │ │ │ │ ├── ProductCreateBrandResponse.json │ │ │ │ ├── ProductGetAttributeListResponse.json │ │ │ │ ├── ProductGetBrandListResponse.json │ │ │ │ ├── ProductGetCategoryListResponse.json │ │ │ │ ├── ProductGetCategoryRulesResponse.json │ │ │ │ ├── ProductRecommendCategoryRequest.json │ │ │ │ └── ProductRecommendCategoryResponse.json │ │ │ ├── ProductActivateProductsRequest.json │ │ │ ├── ProductActivateProductsResponse.json │ │ │ ├── ProductCreateProductRequest.json │ │ │ ├── ProductCreateProductResponse.json │ │ │ ├── ProductDeactivateProductsRequest.json │ │ │ ├── ProductDeactivateProductsResponse.json │ │ │ ├── ProductDeleteProductsRequest.json │ │ │ ├── ProductDeleteProductsResponse.json │ │ │ ├── ProductGetProductDetailResponse.json │ │ │ ├── ProductGetProductStocksRequest.json │ │ │ ├── ProductGetProductStocksResponse.json │ │ │ ├── ProductPrecheckResponse.json │ │ │ ├── ProductRecoverProductsRequest.json │ │ │ ├── ProductRecoverProductsResponse.json │ │ │ ├── ProductSearchProductsRequest.json │ │ │ ├── ProductSearchProductsResponse.json │ │ │ ├── ProductUpdateProductPriceRequest.json │ │ │ ├── ProductUpdateProductPriceResponse.json │ │ │ ├── ProductUpdateProductRequest.json │ │ │ ├── ProductUpdateProductResponse.json │ │ │ ├── ProductUpdateProductStockRequest.json │ │ │ ├── ProductUpdateProductStockResponse.json │ │ │ └── Upload/ │ │ │ ├── ProductUploadFileRequest.json │ │ │ ├── ProductUploadFileResponse.json │ │ │ ├── ProductUploadImageRequest.json │ │ │ └── ProductUploadImageResponse.json │ │ ├── Promotion/ │ │ │ ├── Items/ │ │ │ │ ├── PromotionAddOrUpdateActivityItemsRequest.json │ │ │ │ ├── PromotionAddOrUpdateActivityItemsResponse.json │ │ │ │ ├── PromotionRemoveActivityItemsRequest.json │ │ │ │ └── PromotionRemoveActivityItemsResponse.json │ │ │ ├── PromotionCreateActivityRequest.json │ │ │ ├── PromotionCreateActivityResponse.json │ │ │ ├── PromotionDeactivateActivityRequest.json │ │ │ ├── PromotionDeactivateActivityResponse.json │ │ │ ├── PromotionGetActivityDetailResponse.json │ │ │ ├── PromotionSearchActivitiesRequest.json │ │ │ ├── PromotionSearchActivitiesResponse.json │ │ │ ├── PromotionUpdateActivityRequest.json │ │ │ └── PromotionUpdateActivityResponse.json │ │ ├── Reverse/ │ │ │ ├── ReverseCancelOrderRequest.json │ │ │ ├── ReverseCancelOrderResponse.json │ │ │ ├── ReverseConfirmReverseRequestRequest.json │ │ │ ├── ReverseGetRejectReasonListResponse.json │ │ │ ├── ReverseRejectReverseRequestRequest.json │ │ │ ├── ReverseSearchReverseOrdersRequest.json │ │ │ └── ReverseSearchReverseOrdersResponse.json │ │ ├── Seller/ │ │ │ ├── SellerCheckGlobalProductModeResponse.json │ │ │ └── SellerGetGlobalActiveShopListResponse.json │ │ ├── Shop/ │ │ │ └── ShopGetAuthorizedShopListResponse.json │ │ └── SupplyChain/ │ │ ├── SupplyChainSyncPackageFulfillmentDataRequest.json │ │ └── SupplyChainSyncPackageFulfillmentDataResponse.json │ └── _/ │ ├── Auth/ │ │ ├── AuthGetTokenResponse.json │ │ └── AuthRefreshTokenResponse.json │ ├── Authorization/ │ │ ├── AuthorizationGetCategoryAssetsResponse.json │ │ └── AuthorizationGetShopsResponse.json │ ├── CustomerService/ │ │ ├── Agents/ │ │ │ ├── CustomerServiceGetAgentSettingsResponse.json │ │ │ └── CustomerServiceUpdateAgentSettingsRequest.json │ │ ├── CustomerServiceCreateConversationMessageRequest.json │ │ ├── CustomerServiceCreateConversationMessageResponse.json │ │ ├── CustomerServiceCreateConversationRequest.json │ │ ├── CustomerServiceCreateConversationResponse.json │ │ ├── CustomerServiceGetConversationMessagesResponse.json │ │ ├── CustomerServiceGetConversationsResponse.json │ │ ├── CustomerServiceUploadImageResponse.json │ │ └── Performance/ │ │ └── CustomerServiceGetPerformanceResponse.json │ ├── Event/ │ │ ├── EventDeleteWebhookRequest.json │ │ ├── EventGetWebhooksResponse.json │ │ └── EventUpdateWebhookRequest.json │ ├── FBT/ │ │ ├── FBTGetGoodsRequest.json │ │ ├── FBTGetGoodsResponse.json │ │ ├── FBTGetInboundOrdersResponse.json │ │ ├── FBTGetInventoriesRequest.json │ │ ├── FBTGetInventoriesResponse.json │ │ ├── FBTGetInventoryRecordsRequest.json │ │ ├── FBTGetInventoryRecordsResponse.json │ │ ├── FBTGetMerchantOnboardedRegionsResponse.json │ │ └── FBTGetWarehousesResponse.json │ ├── Finance/ │ │ ├── FinanceGetOrderStatementTransactionsResponse.json │ │ ├── FinanceGetPaymentsResponse.json │ │ ├── FinanceGetStatementTransactionsResponse.json │ │ ├── FinanceGetStatementsResponse.json │ │ └── FinanceGetWithdrawalsResponse.json │ ├── Fulfillment/ │ │ ├── Bundle/ │ │ │ ├── FulfillmentCreateBundleRequest.json │ │ │ └── FulfillmentCreateBundleResponse.json │ │ ├── Orders/ │ │ │ ├── FulfillmentGetOrderSplitAttributesResponse.json │ │ │ ├── FulfillmentGetOrderTrackingResponse.json │ │ │ ├── FulfillmentSearchOrderShippingServicesRequest.json │ │ │ ├── FulfillmentSearchOrderShippingServicesResponse.json │ │ │ ├── FulfillmentSplitOrderRequest.json │ │ │ ├── FulfillmentSplitOrderResponse.json │ │ │ ├── FulfillmentUpdateOrderPackagesRequest.json │ │ │ ├── FulfillmentUpdateOrderPackagesResponse.json │ │ │ └── FulfillmentUpdateOrderShippingInfoRequest.json │ │ ├── Packages/ │ │ │ ├── Combine/ │ │ │ │ ├── FulfillmentCombinePackageRequest.json │ │ │ │ ├── FulfillmentCombinePackageResponse.json │ │ │ │ ├── FulfillmentSearchCombinablePackagesResponse.json │ │ │ │ ├── FulfillmentUncombinePackageRequest.json │ │ │ │ └── FulfillmentUncombinePackageResponse.json │ │ │ ├── FulfillmentBatchShipPackagesRequest.json │ │ │ ├── FulfillmentBatchShipPackagesResponse.json │ │ │ ├── FulfillmentBatchUpdatePackagesDeliveryStatusRequest.json │ │ │ ├── FulfillmentBatchUpdatePackagesDeliveryStatusResponse.json │ │ │ ├── FulfillmentCreatePackageRequest.json │ │ │ ├── FulfillmentCreatePackageResponse.json │ │ │ ├── FulfillmentGetPackageDetailResponse.json │ │ │ ├── FulfillmentGetPackageHandoverTimeSlotsResponse.json │ │ │ ├── FulfillmentGetPackageShippingDocumentsResponse.json │ │ │ ├── FulfillmentSearchPackagesRequest.json │ │ │ ├── FulfillmentSearchPackagesResponse.json │ │ │ ├── FulfillmentShipPackageRequest.json │ │ │ └── FulfillmentUpdatePackageShippingInfoRequest.json │ │ └── Upload/ │ │ ├── FulfillmentUploadFileResponse.json │ │ └── FulfillmentUploadImageResponse.json │ ├── Logistics/ │ │ ├── LogisticsGetDeliveryOptionShippingProvidersResponse.json │ │ ├── LogisticsGetGlobalWarehousesResponse.json │ │ ├── LogisticsGetWarehouseDeliveryOptionsResponse.json │ │ └── LogisticsGetWarehousesResponse.json │ ├── Order/ │ │ ├── ExternalOrder/ │ │ │ ├── OrderCreateExternalOrderRequest.json │ │ │ ├── OrderCreateExternalOrderResponse.json │ │ │ ├── OrderGetExternalOrdersResponse.json │ │ │ └── OrderSearchExternalOrdersResponse.json │ │ ├── OrderBatchGetOrderDetailResponse.json │ │ ├── OrderGetOrderPriceDetailResponse.json │ │ ├── OrderSearchOrdersRequest.json │ │ └── OrderSearchOrdersResponse.json │ ├── Product/ │ │ ├── Brand/ │ │ │ ├── ProductCreateBrandRequest.json │ │ │ ├── ProductCreateBrandResponse.json │ │ │ └── ProductGetBrandsResponse.json │ │ ├── Category/ │ │ │ ├── ProductGetCategoriesResponse.json │ │ │ ├── ProductGetCategoryAttributesResponse.json │ │ │ ├── ProductGetCategoryRulesResponse.json │ │ │ ├── ProductRecommendCategoriesRequest.json │ │ │ └── ProductRecommendCategoriesResponse.json │ │ ├── Compliance/ │ │ │ ├── ProductCreateComplianceManufacturerRequest.json │ │ │ ├── ProductCreateComplianceManufacturerResponse.json │ │ │ ├── ProductCreateComplianceResponsiblePersonRequest.json │ │ │ ├── ProductCreateComplianceResponsiblePersonResponse.json │ │ │ ├── ProductSearchComplianceManufacturersRequest.json │ │ │ ├── ProductSearchComplianceManufacturersResponse.json │ │ │ ├── ProductSearchComplianceResponsiblePersonsRequest.json │ │ │ ├── ProductSearchComplianceResponsiblePersonsResponse.json │ │ │ ├── ProductUpdateComplianceManufacturerPartiallyRequest.json │ │ │ └── ProductUpdateComplianceResponsiblePersonPartiallyRequest.json │ │ ├── Global/ │ │ │ ├── Category/ │ │ │ │ ├── ProductGetGlobalCategoriesResponse.json │ │ │ │ ├── ProductGetGlobalCategoryAttributesResponse.json │ │ │ │ ├── ProductGetGlobalCategoryRulesResponse.json │ │ │ │ ├── ProductRecommendGlobalCategoriesRequest.json │ │ │ │ └── ProductRecommendGlobalCategoriesResponse.json │ │ │ ├── ProductCreateGlobalProductRequest.json │ │ │ ├── ProductCreateGlobalProductResponse.json │ │ │ ├── ProductDeleteGlobalProductsRequest.json │ │ │ ├── ProductDeleteGlobalProductsResponse.json │ │ │ ├── ProductGetGlobalProductDetailResponse.json │ │ │ ├── ProductPublishGlobalProductRequest.json │ │ │ ├── ProductPublishGlobalProductResponse.json │ │ │ ├── ProductSearchGlobalProductsRequest.json │ │ │ ├── ProductSearchGlobalProductsResponse.json │ │ │ ├── ProductUpdateGlobalProductInventoryRequest.json │ │ │ ├── ProductUpdateGlobalProductRequest.json │ │ │ └── ProductUpdateGlobalProductResponse.json │ │ ├── ProductActivateProductsRequest.json │ │ ├── ProductActivateProductsResponse.json │ │ ├── ProductCreateProductListingCheckRequest.json │ │ ├── ProductCreateProductListingCheckResponse.json │ │ ├── ProductCreateProductRequest.json │ │ ├── ProductCreateProductResponse.json │ │ ├── ProductDeactivateProductsRequest.json │ │ ├── ProductDeactivateProductsResponse.json │ │ ├── ProductDeleteProductsRequest.json │ │ ├── ProductDeleteProductsResponse.json │ │ ├── ProductGetInventoriesRequest.json │ │ ├── ProductGetInventoriesResponse.json │ │ ├── ProductGetListingSchemasResponse.json │ │ ├── ProductGetPrerequisitesResponse.json │ │ ├── ProductGetProductDetailResponse.json │ │ ├── ProductGetProductDiagnosesResponse.json │ │ ├── ProductGetProductSEOWordsResponse.json │ │ ├── ProductGetProductSuggestionsResponse.json │ │ ├── ProductRecoverProductsRequest.json │ │ ├── ProductRecoverProductsResponse.json │ │ ├── ProductSearchProductsRequest.json │ │ ├── ProductSearchProductsResponse.json │ │ ├── ProductUpdateProductInventoryRequest.json │ │ ├── ProductUpdateProductInventoryResponse.json │ │ ├── ProductUpdateProductPartiallyRequest.json │ │ ├── ProductUpdateProductPartiallyResponse.json │ │ ├── ProductUpdateProductPriceRequest.json │ │ ├── ProductUpdateProductRequest.json │ │ ├── ProductUpdateProductResponse.json │ │ ├── SizeChart/ │ │ │ ├── ProductSearchSizeChartsRequest.json │ │ │ └── ProductSearchSizeChartsResponse.json │ │ └── Upload/ │ │ ├── ProductOptimizeImagesRequest.json │ │ ├── ProductOptimizeImagesResponse.json │ │ ├── ProductUploadFileResponse.json │ │ └── ProductUploadImageResponse.json │ ├── Promotion/ │ │ ├── Activity/ │ │ │ ├── PromotionCreateActivityRequest.json │ │ │ ├── PromotionCreateActivityResponse.json │ │ │ ├── PromotionDeactivateActivityResponse.json │ │ │ ├── PromotionDeleteActivityProductsRequest.json │ │ │ ├── PromotionDeleteActivityProductsResponse.json │ │ │ ├── PromotionGetActivityDetailResponse.json │ │ │ ├── PromotionSearchActivitiesRequest.json │ │ │ ├── PromotionSearchActivitiesResponse.json │ │ │ ├── PromotionUpdateActivityProductsRequest.json │ │ │ ├── PromotionUpdateActivityProductsResponse.json │ │ │ ├── PromotionUpdateActivityRequest.json │ │ │ └── PromotionUpdateActivityResponse.json │ │ └── Coupon/ │ │ ├── PromotionGetCouponDetailResponse.json │ │ ├── PromotionSearchCouponsRequest.json │ │ └── PromotionSearchCouponsResponse.json │ ├── ReturnRefund/ │ │ ├── Cancellations/ │ │ │ ├── ReturnRefundCreateCancellationRequest.json │ │ │ ├── ReturnRefundCreateCancellationResponse.json │ │ │ ├── ReturnRefundRejectCancellationRequest.json │ │ │ ├── ReturnRefundSearchCancellationsRequest.json │ │ │ └── ReturnRefundSearchCancellationsResponse.json │ │ ├── Orders/ │ │ │ └── ReturnRefundGetOrderAftersaleEligibilityResponse.json │ │ ├── Refunds/ │ │ │ ├── ReturnRefundCalculateRefundRequest.json │ │ │ └── ReturnRefundCalculateRefundResponse.json │ │ ├── ReturnRefundGetRejectReasonsResponse.json │ │ └── Returns/ │ │ ├── ReturnRefundApproveReturnRequest.json │ │ ├── ReturnRefundCreateReturnRequest.json │ │ ├── ReturnRefundCreateReturnResponse.json │ │ ├── ReturnRefundGetReturnRecordsResponse.json │ │ ├── ReturnRefundRejectReturnRequest.json │ │ ├── ReturnRefundSearchReturnsRequest.json │ │ └── ReturnRefundSearchReturnsResponse.json │ ├── Seller/ │ │ ├── SellerGetPermissionsResponse.json │ │ └── SellerGetShopsResponse.json │ ├── Shop/ │ │ └── AuthorizationGetShopsResponse.json │ └── SupplyChain/ │ ├── SupplyChainSyncPackagesRequest.json │ └── SupplyChainSyncPackagesResponse.json ├── SKIT.FlurlHttpClient.ByteDance.TikTokGlobalShop.UnitTests.csproj ├── TestCase_RequestSigningTests.cs ├── TestClients.cs ├── TestConfigs.cs └── appsettings.json