Skip to content

Commit

Permalink
Merge branch 'release/v1.3.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
bububa committed Oct 20, 2023
2 parents f0d0ccb + 9f19e33 commit ef89834
Show file tree
Hide file tree
Showing 24,404 changed files with 546,048 additions and 43,646 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,13 @@ import (

func main() {
clt := core.NewSDKClient(APP_KEY, APP_SECRET)
req := userModel.NewTaobaoUserAvatarGetRequest()
req := userModel.GetTaobaoUserAvatarGetAPIRequest()
defer userModel.PutTaobaoUserAvatarGetAPIRequest(req)
req.SetNick("nick")
resp, err := userApi.TaobaoUserAvatarGet(clt, req)
if err != nil {
resp := userModel.GetTaobaoUserAvatarGetAPIResponse()
defer userModel.PutTaobaoUserAvatarGetAPIResponse(resp)
accessToken := ""
if err := userApi.TaobaoUserAvatarGet(clt, req, resp, accessToken); err != nil {
log.Fatalln(err)
}
log.Printf("%+v\n", resp)
Expand Down
9 changes: 2 additions & 7 deletions api/admarket/YunosAdmarketAdBid.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// yunos.admarket.ad.bid
//
// 广告竞价服务
func YunosAdmarketAdBid(clt *core.SDKClient, req *admarket.YunosAdmarketAdBidAPIRequest, session string) (*admarket.YunosAdmarketAdBidAPIResponse, error) {
var resp admarket.YunosAdmarketAdBidAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func YunosAdmarketAdBid(clt *core.SDKClient, req *admarket.YunosAdmarketAdBidAPIRequest, resp *admarket.YunosAdmarketAdBidAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/admarket/YunosAdmarketMaterialAudit.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// yunos.admarket.material.audit
//
// 用于厂商上报广告平台审核结果
func YunosAdmarketMaterialAudit(clt *core.SDKClient, req *admarket.YunosAdmarketMaterialAuditAPIRequest, session string) (*admarket.YunosAdmarketMaterialAuditAPIResponse, error) {
var resp admarket.YunosAdmarketMaterialAuditAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func YunosAdmarketMaterialAudit(clt *core.SDKClient, req *admarket.YunosAdmarketMaterialAuditAPIRequest, resp *admarket.YunosAdmarketMaterialAuditAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aecreatives/AliexpressAffiliateCategoryGet.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.category.get
//
// 获取AE流量推广类目的API
func AliexpressAffiliateCategoryGet(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateCategoryGetAPIRequest, session string) (*aecreatives.AliexpressAffiliateCategoryGetAPIResponse, error) {
var resp aecreatives.AliexpressAffiliateCategoryGetAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateCategoryGet(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateCategoryGetAPIRequest, resp *aecreatives.AliexpressAffiliateCategoryGetAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aecreatives/AliexpressAffiliateFeaturedpromoGet.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.featuredpromo.get
//
// 获取联盟主题推广活动信息
func AliexpressAffiliateFeaturedpromoGet(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateFeaturedpromoGetAPIRequest, session string) (*aecreatives.AliexpressAffiliateFeaturedpromoGetAPIResponse, error) {
var resp aecreatives.AliexpressAffiliateFeaturedpromoGetAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateFeaturedpromoGet(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateFeaturedpromoGetAPIRequest, resp *aecreatives.AliexpressAffiliateFeaturedpromoGetAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.featuredpromo.products.get
//
// 根据联盟主题推广活动或主题品库查询对应的商品。如下品库为固定品库,可长期调用。品库类型和名称如下:高佣品(Hot Product)、新品(New Arrival)、热销商品(Best Seller)、每周尖货(weeklydeals)
func AliexpressAffiliateFeaturedpromoProductsGet(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateFeaturedpromoProductsGetAPIRequest, session string) (*aecreatives.AliexpressAffiliateFeaturedpromoProductsGetAPIResponse, error) {
var resp aecreatives.AliexpressAffiliateFeaturedpromoProductsGetAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateFeaturedpromoProductsGet(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateFeaturedpromoProductsGetAPIRequest, resp *aecreatives.AliexpressAffiliateFeaturedpromoProductsGetAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aecreatives/AliexpressAffiliateHotproductDownload.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.hotproduct.download
//
// 查询联盟爆品API
func AliexpressAffiliateHotproductDownload(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateHotproductDownloadAPIRequest, session string) (*aecreatives.AliexpressAffiliateHotproductDownloadAPIResponse, error) {
var resp aecreatives.AliexpressAffiliateHotproductDownloadAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateHotproductDownload(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateHotproductDownloadAPIRequest, resp *aecreatives.AliexpressAffiliateHotproductDownloadAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aecreatives/AliexpressAffiliateHotproductQuery.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.hotproduct.query
//
// 查询联盟爆品API
func AliexpressAffiliateHotproductQuery(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateHotproductQueryAPIRequest, session string) (*aecreatives.AliexpressAffiliateHotproductQueryAPIResponse, error) {
var resp aecreatives.AliexpressAffiliateHotproductQueryAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateHotproductQuery(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateHotproductQueryAPIRequest, resp *aecreatives.AliexpressAffiliateHotproductQueryAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aecreatives/AliexpressAffiliateImageSearch.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.image.search
//
// 图片搜索接口
func AliexpressAffiliateImageSearch(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateImageSearchAPIRequest, session string) (*aecreatives.AliexpressAffiliateImageSearchAPIResponse, error) {
var resp aecreatives.AliexpressAffiliateImageSearchAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateImageSearch(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateImageSearchAPIRequest, resp *aecreatives.AliexpressAffiliateImageSearchAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aecreatives/AliexpressAffiliateProductQuery.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.product.query
//
// 联盟推广商品搜索接口,用于搜索联盟推广商品数据
func AliexpressAffiliateProductQuery(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateProductQueryAPIRequest, session string) (*aecreatives.AliexpressAffiliateProductQueryAPIResponse, error) {
var resp aecreatives.AliexpressAffiliateProductQueryAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateProductQuery(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateProductQueryAPIRequest, resp *aecreatives.AliexpressAffiliateProductQueryAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aecreatives/AliexpressAffiliateProductSmartmatch.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.product.smartmatch
//
// 联盟物料算法智能推荐
func AliexpressAffiliateProductSmartmatch(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateProductSmartmatchAPIRequest, session string) (*aecreatives.AliexpressAffiliateProductSmartmatchAPIResponse, error) {
var resp aecreatives.AliexpressAffiliateProductSmartmatchAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateProductSmartmatch(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateProductSmartmatchAPIRequest, resp *aecreatives.AliexpressAffiliateProductSmartmatchAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aecreatives/AliexpressAffiliateProductdetailGet.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.productdetail.get
//
// 联盟推广商品搜索接口,用于搜索联盟推广商品数据
func AliexpressAffiliateProductdetailGet(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateProductdetailGetAPIRequest, session string) (*aecreatives.AliexpressAffiliateProductdetailGetAPIResponse, error) {
var resp aecreatives.AliexpressAffiliateProductdetailGetAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateProductdetailGet(clt *core.SDKClient, req *aecreatives.AliexpressAffiliateProductdetailGetAPIRequest, resp *aecreatives.AliexpressAffiliateProductdetailGetAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedata/AliexpressAffiliateOrderGet.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.order.get
//
// 联盟推广订单效果获取API
func AliexpressAffiliateOrderGet(clt *core.SDKClient, req *aedata.AliexpressAffiliateOrderGetAPIRequest, session string) (*aedata.AliexpressAffiliateOrderGetAPIResponse, error) {
var resp aedata.AliexpressAffiliateOrderGetAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateOrderGet(clt *core.SDKClient, req *aedata.AliexpressAffiliateOrderGetAPIRequest, resp *aedata.AliexpressAffiliateOrderGetAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedata/AliexpressAffiliateOrderList.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.order.list
//
// AE联盟推广者订单分页查询接口
func AliexpressAffiliateOrderList(clt *core.SDKClient, req *aedata.AliexpressAffiliateOrderListAPIRequest, session string) (*aedata.AliexpressAffiliateOrderListAPIResponse, error) {
var resp aedata.AliexpressAffiliateOrderListAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateOrderList(clt *core.SDKClient, req *aedata.AliexpressAffiliateOrderListAPIRequest, resp *aedata.AliexpressAffiliateOrderListAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedata/AliexpressAffiliateOrderListbyindex.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.affiliate.order.listbyindex
//
// AE联盟推广者订单按游标查询接口
func AliexpressAffiliateOrderListbyindex(clt *core.SDKClient, req *aedata.AliexpressAffiliateOrderListbyindexAPIRequest, session string) (*aedata.AliexpressAffiliateOrderListbyindexAPIResponse, error) {
var resp aedata.AliexpressAffiliateOrderListbyindexAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressAffiliateOrderListbyindex(clt *core.SDKClient, req *aedata.AliexpressAffiliateOrderListbyindexAPIRequest, resp *aedata.AliexpressAffiliateOrderListbyindexAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedropshiper/AliexpressDsAddInfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.ds.add.info
//
// ISV用户上报下游DS信息
func AliexpressDsAddInfo(clt *core.SDKClient, req *aedropshiper.AliexpressDsAddInfoAPIRequest, session string) (*aedropshiper.AliexpressDsAddInfoAPIResponse, error) {
var resp aedropshiper.AliexpressDsAddInfoAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressDsAddInfo(clt *core.SDKClient, req *aedropshiper.AliexpressDsAddInfoAPIRequest, resp *aedropshiper.AliexpressDsAddInfoAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedropshiper/AliexpressDsCommissionorderListbyindex.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.ds.commissionorder.listbyindex
//
// 联盟订单分页查询
func AliexpressDsCommissionorderListbyindex(clt *core.SDKClient, req *aedropshiper.AliexpressDsCommissionorderListbyindexAPIRequest, session string) (*aedropshiper.AliexpressDsCommissionorderListbyindexAPIResponse, error) {
var resp aedropshiper.AliexpressDsCommissionorderListbyindexAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressDsCommissionorderListbyindex(clt *core.SDKClient, req *aedropshiper.AliexpressDsCommissionorderListbyindexAPIRequest, resp *aedropshiper.AliexpressDsCommissionorderListbyindexAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedropshiper/AliexpressDsImageSearch.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.ds.image.search
//
// 图片搜索
func AliexpressDsImageSearch(clt *core.SDKClient, req *aedropshiper.AliexpressDsImageSearchAPIRequest, session string) (*aedropshiper.AliexpressDsImageSearchAPIResponse, error) {
var resp aedropshiper.AliexpressDsImageSearchAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressDsImageSearch(clt *core.SDKClient, req *aedropshiper.AliexpressDsImageSearchAPIRequest, resp *aedropshiper.AliexpressDsImageSearchAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedropshiper/AliexpressDsMemberOrderdataSubmit.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.ds.member.orderdata.submit
//
// dropshipper数据回流
func AliexpressDsMemberOrderdataSubmit(clt *core.SDKClient, req *aedropshiper.AliexpressDsMemberOrderdataSubmitAPIRequest, session string) (*aedropshiper.AliexpressDsMemberOrderdataSubmitAPIResponse, error) {
var resp aedropshiper.AliexpressDsMemberOrderdataSubmitAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressDsMemberOrderdataSubmit(clt *core.SDKClient, req *aedropshiper.AliexpressDsMemberOrderdataSubmitAPIRequest, resp *aedropshiper.AliexpressDsMemberOrderdataSubmitAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedropshiper/AliexpressDsProductGet.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.ds.product.get
//
// 商品信息查询
func AliexpressDsProductGet(clt *core.SDKClient, req *aedropshiper.AliexpressDsProductGetAPIRequest, session string) (*aedropshiper.AliexpressDsProductGetAPIResponse, error) {
var resp aedropshiper.AliexpressDsProductGetAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressDsProductGet(clt *core.SDKClient, req *aedropshiper.AliexpressDsProductGetAPIRequest, resp *aedropshiper.AliexpressDsProductGetAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedropshiper/AliexpressDsRecommendFeedGet.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.ds.recommend.feed.get
//
// 获取推荐商品信息流
func AliexpressDsRecommendFeedGet(clt *core.SDKClient, req *aedropshiper.AliexpressDsRecommendFeedGetAPIRequest, session string) (*aedropshiper.AliexpressDsRecommendFeedGetAPIResponse, error) {
var resp aedropshiper.AliexpressDsRecommendFeedGetAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressDsRecommendFeedGet(clt *core.SDKClient, req *aedropshiper.AliexpressDsRecommendFeedGetAPIRequest, resp *aedropshiper.AliexpressDsRecommendFeedGetAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedropshiper/AliexpressDsTradeOrderGet.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.ds.trade.order.get
//
// 交易订单查询
func AliexpressDsTradeOrderGet(clt *core.SDKClient, req *aedropshiper.AliexpressDsTradeOrderGetAPIRequest, session string) (*aedropshiper.AliexpressDsTradeOrderGetAPIResponse, error) {
var resp aedropshiper.AliexpressDsTradeOrderGetAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressDsTradeOrderGet(clt *core.SDKClient, req *aedropshiper.AliexpressDsTradeOrderGetAPIRequest, resp *aedropshiper.AliexpressDsTradeOrderGetAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedropshiper/AliexpressLogisticsBuyerFreightCalculate.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.logistics.buyer.freight.calculate
//
// 提供给买家使用的运费计算接口
func AliexpressLogisticsBuyerFreightCalculate(clt *core.SDKClient, req *aedropshiper.AliexpressLogisticsBuyerFreightCalculateAPIRequest, session string) (*aedropshiper.AliexpressLogisticsBuyerFreightCalculateAPIResponse, error) {
var resp aedropshiper.AliexpressLogisticsBuyerFreightCalculateAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressLogisticsBuyerFreightCalculate(clt *core.SDKClient, req *aedropshiper.AliexpressLogisticsBuyerFreightCalculateAPIRequest, resp *aedropshiper.AliexpressLogisticsBuyerFreightCalculateAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedropshiper/AliexpressLogisticsDsTrackinginfoQuery.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.logistics.ds.trackinginfo.query
//
// Dropshipper查询物流追踪信息
func AliexpressLogisticsDsTrackinginfoQuery(clt *core.SDKClient, req *aedropshiper.AliexpressLogisticsDsTrackinginfoQueryAPIRequest, session string) (*aedropshiper.AliexpressLogisticsDsTrackinginfoQueryAPIResponse, error) {
var resp aedropshiper.AliexpressLogisticsDsTrackinginfoQueryAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressLogisticsDsTrackinginfoQuery(clt *core.SDKClient, req *aedropshiper.AliexpressLogisticsDsTrackinginfoQueryAPIRequest, resp *aedropshiper.AliexpressLogisticsDsTrackinginfoQueryAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedropshiper/AliexpressOfferDsProductSimplequery.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.offer.ds.product.simplequery
//
// 提供给Dropshipper的通过商品ID查找商品简易信息(包括SKU-价格/库存、产品状态等)的接口,只有特定买家可以使用
func AliexpressOfferDsProductSimplequery(clt *core.SDKClient, req *aedropshiper.AliexpressOfferDsProductSimplequeryAPIRequest, session string) (*aedropshiper.AliexpressOfferDsProductSimplequeryAPIResponse, error) {
var resp aedropshiper.AliexpressOfferDsProductSimplequeryAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressOfferDsProductSimplequery(clt *core.SDKClient, req *aedropshiper.AliexpressOfferDsProductSimplequeryAPIRequest, resp *aedropshiper.AliexpressOfferDsProductSimplequeryAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.postproduct.redefining.findaeproductbyidfordropshipper
//
// 提供给Dropshipper的通过商品ID查找商品信息的接口,只有特定买家可以使用
func AliexpressPostproductRedefiningFindaeproductbyidfordropshipper(clt *core.SDKClient, req *aedropshiper.AliexpressPostproductRedefiningFindaeproductbyidfordropshipperAPIRequest, session string) (*aedropshiper.AliexpressPostproductRedefiningFindaeproductbyidfordropshipperAPIResponse, error) {
var resp aedropshiper.AliexpressPostproductRedefiningFindaeproductbyidfordropshipperAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressPostproductRedefiningFindaeproductbyidfordropshipper(clt *core.SDKClient, req *aedropshiper.AliexpressPostproductRedefiningFindaeproductbyidfordropshipperAPIRequest, resp *aedropshiper.AliexpressPostproductRedefiningFindaeproductbyidfordropshipperAPIResponse, session string) error {
return clt.Post(req, resp, session)
}
9 changes: 2 additions & 7 deletions api/aedropshiper/AliexpressTradeBuyPlaceorder.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ import (
// aliexpress.trade.buy.placeorder
//
// 150欧欧盟税改
func AliexpressTradeBuyPlaceorder(clt *core.SDKClient, req *aedropshiper.AliexpressTradeBuyPlaceorderAPIRequest, session string) (*aedropshiper.AliexpressTradeBuyPlaceorderAPIResponse, error) {
var resp aedropshiper.AliexpressTradeBuyPlaceorderAPIResponse
err := clt.Post(req, &resp, session)
if err != nil {
return nil, err
}
return &resp, nil
func AliexpressTradeBuyPlaceorder(clt *core.SDKClient, req *aedropshiper.AliexpressTradeBuyPlaceorderAPIRequest, resp *aedropshiper.AliexpressTradeBuyPlaceorderAPIResponse, session string) error {
return clt.Post(req, resp, session)
}

0 comments on commit ef89834

Please sign in to comment.