idle

package
v1.3.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 20, 2023 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Overview

Package idle 包含闲鱼相关结构体

https://open.taobao.com/API.htm?docType=2&docId=67023

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AddressDto

type AddressDto struct {
	// 区
	Area string `json:"area,omitempty" xml:"area,omitempty"`
	// 市
	City string `json:"city,omitempty" xml:"city,omitempty"`
	// 省
	Prov string `json:"prov,omitempty" xml:"prov,omitempty"`
}

AddressDto 结构体

type AgreementPayBillQueryParam

type AgreementPayBillQueryParam struct {
	// 订单号
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 业务编码:R1:回收
	PayBizCode string `json:"pay_biz_code,omitempty" xml:"pay_biz_code,omitempty"`
}

AgreementPayBillQueryParam 结构体

type AgreementPayParam

type AgreementPayParam struct {
	// 商户订单号(唯一建)
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 代扣计划
	PlanId string `json:"plan_id,omitempty" xml:"plan_id,omitempty"`
	// R1:闲鱼回收代扣(V1版本)
	PayBizCode string `json:"pay_biz_code,omitempty" xml:"pay_biz_code,omitempty"`
}

AgreementPayParam 结构体

type AgreementPayPlanParam

type AgreementPayPlanParam struct {
	// 需要拆分的扣款计划,注意只能拆一次只能支持5个 例如[10000,2300]
	Plans []int64 `json:"plans,omitempty" xml:"plans>int64,omitempty"`
	// 商户订单号(唯一建)
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// R1:闲鱼回收代扣(V1版本)
	PayBizCode string `json:"pay_biz_code,omitempty" xml:"pay_biz_code,omitempty"`
	// 订单代扣总金额(单位分)
	TotalAmount int64 `json:"total_amount,omitempty" xml:"total_amount,omitempty"`
}

AgreementPayPlanParam 结构体

type AlibabaidleadvmaterialuploadAPIRequest added in v1.3.1

type AlibabaidleadvmaterialuploadAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleadvmaterialuploadAPIRequest 闲鱼用户增长素材中心素材上传接口 API请求 alibaba.idle.adv.material.upload

闲鱼用户增长素材中心素材上传接口

func NewAlibabaidleadvmaterialuploadRequest added in v1.3.1

func NewAlibabaidleadvmaterialuploadRequest() *AlibabaidleadvmaterialuploadAPIRequest

NewAlibabaidleadvmaterialuploadRequest 初始化AlibabaidleadvmaterialuploadAPIRequest对象

func (AlibabaidleadvmaterialuploadAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidleadvmaterialuploadAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleadvmaterialuploadAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleadvmaterialuploadAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleadvmaterialuploadAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (AlibabaidleadvmaterialuploadAPIRequest) GetUploadTopParam added in v1.3.1

GetUploadTopParam UploadTopParam Getter

func (*AlibabaidleadvmaterialuploadAPIRequest) SetUploadTopParam added in v1.3.1

func (r *AlibabaidleadvmaterialuploadAPIRequest) SetUploadTopParam(_uploadTopParam *IdleAdvMaterialUploadTopParam) error

SetUploadTopParam is UploadTopParam Setter 素材上传参数

type AlibabaidleadvmaterialuploadAPIResponse added in v1.3.1

type AlibabaidleadvmaterialuploadAPIResponse struct {
	model.CommonResponse
	AlibabaidleadvmaterialuploadAPIResponseModel
}

AlibabaidleadvmaterialuploadAPIResponse 闲鱼用户增长素材中心素材上传接口 API返回值 alibaba.idle.adv.material.upload

闲鱼用户增长素材中心素材上传接口

type AlibabaidleadvmaterialuploadAPIResponseModel added in v1.3.1

type AlibabaidleadvmaterialuploadAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_adv_material_upload_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 1
	Result *IdleAdvResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleadvmaterialuploadAPIResponseModel is 闲鱼用户增长素材中心素材上传接口 成功返回结果

type AlibabaidleagreementpayAPIRequest added in v1.3.1

type AlibabaidleagreementpayAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleagreementpayAPIRequest 闲鱼平台商户代扣 API请求 alibaba.idle.agreement.pay

闲鱼平台代扣能力:用户和闲鱼签约代扣协议 服务商通过直付通产品挂载成为闲鱼二级商户 来完成用户和服务商的结算

func NewAlibabaidleagreementpayRequest added in v1.3.1

func NewAlibabaidleagreementpayRequest() *AlibabaidleagreementpayAPIRequest

NewAlibabaidleagreementpayRequest 初始化AlibabaidleagreementpayAPIRequest对象

func (AlibabaidleagreementpayAPIRequest) GetAgreementPayParam added in v1.3.1

func (r AlibabaidleagreementpayAPIRequest) GetAgreementPayParam() *AgreementPayParam

GetAgreementPayParam AgreementPayParam Getter

func (AlibabaidleagreementpayAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidleagreementpayAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleagreementpayAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleagreementpayAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleagreementpayAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleagreementpayAPIRequest) SetAgreementPayParam added in v1.3.1

func (r *AlibabaidleagreementpayAPIRequest) SetAgreementPayParam(_agreementPayParam *AgreementPayParam) error

SetAgreementPayParam is AgreementPayParam Setter 协议代扣参数

type AlibabaidleagreementpayAPIResponse added in v1.3.1

type AlibabaidleagreementpayAPIResponse struct {
	model.CommonResponse
	AlibabaidleagreementpayAPIResponseModel
}

AlibabaidleagreementpayAPIResponse 闲鱼平台商户代扣 API返回值 alibaba.idle.agreement.pay

闲鱼平台代扣能力:用户和闲鱼签约代扣协议 服务商通过直付通产品挂载成为闲鱼二级商户 来完成用户和服务商的结算

type AlibabaidleagreementpayAPIResponseModel added in v1.3.1

type AlibabaidleagreementpayAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_agreement_pay_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回model
	Result *AlibabaidleagreementpayResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleagreementpayAPIResponseModel is 闲鱼平台商户代扣 成功返回结果

type AlibabaidleagreementpayResult added in v1.3.1

type AlibabaidleagreementpayResult struct {
	// 错误code
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 服务出参
	Module *Serializable `json:"module,omitempty" xml:"module,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidleagreementpayResult 结构体

type AlibabaidleagreementpayqueryAPIRequest added in v1.3.1

type AlibabaidleagreementpayqueryAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleagreementpayqueryAPIRequest 代扣详情查询 API请求 alibaba.idle.agreement.pay.query

查询代扣结果

func NewAlibabaidleagreementpayqueryRequest added in v1.3.1

func NewAlibabaidleagreementpayqueryRequest() *AlibabaidleagreementpayqueryAPIRequest

NewAlibabaidleagreementpayqueryRequest 初始化AlibabaidleagreementpayqueryAPIRequest对象

func (AlibabaidleagreementpayqueryAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidleagreementpayqueryAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleagreementpayqueryAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleagreementpayqueryAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleagreementpayqueryAPIRequest) GetParam added in v1.3.1

GetParam Param Getter

func (AlibabaidleagreementpayqueryAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleagreementpayqueryAPIRequest) SetParam added in v1.3.1

SetParam is Param Setter 入参

type AlibabaidleagreementpayqueryAPIResponse added in v1.3.1

type AlibabaidleagreementpayqueryAPIResponse struct {
	model.CommonResponse
	AlibabaidleagreementpayqueryAPIResponseModel
}

AlibabaidleagreementpayqueryAPIResponse 代扣详情查询 API返回值 alibaba.idle.agreement.pay.query

查询代扣结果

type AlibabaidleagreementpayqueryAPIResponseModel added in v1.3.1

type AlibabaidleagreementpayqueryAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_agreement_pay_query_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回
	Result *AlibabaidleagreementpayqueryResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleagreementpayqueryAPIResponseModel is 代扣详情查询 成功返回结果

type AlibabaidleagreementpayqueryResult added in v1.3.1

type AlibabaidleagreementpayqueryResult struct {
	// err_code
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 账单查询结果
	Module *Serializable `json:"module,omitempty" xml:"module,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidleagreementpayqueryResult 结构体

type AlibabaidleappraiseorderperformAPIRequest added in v1.3.1

type AlibabaidleappraiseorderperformAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleappraiseorderperformAPIRequest 闲鱼验货宝服务商订单履约 API请求 alibaba.idle.appraise.order.perform

闲鱼验货担保业务中,外部服务商作为鉴定方 需要驱动交易节点变化

func NewAlibabaidleappraiseorderperformRequest added in v1.3.1

func NewAlibabaidleappraiseorderperformRequest() *AlibabaidleappraiseorderperformAPIRequest

NewAlibabaidleappraiseorderperformRequest 初始化AlibabaidleappraiseorderperformAPIRequest对象

func (AlibabaidleappraiseorderperformAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleappraiseorderperformAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleappraiseorderperformAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleappraiseorderperformAPIRequest) GetAppraiseOrderSynDto added in v1.3.1

GetAppraiseOrderSynDto AppraiseOrderSynDto Getter

func (AlibabaidleappraiseorderperformAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleappraiseorderperformAPIRequest) SetAppraiseOrderSynDto added in v1.3.1

func (r *AlibabaidleappraiseorderperformAPIRequest) SetAppraiseOrderSynDto(_appraiseOrderSynDto *AppraiseOrderSynDto) error

SetAppraiseOrderSynDto is AppraiseOrderSynDto Setter AppraiseOrderSynDto

type AlibabaidleappraiseorderperformAPIResponse added in v1.3.1

type AlibabaidleappraiseorderperformAPIResponse struct {
	model.CommonResponse
	AlibabaidleappraiseorderperformAPIResponseModel
}

AlibabaidleappraiseorderperformAPIResponse 闲鱼验货宝服务商订单履约 API返回值 alibaba.idle.appraise.order.perform

闲鱼验货担保业务中,外部服务商作为鉴定方 需要驱动交易节点变化

type AlibabaidleappraiseorderperformAPIResponseModel added in v1.3.1

type AlibabaidleappraiseorderperformAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_appraise_order_perform_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回model
	Result *AlibabaidleappraiseorderperformResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleappraiseorderperformAPIResponseModel is 闲鱼验货宝服务商订单履约 成功返回结果

type AlibabaidleappraiseorderperformResult added in v1.3.1

type AlibabaidleappraiseorderperformResult struct {
	// 错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 是否成功
	Succ bool `json:"succ,omitempty" xml:"succ,omitempty"`
}

AlibabaidleappraiseorderperformResult 结构体

type AlibabaidleappraiseorderqueryAPIRequest added in v1.3.1

type AlibabaidleappraiseorderqueryAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleappraiseorderqueryAPIRequest 闲鱼验货宝订单详情查询 API请求 alibaba.idle.appraise.order.query

鉴定商调用该接口获取订单状态

func NewAlibabaidleappraiseorderqueryRequest added in v1.3.1

func NewAlibabaidleappraiseorderqueryRequest() *AlibabaidleappraiseorderqueryAPIRequest

NewAlibabaidleappraiseorderqueryRequest 初始化AlibabaidleappraiseorderqueryAPIRequest对象

func (AlibabaidleappraiseorderqueryAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidleappraiseorderqueryAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleappraiseorderqueryAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleappraiseorderqueryAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleappraiseorderqueryAPIRequest) GetBizOrderId added in v1.3.1

GetBizOrderId BizOrderId Getter

func (AlibabaidleappraiseorderqueryAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleappraiseorderqueryAPIRequest) SetBizOrderId added in v1.3.1

func (r *AlibabaidleappraiseorderqueryAPIRequest) SetBizOrderId(_bizOrderId int64) error

SetBizOrderId is BizOrderId Setter orderId

type AlibabaidleappraiseorderqueryAPIResponse added in v1.3.1

type AlibabaidleappraiseorderqueryAPIResponse struct {
	model.CommonResponse
	AlibabaidleappraiseorderqueryAPIResponseModel
}

AlibabaidleappraiseorderqueryAPIResponse 闲鱼验货宝订单详情查询 API返回值 alibaba.idle.appraise.order.query

鉴定商调用该接口获取订单状态

type AlibabaidleappraiseorderqueryAPIResponseModel added in v1.3.1

type AlibabaidleappraiseorderqueryAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_appraise_order_query_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	Result *AlibabaidleappraiseorderqueryResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleappraiseorderqueryAPIResponseModel is 闲鱼验货宝订单详情查询 成功返回结果

type AlibabaidleappraiseorderqueryResult added in v1.3.1

type AlibabaidleappraiseorderqueryResult struct {
	// errCode
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// errMsg
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 订单信息
	Module *AppraiseOrderInfoDto `json:"module,omitempty" xml:"module,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidleappraiseorderqueryResult 结构体

type AlibabaidleappraisespuregistermodifyAPIRequest added in v1.3.1

type AlibabaidleappraisespuregistermodifyAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleappraisespuregistermodifyAPIRequest 验货宝服务商spu挂载 API请求 alibaba.idle.appraise.spu.register.modify

闲鱼接收回收商spu模板挂载信息

func NewAlibabaidleappraisespuregistermodifyRequest added in v1.3.1

func NewAlibabaidleappraisespuregistermodifyRequest() *AlibabaidleappraisespuregistermodifyAPIRequest

NewAlibabaidleappraisespuregistermodifyRequest 初始化AlibabaidleappraisespuregistermodifyAPIRequest对象

func (AlibabaidleappraisespuregistermodifyAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleappraisespuregistermodifyAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleappraisespuregistermodifyAPIRequest) GetIdleAppraiseSpuRegister4TopDto added in v1.3.1

GetIdleAppraiseSpuRegister4TopDto IdleAppraiseSpuRegister4TopDto Getter

func (AlibabaidleappraisespuregistermodifyAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleappraisespuregistermodifyAPIRequest) SetIdleAppraiseSpuRegister4TopDto added in v1.3.1

func (r *AlibabaidleappraisespuregistermodifyAPIRequest) SetIdleAppraiseSpuRegister4TopDto(_idleAppraiseSpuRegister4TopDto *IdleAppraiseSpuRegister4topDto) error

SetIdleAppraiseSpuRegister4TopDto is IdleAppraiseSpuRegister4TopDto Setter 入参

type AlibabaidleappraisespuregistermodifyAPIResponse added in v1.3.1

type AlibabaidleappraisespuregistermodifyAPIResponse struct {
	model.CommonResponse
	AlibabaidleappraisespuregistermodifyAPIResponseModel
}

AlibabaidleappraisespuregistermodifyAPIResponse 验货宝服务商spu挂载 API返回值 alibaba.idle.appraise.spu.register.modify

闲鱼接收回收商spu模板挂载信息

type AlibabaidleappraisespuregistermodifyAPIResponseModel added in v1.3.1

type AlibabaidleappraisespuregistermodifyAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_appraise_spu_register_modify_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	Result *AlibabaidleappraisespuregistermodifyResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleappraisespuregistermodifyAPIResponseModel is 验货宝服务商spu挂载 成功返回结果

type AlibabaidleappraisespuregistermodifyResult added in v1.3.1

type AlibabaidleappraisespuregistermodifyResult struct {
	// errCode
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// errMsg
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// spu挂载信息后台状态,0在线,-1删除,1测试中。当spu第一次挂载时,会进入1测试中状态。服务商联调通过后,需要再次挂载,actionType还传0,挂载信息状态会变成0已上线。
	Module int64 `json:"module,omitempty" xml:"module,omitempty"`
	// 是否挂载成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidleappraisespuregistermodifyResult 结构体

type AlibabaidleapprizeorderfulfillmentAPIRequest added in v1.3.1

type AlibabaidleapprizeorderfulfillmentAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleapprizeorderfulfillmentAPIRequest 鉴定担保资金订单履约 API请求 alibaba.idle.apprize.order.fulfillment

服务商针对自己的服务订单进行履约

func NewAlibabaidleapprizeorderfulfillmentRequest added in v1.3.1

func NewAlibabaidleapprizeorderfulfillmentRequest() *AlibabaidleapprizeorderfulfillmentAPIRequest

NewAlibabaidleapprizeorderfulfillmentRequest 初始化AlibabaidleapprizeorderfulfillmentAPIRequest对象

func (AlibabaidleapprizeorderfulfillmentAPIRequest) GetAction added in v1.3.1

GetAction Action Getter

func (AlibabaidleapprizeorderfulfillmentAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleapprizeorderfulfillmentAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleapprizeorderfulfillmentAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (AlibabaidleapprizeorderfulfillmentAPIRequest) GetWorkCardId added in v1.3.1

GetWorkCardId WorkCardId Getter

func (*AlibabaidleapprizeorderfulfillmentAPIRequest) SetAction added in v1.3.1

SetAction is Action Setter deal:服务商收取费用、refund:退款给付款方

func (*AlibabaidleapprizeorderfulfillmentAPIRequest) SetWorkCardId added in v1.3.1

func (r *AlibabaidleapprizeorderfulfillmentAPIRequest) SetWorkCardId(_workCardId int64) error

SetWorkCardId is WorkCardId Setter 天猫服务工单Id

type AlibabaidleapprizeorderfulfillmentAPIResponse added in v1.3.1

type AlibabaidleapprizeorderfulfillmentAPIResponse struct {
	model.CommonResponse
	AlibabaidleapprizeorderfulfillmentAPIResponseModel
}

AlibabaidleapprizeorderfulfillmentAPIResponse 鉴定担保资金订单履约 API返回值 alibaba.idle.apprize.order.fulfillment

服务商针对自己的服务订单进行履约

type AlibabaidleapprizeorderfulfillmentAPIResponseModel added in v1.3.1

type AlibabaidleapprizeorderfulfillmentAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_apprize_order_fulfillment_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 支付宝流水订单号
	AlipayOrderId string `json:"alipay_order_id,omitempty" xml:"alipay_order_id,omitempty"`
}

AlibabaidleapprizeorderfulfillmentAPIResponseModel is 鉴定担保资金订单履约 成功返回结果

type AlibabaidleautotradeisvorderstateprocessAPIRequest added in v1.3.1

type AlibabaidleautotradeisvorderstateprocessAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleautotradeisvorderstateprocessAPIRequest 闲鱼订单状态推进 API请求 alibaba.idle.autotrade.isv.order.state.process

闲鱼订单状态推进

func NewAlibabaidleautotradeisvorderstateprocessRequest added in v1.3.1

func NewAlibabaidleautotradeisvorderstateprocessRequest() *AlibabaidleautotradeisvorderstateprocessAPIRequest

NewAlibabaidleautotradeisvorderstateprocessRequest 初始化AlibabaidleautotradeisvorderstateprocessAPIRequest对象

func (AlibabaidleautotradeisvorderstateprocessAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleautotradeisvorderstateprocessAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleautotradeisvorderstateprocessAPIRequest) GetAutoTradeApiParam added in v1.3.1

GetAutoTradeApiParam AutoTradeApiParam Getter

func (AlibabaidleautotradeisvorderstateprocessAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleautotradeisvorderstateprocessAPIRequest) SetAutoTradeApiParam added in v1.3.1

func (r *AlibabaidleautotradeisvorderstateprocessAPIRequest) SetAutoTradeApiParam(_autoTradeApiParam *AutoTradeApiparam) error

SetAutoTradeApiParam is AutoTradeApiParam Setter AutoTradeAPI通用入参

type AlibabaidleautotradeisvorderstateprocessAPIResponse added in v1.3.1

type AlibabaidleautotradeisvorderstateprocessAPIResponse struct {
	model.CommonResponse
	AlibabaidleautotradeisvorderstateprocessAPIResponseModel
}

AlibabaidleautotradeisvorderstateprocessAPIResponse 闲鱼订单状态推进 API返回值 alibaba.idle.autotrade.isv.order.state.process

闲鱼订单状态推进

type AlibabaidleautotradeisvorderstateprocessAPIResponseModel added in v1.3.1

type AlibabaidleautotradeisvorderstateprocessAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_autotrade_isv_order_state_process_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回结果
	Result *CommonResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleautotradeisvorderstateprocessAPIResponseModel is 闲鱼订单状态推进 成功返回结果

type AlibabaidlecarorderqueryAPIRequest added in v1.3.1

type AlibabaidlecarorderqueryAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlecarorderqueryAPIRequest 二手车寄卖查询订单接口 API请求 alibaba.idle.car.order.query

二手车寄卖查询订单接口

func NewAlibabaidlecarorderqueryRequest added in v1.3.1

func NewAlibabaidlecarorderqueryRequest() *AlibabaidlecarorderqueryAPIRequest

NewAlibabaidlecarorderqueryRequest 初始化AlibabaidlecarorderqueryAPIRequest对象

func (AlibabaidlecarorderqueryAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlecarorderqueryAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlecarorderqueryAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlecarorderqueryAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlecarorderqueryAPIRequest) GetQuery added in v1.3.1

GetQuery Query Getter

func (AlibabaidlecarorderqueryAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlecarorderqueryAPIRequest) SetQuery added in v1.3.1

SetQuery is Query Setter 查询订单入参

type AlibabaidlecarorderqueryAPIResponse added in v1.3.1

type AlibabaidlecarorderqueryAPIResponse struct {
	model.CommonResponse
	AlibabaidlecarorderqueryAPIResponseModel
}

AlibabaidlecarorderqueryAPIResponse 二手车寄卖查询订单接口 API返回值 alibaba.idle.car.order.query

二手车寄卖查询订单接口

type AlibabaidlecarorderqueryAPIResponseModel added in v1.3.1

type AlibabaidlecarorderqueryAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_car_order_query_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回结果
	Result *AlibabaidlecarorderqueryResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlecarorderqueryAPIResponseModel is 二手车寄卖查询订单接口 成功返回结果

type AlibabaidlecarorderqueryResult added in v1.3.1

type AlibabaidlecarorderqueryResult struct {
	// 错误信息
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 返回结果
	Module *ConsignmentV2orderTo `json:"module,omitempty" xml:"module,omitempty"`
	// 成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlecarorderqueryResult 结构体

type AlibabaidleconsignmentiiordergetAPIRequest added in v1.3.1

type AlibabaidleconsignmentiiordergetAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleconsignmentiiordergetAPIRequest 闲鱼寄卖V2订单查询 API请求 alibaba.idle.consignmentii.order.get

闲鱼寄卖V2服务商以闲鱼交易买家身份查询订单信息

func NewAlibabaidleconsignmentiiordergetRequest added in v1.3.1

func NewAlibabaidleconsignmentiiordergetRequest() *AlibabaidleconsignmentiiordergetAPIRequest

NewAlibabaidleconsignmentiiordergetRequest 初始化AlibabaidleconsignmentiiordergetAPIRequest对象

func (AlibabaidleconsignmentiiordergetAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleconsignmentiiordergetAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleconsignmentiiordergetAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleconsignmentiiordergetAPIRequest) GetBizOrderId added in v1.3.1

GetBizOrderId BizOrderId Getter

func (AlibabaidleconsignmentiiordergetAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleconsignmentiiordergetAPIRequest) SetBizOrderId added in v1.3.1

func (r *AlibabaidleconsignmentiiordergetAPIRequest) SetBizOrderId(_bizOrderId int64) error

SetBizOrderId is BizOrderId Setter 闲鱼订单ID

type AlibabaidleconsignmentiiordergetAPIResponse added in v1.3.1

type AlibabaidleconsignmentiiordergetAPIResponse struct {
	model.CommonResponse
	AlibabaidleconsignmentiiordergetAPIResponseModel
}

AlibabaidleconsignmentiiordergetAPIResponse 闲鱼寄卖V2订单查询 API返回值 alibaba.idle.consignmentii.order.get

闲鱼寄卖V2服务商以闲鱼交易买家身份查询订单信息

type AlibabaidleconsignmentiiordergetAPIResponseModel added in v1.3.1

type AlibabaidleconsignmentiiordergetAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_consignmentii_order_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回model
	Result *AlibabaidleconsignmentiiordergetResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleconsignmentiiordergetAPIResponseModel is 闲鱼寄卖V2订单查询 成功返回结果

type AlibabaidleconsignmentiiordergetResult added in v1.3.1

type AlibabaidleconsignmentiiordergetResult struct {
	// 错误编码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 订单详情
	Module *ConsignmentV2orderTo `json:"module,omitempty" xml:"module,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidleconsignmentiiordergetResult 结构体

type AlibabaidleconsignmentiiorderperformAPIRequest added in v1.3.1

type AlibabaidleconsignmentiiorderperformAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleconsignmentiiorderperformAPIRequest 寄卖V2订单履约 API请求 alibaba.idle.consignmentii.order.perform

寄卖V2订单履约,服务商同步订单信息,驱动交易流转

func NewAlibabaidleconsignmentiiorderperformRequest added in v1.3.1

func NewAlibabaidleconsignmentiiorderperformRequest() *AlibabaidleconsignmentiiorderperformAPIRequest

NewAlibabaidleconsignmentiiorderperformRequest 初始化AlibabaidleconsignmentiiorderperformAPIRequest对象

func (AlibabaidleconsignmentiiorderperformAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleconsignmentiiorderperformAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleconsignmentiiorderperformAPIRequest) GetConsignmentV2OrderSynDto added in v1.3.1

GetConsignmentV2OrderSynDto ConsignmentV2OrderSynDto Getter

func (AlibabaidleconsignmentiiorderperformAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleconsignmentiiorderperformAPIRequest) SetConsignmentV2OrderSynDto added in v1.3.1

func (r *AlibabaidleconsignmentiiorderperformAPIRequest) SetConsignmentV2OrderSynDto(_consignmentV2OrderSynDto *ConsignmentV2orderSynDto) error

SetConsignmentV2OrderSynDto is ConsignmentV2OrderSynDto Setter 同步参数

type AlibabaidleconsignmentiiorderperformAPIResponse added in v1.3.1

type AlibabaidleconsignmentiiorderperformAPIResponse struct {
	model.CommonResponse
	AlibabaidleconsignmentiiorderperformAPIResponseModel
}

AlibabaidleconsignmentiiorderperformAPIResponse 寄卖V2订单履约 API返回值 alibaba.idle.consignmentii.order.perform

寄卖V2订单履约,服务商同步订单信息,驱动交易流转

type AlibabaidleconsignmentiiorderperformAPIResponseModel added in v1.3.1

type AlibabaidleconsignmentiiorderperformAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_consignmentii_order_perform_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回model
	Result *AlibabaidleconsignmentiiorderperformResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleconsignmentiiorderperformAPIResponseModel is 寄卖V2订单履约 成功返回结果

type AlibabaidleconsignmentiiorderperformResult added in v1.3.1

type AlibabaidleconsignmentiiorderperformResult struct {
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidleconsignmentiiorderperformResult 结构体

type AlibabaidleconsignmentordergetAPIRequest added in v1.3.1

type AlibabaidleconsignmentordergetAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleconsignmentordergetAPIRequest 闲鱼帮卖订单查询 API请求 alibaba.idle.consignment.order.get

闲鱼帮卖服务商以闲鱼交易买家身份查询订单信息

func NewAlibabaidleconsignmentordergetRequest added in v1.3.1

func NewAlibabaidleconsignmentordergetRequest() *AlibabaidleconsignmentordergetAPIRequest

NewAlibabaidleconsignmentordergetRequest 初始化AlibabaidleconsignmentordergetAPIRequest对象

func (AlibabaidleconsignmentordergetAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidleconsignmentordergetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleconsignmentordergetAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleconsignmentordergetAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleconsignmentordergetAPIRequest) GetBizOrderId added in v1.3.1

GetBizOrderId BizOrderId Getter

func (AlibabaidleconsignmentordergetAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleconsignmentordergetAPIRequest) SetBizOrderId added in v1.3.1

func (r *AlibabaidleconsignmentordergetAPIRequest) SetBizOrderId(_bizOrderId int64) error

SetBizOrderId is BizOrderId Setter 闲鱼订单ID

type AlibabaidleconsignmentordergetAPIResponse added in v1.3.1

type AlibabaidleconsignmentordergetAPIResponse struct {
	model.CommonResponse
	AlibabaidleconsignmentordergetAPIResponseModel
}

AlibabaidleconsignmentordergetAPIResponse 闲鱼帮卖订单查询 API返回值 alibaba.idle.consignment.order.get

闲鱼帮卖服务商以闲鱼交易买家身份查询订单信息

type AlibabaidleconsignmentordergetAPIResponseModel added in v1.3.1

type AlibabaidleconsignmentordergetAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_consignment_order_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回model
	Result *AlibabaidleconsignmentordergetResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleconsignmentordergetAPIResponseModel is 闲鱼帮卖订单查询 成功返回结果

type AlibabaidleconsignmentordergetResult added in v1.3.1

type AlibabaidleconsignmentordergetResult struct {
	// 错误编码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 帮卖订单详情
	Module *ConsignmentOrderTo `json:"module,omitempty" xml:"module,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidleconsignmentordergetResult 结构体

type AlibabaidleconsignmentorderperformAPIRequest added in v1.3.1

type AlibabaidleconsignmentorderperformAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleconsignmentorderperformAPIRequest 帮卖订单履约 API请求 alibaba.idle.consignment.order.perform

帮卖订单履约,回收商同步订单信息,驱动交易流转

func NewAlibabaidleconsignmentorderperformRequest added in v1.3.1

func NewAlibabaidleconsignmentorderperformRequest() *AlibabaidleconsignmentorderperformAPIRequest

NewAlibabaidleconsignmentorderperformRequest 初始化AlibabaidleconsignmentorderperformAPIRequest对象

func (AlibabaidleconsignmentorderperformAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleconsignmentorderperformAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleconsignmentorderperformAPIRequest) GetParam added in v1.3.1

GetParam Param Getter

func (AlibabaidleconsignmentorderperformAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleconsignmentorderperformAPIRequest) SetParam added in v1.3.1

SetParam is Param Setter 帮卖订单同步DTO

type AlibabaidleconsignmentorderperformAPIResponse added in v1.3.1

type AlibabaidleconsignmentorderperformAPIResponse struct {
	model.CommonResponse
	AlibabaidleconsignmentorderperformAPIResponseModel
}

AlibabaidleconsignmentorderperformAPIResponse 帮卖订单履约 API返回值 alibaba.idle.consignment.order.perform

帮卖订单履约,回收商同步订单信息,驱动交易流转

type AlibabaidleconsignmentorderperformAPIResponseModel added in v1.3.1

type AlibabaidleconsignmentorderperformAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_consignment_order_perform_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回model
	Result *AlibabaidleconsignmentorderperformResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleconsignmentorderperformAPIResponseModel is 帮卖订单履约 成功返回结果

type AlibabaidleconsignmentorderperformResult added in v1.3.1

type AlibabaidleconsignmentorderperformResult struct {
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidleconsignmentorderperformResult 结构体

type AlibabaidleconsignmentspustatisticsAPIRequest added in v1.3.1

type AlibabaidleconsignmentspustatisticsAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleconsignmentspustatisticsAPIRequest 闲鱼帮卖同步服务商交易统计信息 API请求 alibaba.idle.consignment.spu.statistics

闲鱼帮卖同步服务商交易统计信息

func NewAlibabaidleconsignmentspustatisticsRequest added in v1.3.1

func NewAlibabaidleconsignmentspustatisticsRequest() *AlibabaidleconsignmentspustatisticsAPIRequest

NewAlibabaidleconsignmentspustatisticsRequest 初始化AlibabaidleconsignmentspustatisticsAPIRequest对象

func (AlibabaidleconsignmentspustatisticsAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleconsignmentspustatisticsAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleconsignmentspustatisticsAPIRequest) GetParam added in v1.3.1

GetParam Param Getter

func (AlibabaidleconsignmentspustatisticsAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleconsignmentspustatisticsAPIRequest) SetParam added in v1.3.1

SetParam is Param Setter 入参

type AlibabaidleconsignmentspustatisticsAPIResponse added in v1.3.1

type AlibabaidleconsignmentspustatisticsAPIResponse struct {
	model.CommonResponse
	AlibabaidleconsignmentspustatisticsAPIResponseModel
}

AlibabaidleconsignmentspustatisticsAPIResponse 闲鱼帮卖同步服务商交易统计信息 API返回值 alibaba.idle.consignment.spu.statistics

闲鱼帮卖同步服务商交易统计信息

type AlibabaidleconsignmentspustatisticsAPIResponseModel added in v1.3.1

type AlibabaidleconsignmentspustatisticsAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_consignment_spu_statistics_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 是否成功
	Result bool `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleconsignmentspustatisticsAPIResponseModel is 闲鱼帮卖同步服务商交易统计信息 成功返回结果

type AlibabaidlegoosefishpromotionactivityinfoqueryAPIRequest added in v1.3.1

type AlibabaidlegoosefishpromotionactivityinfoqueryAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlegoosefishpromotionactivityinfoqueryAPIRequest 闲鱼三方活动参与信息查询 API请求 alibaba.idle.goosefish.promotion.activity.info.query

闲鱼三方活动参与信息查询

func NewAlibabaidlegoosefishpromotionactivityinfoqueryRequest added in v1.3.1

func NewAlibabaidlegoosefishpromotionactivityinfoqueryRequest() *AlibabaidlegoosefishpromotionactivityinfoqueryAPIRequest

NewAlibabaidlegoosefishpromotionactivityinfoqueryRequest 初始化AlibabaidlegoosefishpromotionactivityinfoqueryAPIRequest对象

func (AlibabaidlegoosefishpromotionactivityinfoqueryAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlegoosefishpromotionactivityinfoqueryAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlegoosefishpromotionactivityinfoqueryAPIRequest) GetPromotionActivityQueryParam added in v1.3.1

GetPromotionActivityQueryParam PromotionActivityQueryParam Getter

func (AlibabaidlegoosefishpromotionactivityinfoqueryAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlegoosefishpromotionactivityinfoqueryAPIRequest) SetPromotionActivityQueryParam added in v1.3.1

func (r *AlibabaidlegoosefishpromotionactivityinfoqueryAPIRequest) SetPromotionActivityQueryParam(_promotionActivityQueryParam *PromotionActivityQueryParam) error

SetPromotionActivityQueryParam is PromotionActivityQueryParam Setter 活动参与查询入参

type AlibabaidlegoosefishpromotionactivityinfoqueryAPIResponse added in v1.3.1

type AlibabaidlegoosefishpromotionactivityinfoqueryAPIResponse struct {
	model.CommonResponse
	AlibabaidlegoosefishpromotionactivityinfoqueryAPIResponseModel
}

AlibabaidlegoosefishpromotionactivityinfoqueryAPIResponse 闲鱼三方活动参与信息查询 API返回值 alibaba.idle.goosefish.promotion.activity.info.query

闲鱼三方活动参与信息查询

type AlibabaidlegoosefishpromotionactivityinfoqueryAPIResponseModel added in v1.3.1

type AlibabaidlegoosefishpromotionactivityinfoqueryAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_goosefish_promotion_activity_info_query_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 错误码
	ApiErrorCode string `json:"api_error_code,omitempty" xml:"api_error_code,omitempty"`
	// 错误说明
	ApiErrorMsg string `json:"api_error_msg,omitempty" xml:"api_error_msg,omitempty"`
	// 营销活动参与信息
	Data *PromotionActivityInfoVo `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	ApiSuccess bool `json:"api_success,omitempty" xml:"api_success,omitempty"`
}

AlibabaidlegoosefishpromotionactivityinfoqueryAPIResponseModel is 闲鱼三方活动参与信息查询 成功返回结果

type AlibabaidlegoosefishuserinfoqueryAPIRequest added in v1.3.1

type AlibabaidlegoosefishuserinfoqueryAPIRequest struct {
	model.Params
}

AlibabaidlegoosefishuserinfoqueryAPIRequest 闲鱼三方容器用户信息获取 API请求 alibaba.idle.goosefish.user.info.query

闲鱼三方容器用户信息获取

func NewAlibabaidlegoosefishuserinfoqueryRequest added in v1.3.1

func NewAlibabaidlegoosefishuserinfoqueryRequest() *AlibabaidlegoosefishuserinfoqueryAPIRequest

NewAlibabaidlegoosefishuserinfoqueryRequest 初始化AlibabaidlegoosefishuserinfoqueryAPIRequest对象

func (AlibabaidlegoosefishuserinfoqueryAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlegoosefishuserinfoqueryAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlegoosefishuserinfoqueryAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

type AlibabaidlegoosefishuserinfoqueryAPIResponse added in v1.3.1

type AlibabaidlegoosefishuserinfoqueryAPIResponse struct {
	model.CommonResponse
	AlibabaidlegoosefishuserinfoqueryAPIResponseModel
}

AlibabaidlegoosefishuserinfoqueryAPIResponse 闲鱼三方容器用户信息获取 API返回值 alibaba.idle.goosefish.user.info.query

闲鱼三方容器用户信息获取

type AlibabaidlegoosefishuserinfoqueryAPIResponseModel added in v1.3.1

type AlibabaidlegoosefishuserinfoqueryAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_goosefish_user_info_query_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 错误码
	ApiErrorCode string `json:"api_error_code,omitempty" xml:"api_error_code,omitempty"`
	// 错误说明
	ApiErrorMsg string `json:"api_error_msg,omitempty" xml:"api_error_msg,omitempty"`
	// 用户数据
	Data *IdleGooseFishUserInfoVo `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	ApiSuccess bool `json:"api_success,omitempty" xml:"api_success,omitempty"`
}

AlibabaidlegoosefishuserinfoqueryAPIResponseModel is 闲鱼三方容器用户信息获取 成功返回结果

type AlibabaidleisvgoosefishordercreateAPIRequest added in v1.3.1

type AlibabaidleisvgoosefishordercreateAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleisvgoosefishordercreateAPIRequest 闲鱼三方安康容器订单创建 API请求 alibaba.idle.isv.goosefish.order.create

闲鱼三方安康容器订单创建

func NewAlibabaidleisvgoosefishordercreateRequest added in v1.3.1

func NewAlibabaidleisvgoosefishordercreateRequest() *AlibabaidleisvgoosefishordercreateAPIRequest

NewAlibabaidleisvgoosefishordercreateRequest 初始化AlibabaidleisvgoosefishordercreateAPIRequest对象

func (AlibabaidleisvgoosefishordercreateAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleisvgoosefishordercreateAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleisvgoosefishordercreateAPIRequest) GetOrderCreateRequest added in v1.3.1

GetOrderCreateRequest OrderCreateRequest Getter

func (AlibabaidleisvgoosefishordercreateAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleisvgoosefishordercreateAPIRequest) SetOrderCreateRequest added in v1.3.1

func (r *AlibabaidleisvgoosefishordercreateAPIRequest) SetOrderCreateRequest(_orderCreateRequest *OrderCreateRequest) error

SetOrderCreateRequest is OrderCreateRequest Setter 创单请求参数

type AlibabaidleisvgoosefishordercreateAPIResponse added in v1.3.1

type AlibabaidleisvgoosefishordercreateAPIResponse struct {
	model.CommonResponse
	AlibabaidleisvgoosefishordercreateAPIResponseModel
}

AlibabaidleisvgoosefishordercreateAPIResponse 闲鱼三方安康容器订单创建 API返回值 alibaba.idle.isv.goosefish.order.create

闲鱼三方安康容器订单创建

type AlibabaidleisvgoosefishordercreateAPIResponseModel added in v1.3.1

type AlibabaidleisvgoosefishordercreateAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_isv_goosefish_order_create_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 错误码
	ApiErrorCode string `json:"api_error_code,omitempty" xml:"api_error_code,omitempty"`
	// 错误信息
	ApiErrorMsg string `json:"api_error_msg,omitempty" xml:"api_error_msg,omitempty"`
	// 创单结果
	Data *OrderCreateResult `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	ApiSuccess bool `json:"api_success,omitempty" xml:"api_success,omitempty"`
}

AlibabaidleisvgoosefishordercreateAPIResponseModel is 闲鱼三方安康容器订单创建 成功返回结果

type AlibabaidleisvitemrechargebatchremoveAPIRequest added in v1.3.1

type AlibabaidleisvitemrechargebatchremoveAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleisvitemrechargebatchremoveAPIRequest 闲鱼商品直充功能移除 API请求 alibaba.idle.isv.item.recharge.batch.remove

闲鱼商品直充功能移除

func NewAlibabaidleisvitemrechargebatchremoveRequest added in v1.3.1

func NewAlibabaidleisvitemrechargebatchremoveRequest() *AlibabaidleisvitemrechargebatchremoveAPIRequest

NewAlibabaidleisvitemrechargebatchremoveRequest 初始化AlibabaidleisvitemrechargebatchremoveAPIRequest对象

func (AlibabaidleisvitemrechargebatchremoveAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleisvitemrechargebatchremoveAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleisvitemrechargebatchremoveAPIRequest) GetIdleItemAutoRechargeBatchRemoveApiDo added in v1.3.1

GetIdleItemAutoRechargeBatchRemoveApiDo IdleItemAutoRechargeBatchRemoveApiDo Getter

func (AlibabaidleisvitemrechargebatchremoveAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleisvitemrechargebatchremoveAPIRequest) SetIdleItemAutoRechargeBatchRemoveApiDo added in v1.3.1

func (r *AlibabaidleisvitemrechargebatchremoveAPIRequest) SetIdleItemAutoRechargeBatchRemoveApiDo(_idleItemAutoRechargeBatchRemoveApiDo *IdleItemAutoRechargeBatchRemoveApiDo) error

SetIdleItemAutoRechargeBatchRemoveApiDo is IdleItemAutoRechargeBatchRemoveApiDo Setter 请求参数

type AlibabaidleisvitemrechargebatchremoveAPIResponse added in v1.3.1

type AlibabaidleisvitemrechargebatchremoveAPIResponse struct {
	model.CommonResponse
	AlibabaidleisvitemrechargebatchremoveAPIResponseModel
}

AlibabaidleisvitemrechargebatchremoveAPIResponse 闲鱼商品直充功能移除 API返回值 alibaba.idle.isv.item.recharge.batch.remove

闲鱼商品直充功能移除

type AlibabaidleisvitemrechargebatchremoveAPIResponseModel added in v1.3.1

type AlibabaidleisvitemrechargebatchremoveAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_isv_item_recharge_batch_remove_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 调用结果
	Result *TopListResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleisvitemrechargebatchremoveAPIResponseModel is 闲鱼商品直充功能移除 成功返回结果

type AlibabaidleisvitemrechargeeditAPIRequest added in v1.3.1

type AlibabaidleisvitemrechargeeditAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleisvitemrechargeeditAPIRequest 闲鱼商品直充功能编辑 API请求 alibaba.idle.isv.item.recharge.edit

闲鱼商品直充功能编辑

func NewAlibabaidleisvitemrechargeeditRequest added in v1.3.1

func NewAlibabaidleisvitemrechargeeditRequest() *AlibabaidleisvitemrechargeeditAPIRequest

NewAlibabaidleisvitemrechargeeditRequest 初始化AlibabaidleisvitemrechargeeditAPIRequest对象

func (AlibabaidleisvitemrechargeeditAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidleisvitemrechargeeditAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleisvitemrechargeeditAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleisvitemrechargeeditAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleisvitemrechargeeditAPIRequest) GetIdleItemApiAutoRechargeDo added in v1.3.1

func (r AlibabaidleisvitemrechargeeditAPIRequest) GetIdleItemApiAutoRechargeDo() *IdleItemApiAutoRechargeDo

GetIdleItemApiAutoRechargeDo IdleItemApiAutoRechargeDo Getter

func (AlibabaidleisvitemrechargeeditAPIRequest) GetItemId added in v1.3.1

GetItemId ItemId Getter

func (AlibabaidleisvitemrechargeeditAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleisvitemrechargeeditAPIRequest) SetIdleItemApiAutoRechargeDo added in v1.3.1

func (r *AlibabaidleisvitemrechargeeditAPIRequest) SetIdleItemApiAutoRechargeDo(_idleItemApiAutoRechargeDo *IdleItemApiAutoRechargeDo) error

SetIdleItemApiAutoRechargeDo is IdleItemApiAutoRechargeDo Setter 直充信息

func (*AlibabaidleisvitemrechargeeditAPIRequest) SetItemId added in v1.3.1

SetItemId is ItemId Setter 商品id

type AlibabaidleisvitemrechargeeditAPIResponse added in v1.3.1

type AlibabaidleisvitemrechargeeditAPIResponse struct {
	model.CommonResponse
	AlibabaidleisvitemrechargeeditAPIResponseModel
}

AlibabaidleisvitemrechargeeditAPIResponse 闲鱼商品直充功能编辑 API返回值 alibaba.idle.isv.item.recharge.edit

闲鱼商品直充功能编辑

type AlibabaidleisvitemrechargeeditAPIResponseModel added in v1.3.1

type AlibabaidleisvitemrechargeeditAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_isv_item_recharge_edit_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回结果
	Result *AlibabaidleisvitemrechargeeditTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleisvitemrechargeeditAPIResponseModel is 闲鱼商品直充功能编辑 成功返回结果

type AlibabaidleisvitemrechargeeditTopResult added in v1.3.1

type AlibabaidleisvitemrechargeeditTopResult struct {
	// 错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidleisvitemrechargeeditTopResult 结构体

type AlibabaidleisvorderdealrefundAPIRequest added in v1.3.1

type AlibabaidleisvorderdealrefundAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleisvorderdealrefundAPIRequest 闲鱼无忧购入仓模式服务商退款处理接口 API请求 alibaba.idle.isv.order.dealrefund

闲鱼无忧购业务入仓模式下,用户发起退款后,服务商使用此接口处理退款

func NewAlibabaidleisvorderdealrefundRequest added in v1.3.1

func NewAlibabaidleisvorderdealrefundRequest() *AlibabaidleisvorderdealrefundAPIRequest

NewAlibabaidleisvorderdealrefundRequest 初始化AlibabaidleisvorderdealrefundAPIRequest对象

func (AlibabaidleisvorderdealrefundAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidleisvorderdealrefundAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleisvorderdealrefundAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleisvorderdealrefundAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleisvorderdealrefundAPIRequest) GetParamAppraiseIsvRefundRequest added in v1.3.1

func (r AlibabaidleisvorderdealrefundAPIRequest) GetParamAppraiseIsvRefundRequest() *AppraiseIsvRefundRequest

GetParamAppraiseIsvRefundRequest ParamAppraiseIsvRefundRequest Getter

func (AlibabaidleisvorderdealrefundAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleisvorderdealrefundAPIRequest) SetParamAppraiseIsvRefundRequest added in v1.3.1

func (r *AlibabaidleisvorderdealrefundAPIRequest) SetParamAppraiseIsvRefundRequest(_paramAppraiseIsvRefundRequest *AppraiseIsvRefundRequest) error

SetParamAppraiseIsvRefundRequest is ParamAppraiseIsvRefundRequest Setter 退款参数

type AlibabaidleisvorderdealrefundAPIResponse added in v1.3.1

type AlibabaidleisvorderdealrefundAPIResponse struct {
	model.CommonResponse
	AlibabaidleisvorderdealrefundAPIResponseModel
}

AlibabaidleisvorderdealrefundAPIResponse 闲鱼无忧购入仓模式服务商退款处理接口 API返回值 alibaba.idle.isv.order.dealrefund

闲鱼无忧购业务入仓模式下,用户发起退款后,服务商使用此接口处理退款

type AlibabaidleisvorderdealrefundAPIResponseModel added in v1.3.1

type AlibabaidleisvorderdealrefundAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_isv_order_dealrefund_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 退款信息
	Module *RefundDto `json:"module,omitempty" xml:"module,omitempty"`
}

AlibabaidleisvorderdealrefundAPIResponseModel is 闲鱼无忧购入仓模式服务商退款处理接口 成功返回结果

type AlibabaidleonespuregisterupdateAPIRequest added in v1.3.1

type AlibabaidleonespuregisterupdateAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleonespuregisterupdateAPIRequest 闲鱼 ONESPU 挂载接口 API请求 alibaba.idle.onespu.register.update

闲鱼 ONESPU 挂载接口

func NewAlibabaidleonespuregisterupdateRequest added in v1.3.1

func NewAlibabaidleonespuregisterupdateRequest() *AlibabaidleonespuregisterupdateAPIRequest

NewAlibabaidleonespuregisterupdateRequest 初始化AlibabaidleonespuregisterupdateAPIRequest对象

func (AlibabaidleonespuregisterupdateAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleonespuregisterupdateAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleonespuregisterupdateAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleonespuregisterupdateAPIRequest) GetOneSpuSpRegisterUpdateParam added in v1.3.1

func (r AlibabaidleonespuregisterupdateAPIRequest) GetOneSpuSpRegisterUpdateParam() *OneSpuSpRegisterUpdateParam

GetOneSpuSpRegisterUpdateParam OneSpuSpRegisterUpdateParam Getter

func (AlibabaidleonespuregisterupdateAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleonespuregisterupdateAPIRequest) SetOneSpuSpRegisterUpdateParam added in v1.3.1

func (r *AlibabaidleonespuregisterupdateAPIRequest) SetOneSpuSpRegisterUpdateParam(_oneSpuSpRegisterUpdateParam *OneSpuSpRegisterUpdateParam) error

SetOneSpuSpRegisterUpdateParam is OneSpuSpRegisterUpdateParam Setter 入参

type AlibabaidleonespuregisterupdateAPIResponse added in v1.3.1

type AlibabaidleonespuregisterupdateAPIResponse struct {
	model.CommonResponse
	AlibabaidleonespuregisterupdateAPIResponseModel
}

AlibabaidleonespuregisterupdateAPIResponse 闲鱼 ONESPU 挂载接口 API返回值 alibaba.idle.onespu.register.update

闲鱼 ONESPU 挂载接口

type AlibabaidleonespuregisterupdateAPIResponseModel added in v1.3.1

type AlibabaidleonespuregisterupdateAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_onespu_register_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 结果
	Result *AlibabaidleonespuregisterupdateResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleonespuregisterupdateAPIResponseModel is 闲鱼 ONESPU 挂载接口 成功返回结果

type AlibabaidleonespuregisterupdateResult added in v1.3.1

type AlibabaidleonespuregisterupdateResult struct {
	// 错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 返回值
	Module string `json:"module,omitempty" xml:"module,omitempty"`
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidleonespuregisterupdateResult 结构体

type AlibabaidleorderdummysendAPIRequest added in v1.3.1

type AlibabaidleorderdummysendAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleorderdummysendAPIRequest 闲鱼无需物流发货 API请求 alibaba.idle.order.dummy.send

适用于电子卡券等虚拟商品不需要物流的商品发货。

func NewAlibabaidleorderdummysendRequest added in v1.3.1

func NewAlibabaidleorderdummysendRequest() *AlibabaidleorderdummysendAPIRequest

NewAlibabaidleorderdummysendRequest 初始化AlibabaidleorderdummysendAPIRequest对象

func (AlibabaidleorderdummysendAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidleorderdummysendAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleorderdummysendAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleorderdummysendAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleorderdummysendAPIRequest) GetParamOrderDummySendRequest added in v1.3.1

func (r AlibabaidleorderdummysendAPIRequest) GetParamOrderDummySendRequest() *OrderDummySendRequest

GetParamOrderDummySendRequest ParamOrderDummySendRequest Getter

func (AlibabaidleorderdummysendAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleorderdummysendAPIRequest) SetParamOrderDummySendRequest added in v1.3.1

func (r *AlibabaidleorderdummysendAPIRequest) SetParamOrderDummySendRequest(_paramOrderDummySendRequest *OrderDummySendRequest) error

SetParamOrderDummySendRequest is ParamOrderDummySendRequest Setter 请求

type AlibabaidleorderdummysendAPIResponse added in v1.3.1

type AlibabaidleorderdummysendAPIResponse struct {
	model.CommonResponse
	AlibabaidleorderdummysendAPIResponseModel
}

AlibabaidleorderdummysendAPIResponse 闲鱼无需物流发货 API返回值 alibaba.idle.order.dummy.send

适用于电子卡券等虚拟商品不需要物流的商品发货。

type AlibabaidleorderdummysendAPIResponseModel added in v1.3.1

type AlibabaidleorderdummysendAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_order_dummy_send_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回包装类
	Result *BaseResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleorderdummysendAPIResponseModel is 闲鱼无需物流发货 成功返回结果

type AlibabaidlepayplancreateAPIRequest added in v1.3.1

type AlibabaidlepayplancreateAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlepayplancreateAPIRequest 创建代扣计划 API请求 alibaba.idle.pay.plan.create

闲鱼平台代扣能力: 1、用户和闲鱼签约代扣协议 服务商通过直付通产品挂载成为闲鱼二级商户 来完成用户和服务商的结算 2、创建代扣计划

func NewAlibabaidlepayplancreateRequest added in v1.3.1

func NewAlibabaidlepayplancreateRequest() *AlibabaidlepayplancreateAPIRequest

NewAlibabaidlepayplancreateRequest 初始化AlibabaidlepayplancreateAPIRequest对象

func (AlibabaidlepayplancreateAPIRequest) GetAgreementPayPlanParam added in v1.3.1

func (r AlibabaidlepayplancreateAPIRequest) GetAgreementPayPlanParam() *AgreementPayPlanParam

GetAgreementPayPlanParam AgreementPayPlanParam Getter

func (AlibabaidlepayplancreateAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlepayplancreateAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlepayplancreateAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlepayplancreateAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlepayplancreateAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlepayplancreateAPIRequest) SetAgreementPayPlanParam added in v1.3.1

func (r *AlibabaidlepayplancreateAPIRequest) SetAgreementPayPlanParam(_agreementPayPlanParam *AgreementPayPlanParam) error

SetAgreementPayPlanParam is AgreementPayPlanParam Setter 业务入参

type AlibabaidlepayplancreateAPIResponse added in v1.3.1

type AlibabaidlepayplancreateAPIResponse struct {
	model.CommonResponse
	AlibabaidlepayplancreateAPIResponseModel
}

AlibabaidlepayplancreateAPIResponse 创建代扣计划 API返回值 alibaba.idle.pay.plan.create

闲鱼平台代扣能力: 1、用户和闲鱼签约代扣协议 服务商通过直付通产品挂载成为闲鱼二级商户 来完成用户和服务商的结算 2、创建代扣计划

type AlibabaidlepayplancreateAPIResponseModel added in v1.3.1

type AlibabaidlepayplancreateAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_pay_plan_create_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回model
	Result *AlibabaidlepayplancreateResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlepayplancreateAPIResponseModel is 创建代扣计划 成功返回结果

type AlibabaidlepayplancreateResult added in v1.3.1

type AlibabaidlepayplancreateResult struct {
	// 系统自动生成
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 系统自动生成
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 服务出参
	Module *Serializable `json:"module,omitempty" xml:"module,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlepayplancreateResult 结构体

type AlibabaidlerecycleinspectionreportAPIRequest added in v1.3.1

type AlibabaidlerecycleinspectionreportAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerecycleinspectionreportAPIRequest 鉴定报告 API请求 alibaba.idle.recycle.inspection.report

回收商鉴定报告

func NewAlibabaidlerecycleinspectionreportRequest added in v1.3.1

func NewAlibabaidlerecycleinspectionreportRequest() *AlibabaidlerecycleinspectionreportAPIRequest

NewAlibabaidlerecycleinspectionreportRequest 初始化AlibabaidlerecycleinspectionreportAPIRequest对象

func (AlibabaidlerecycleinspectionreportAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerecycleinspectionreportAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerecycleinspectionreportAPIRequest) GetInspectionReport added in v1.3.1

GetInspectionReport InspectionReport Getter

func (AlibabaidlerecycleinspectionreportAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerecycleinspectionreportAPIRequest) SetInspectionReport added in v1.3.1

func (r *AlibabaidlerecycleinspectionreportAPIRequest) SetInspectionReport(_inspectionReport *InspectionReport) error

SetInspectionReport is InspectionReport Setter 鉴定报告

type AlibabaidlerecycleinspectionreportAPIResponse added in v1.3.1

type AlibabaidlerecycleinspectionreportAPIResponse struct {
	model.CommonResponse
	AlibabaidlerecycleinspectionreportAPIResponseModel
}

AlibabaidlerecycleinspectionreportAPIResponse 鉴定报告 API返回值 alibaba.idle.recycle.inspection.report

回收商鉴定报告

type AlibabaidlerecycleinspectionreportAPIResponseModel added in v1.3.1

type AlibabaidlerecycleinspectionreportAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_recycle_inspection_report_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	Result *RecycleResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerecycleinspectionreportAPIResponseModel is 鉴定报告 成功返回结果

type AlibabaidlerecycleorderfulfillmentAPIRequest added in v1.3.1

type AlibabaidlerecycleorderfulfillmentAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerecycleorderfulfillmentAPIRequest 闲鱼回收订单履约V1 API请求 alibaba.idle.recycle.order.fulfillment

外部回收商针对自有回收订单的履行

func NewAlibabaidlerecycleorderfulfillmentRequest added in v1.3.1

func NewAlibabaidlerecycleorderfulfillmentRequest() *AlibabaidlerecycleorderfulfillmentAPIRequest

NewAlibabaidlerecycleorderfulfillmentRequest 初始化AlibabaidlerecycleorderfulfillmentAPIRequest对象

func (AlibabaidlerecycleorderfulfillmentAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerecycleorderfulfillmentAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerecycleorderfulfillmentAPIRequest) GetParam0 added in v1.3.1

GetParam0 Param0 Getter

func (AlibabaidlerecycleorderfulfillmentAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerecycleorderfulfillmentAPIRequest) SetParam0 added in v1.3.1

SetParam0 is Param0 Setter 订单同步入参

type AlibabaidlerecycleorderfulfillmentAPIResponse added in v1.3.1

type AlibabaidlerecycleorderfulfillmentAPIResponse struct {
	model.CommonResponse
	AlibabaidlerecycleorderfulfillmentAPIResponseModel
}

AlibabaidlerecycleorderfulfillmentAPIResponse 闲鱼回收订单履约V1 API返回值 alibaba.idle.recycle.order.fulfillment

外部回收商针对自有回收订单的履行

type AlibabaidlerecycleorderfulfillmentAPIResponseModel added in v1.3.1

type AlibabaidlerecycleorderfulfillmentAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_recycle_order_fulfillment_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	Result *AlibabaidlerecycleorderfulfillmentResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerecycleorderfulfillmentAPIResponseModel is 闲鱼回收订单履约V1 成功返回结果

type AlibabaidlerecycleorderfulfillmentResult added in v1.3.1

type AlibabaidlerecycleorderfulfillmentResult struct {
	// success
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerecycleorderfulfillmentResult 结构体

type AlibabaidlerecycleorderperformAPIRequest added in v1.3.1

type AlibabaidlerecycleorderperformAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerecycleorderperformAPIRequest 回收订单履约V2 API请求 alibaba.idle.recycle.order.perform

闲鱼回收业务中,外部服务商作为买家 需要驱动交易节点变化

func NewAlibabaidlerecycleorderperformRequest added in v1.3.1

func NewAlibabaidlerecycleorderperformRequest() *AlibabaidlerecycleorderperformAPIRequest

NewAlibabaidlerecycleorderperformRequest 初始化AlibabaidlerecycleorderperformAPIRequest对象

func (AlibabaidlerecycleorderperformAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlerecycleorderperformAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerecycleorderperformAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerecycleorderperformAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerecycleorderperformAPIRequest) GetParam0 added in v1.3.1

GetParam0 Param0 Getter

func (AlibabaidlerecycleorderperformAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerecycleorderperformAPIRequest) SetParam0 added in v1.3.1

SetParam0 is Param0 Setter 参数

type AlibabaidlerecycleorderperformAPIResponse added in v1.3.1

type AlibabaidlerecycleorderperformAPIResponse struct {
	model.CommonResponse
	AlibabaidlerecycleorderperformAPIResponseModel
}

AlibabaidlerecycleorderperformAPIResponse 回收订单履约V2 API返回值 alibaba.idle.recycle.order.perform

闲鱼回收业务中,外部服务商作为买家 需要驱动交易节点变化

type AlibabaidlerecycleorderperformAPIResponseModel added in v1.3.1

type AlibabaidlerecycleorderperformAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_recycle_order_perform_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 成功
	Result bool `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerecycleorderperformAPIResponseModel is 回收订单履约V2 成功返回结果

type AlibabaidlerecycleorderqueryAPIRequest added in v1.3.1

type AlibabaidlerecycleorderqueryAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerecycleorderqueryAPIRequest 闲鱼回收订单查询V1 API请求 alibaba.idle.recycle.order.query

查询回收订单

func NewAlibabaidlerecycleorderqueryRequest added in v1.3.1

func NewAlibabaidlerecycleorderqueryRequest() *AlibabaidlerecycleorderqueryAPIRequest

NewAlibabaidlerecycleorderqueryRequest 初始化AlibabaidlerecycleorderqueryAPIRequest对象

func (AlibabaidlerecycleorderqueryAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlerecycleorderqueryAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerecycleorderqueryAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerecycleorderqueryAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerecycleorderqueryAPIRequest) GetBizOrderId added in v1.3.1

GetBizOrderId BizOrderId Getter

func (AlibabaidlerecycleorderqueryAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (AlibabaidlerecycleorderqueryAPIRequest) GetRecycleSupplierId added in v1.3.1

func (r AlibabaidlerecycleorderqueryAPIRequest) GetRecycleSupplierId() int64

GetRecycleSupplierId RecycleSupplierId Getter

func (*AlibabaidlerecycleorderqueryAPIRequest) SetBizOrderId added in v1.3.1

func (r *AlibabaidlerecycleorderqueryAPIRequest) SetBizOrderId(_bizOrderId int64) error

SetBizOrderId is BizOrderId Setter 订单号

func (*AlibabaidlerecycleorderqueryAPIRequest) SetRecycleSupplierId added in v1.3.1

func (r *AlibabaidlerecycleorderqueryAPIRequest) SetRecycleSupplierId(_recycleSupplierId int64) error

SetRecycleSupplierId is RecycleSupplierId Setter 手淘商家的淘宝账号id

type AlibabaidlerecycleorderqueryAPIResponse added in v1.3.1

type AlibabaidlerecycleorderqueryAPIResponse struct {
	model.CommonResponse
	AlibabaidlerecycleorderqueryAPIResponseModel
}

AlibabaidlerecycleorderqueryAPIResponse 闲鱼回收订单查询V1 API返回值 alibaba.idle.recycle.order.query

查询回收订单

type AlibabaidlerecycleorderqueryAPIResponseModel added in v1.3.1

type AlibabaidlerecycleorderqueryAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_recycle_order_query_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	Result *AlibabaidlerecycleorderqueryResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerecycleorderqueryAPIResponseModel is 闲鱼回收订单查询V1 成功返回结果

type AlibabaidlerecycleorderqueryResult added in v1.3.1

type AlibabaidlerecycleorderqueryResult struct {
	// errMsg
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 订单信息
	Module *Serializable `json:"module,omitempty" xml:"module,omitempty"`
	// 成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerecycleorderqueryResult 结构体

type AlibabaidlerecycleordershowAPIRequest added in v1.3.1

type AlibabaidlerecycleordershowAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerecycleordershowAPIRequest 闲鱼回收订单查询V1.1 API请求 alibaba.idle.recycle.order.show

查询回收订单

func NewAlibabaidlerecycleordershowRequest added in v1.3.1

func NewAlibabaidlerecycleordershowRequest() *AlibabaidlerecycleordershowAPIRequest

NewAlibabaidlerecycleordershowRequest 初始化AlibabaidlerecycleordershowAPIRequest对象

func (AlibabaidlerecycleordershowAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlerecycleordershowAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerecycleordershowAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerecycleordershowAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerecycleordershowAPIRequest) GetBizOrderId added in v1.3.1

func (r AlibabaidlerecycleordershowAPIRequest) GetBizOrderId() int64

GetBizOrderId BizOrderId Getter

func (AlibabaidlerecycleordershowAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerecycleordershowAPIRequest) SetBizOrderId added in v1.3.1

func (r *AlibabaidlerecycleordershowAPIRequest) SetBizOrderId(_bizOrderId int64) error

SetBizOrderId is BizOrderId Setter 订单号

type AlibabaidlerecycleordershowAPIResponse added in v1.3.1

type AlibabaidlerecycleordershowAPIResponse struct {
	model.CommonResponse
	AlibabaidlerecycleordershowAPIResponseModel
}

AlibabaidlerecycleordershowAPIResponse 闲鱼回收订单查询V1.1 API返回值 alibaba.idle.recycle.order.show

查询回收订单

type AlibabaidlerecycleordershowAPIResponseModel added in v1.3.1

type AlibabaidlerecycleordershowAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_recycle_order_show_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	Result *AlibabaidlerecycleordershowResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerecycleordershowAPIResponseModel is 闲鱼回收订单查询V1.1 成功返回结果

type AlibabaidlerecycleordershowResult added in v1.3.1

type AlibabaidlerecycleordershowResult struct {
	// errMsg
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 订单信息
	Module *Serializable `json:"module,omitempty" xml:"module,omitempty"`
	// 成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerecycleordershowResult 结构体

type AlibabaidlerecyclesputemplatemodifyAPIRequest added in v1.3.1

type AlibabaidlerecyclesputemplatemodifyAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerecyclesputemplatemodifyAPIRequest 闲鱼接收回收商spu模板挂载信息 API请求 alibaba.idle.recycle.spu.template.modify

闲鱼接收回收商spu模板挂载信息

func NewAlibabaidlerecyclesputemplatemodifyRequest added in v1.3.1

func NewAlibabaidlerecyclesputemplatemodifyRequest() *AlibabaidlerecyclesputemplatemodifyAPIRequest

NewAlibabaidlerecyclesputemplatemodifyRequest 初始化AlibabaidlerecyclesputemplatemodifyAPIRequest对象

func (AlibabaidlerecyclesputemplatemodifyAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerecyclesputemplatemodifyAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerecyclesputemplatemodifyAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (AlibabaidlerecyclesputemplatemodifyAPIRequest) GetRecycleSpuTemplate added in v1.3.1

GetRecycleSpuTemplate RecycleSpuTemplate Getter

func (*AlibabaidlerecyclesputemplatemodifyAPIRequest) SetRecycleSpuTemplate added in v1.3.1

func (r *AlibabaidlerecyclesputemplatemodifyAPIRequest) SetRecycleSpuTemplate(_recycleSpuTemplate *RecycleSpuTemplate) error

SetRecycleSpuTemplate is RecycleSpuTemplate Setter 服务商支持的SPU挂载

type AlibabaidlerecyclesputemplatemodifyAPIResponse added in v1.3.1

type AlibabaidlerecyclesputemplatemodifyAPIResponse struct {
	model.CommonResponse
	AlibabaidlerecyclesputemplatemodifyAPIResponseModel
}

AlibabaidlerecyclesputemplatemodifyAPIResponse 闲鱼接收回收商spu模板挂载信息 API返回值 alibaba.idle.recycle.spu.template.modify

闲鱼接收回收商spu模板挂载信息

type AlibabaidlerecyclesputemplatemodifyAPIResponseModel added in v1.3.1

type AlibabaidlerecyclesputemplatemodifyAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_recycle_spu_template_modify_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 出参
	Result *RecycleResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerecyclesputemplatemodifyAPIResponseModel is 闲鱼接收回收商spu模板挂载信息 成功返回结果

type AlibabaidlerentitemaddAPIRequest added in v1.3.1

type AlibabaidlerentitemaddAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerentitemaddAPIRequest 租赁商品发布 API请求 alibaba.idle.rent.item.add

发布闲鱼租赁商品

func NewAlibabaidlerentitemaddRequest added in v1.3.1

func NewAlibabaidlerentitemaddRequest() *AlibabaidlerentitemaddAPIRequest

NewAlibabaidlerentitemaddRequest 初始化AlibabaidlerentitemaddAPIRequest对象

func (AlibabaidlerentitemaddAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlerentitemaddAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerentitemaddAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerentitemaddAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerentitemaddAPIRequest) GetParamRentItemDTO added in v1.3.1

func (r AlibabaidlerentitemaddAPIRequest) GetParamRentItemDTO() *RentItemDto

GetParamRentItemDTO ParamRentItemDTO Getter

func (AlibabaidlerentitemaddAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerentitemaddAPIRequest) SetParamRentItemDTO added in v1.3.1

func (r *AlibabaidlerentitemaddAPIRequest) SetParamRentItemDTO(_paramRentItemDTO *RentItemDto) error

SetParamRentItemDTO is ParamRentItemDTO Setter 商品信息

type AlibabaidlerentitemaddAPIResponse added in v1.3.1

type AlibabaidlerentitemaddAPIResponse struct {
	model.CommonResponse
	AlibabaidlerentitemaddAPIResponseModel
}

AlibabaidlerentitemaddAPIResponse 租赁商品发布 API返回值 alibaba.idle.rent.item.add

发布闲鱼租赁商品

type AlibabaidlerentitemaddAPIResponseModel added in v1.3.1

type AlibabaidlerentitemaddAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_rent_item_add_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 系统自动生成
	Result *AlibabaidlerentitemaddTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerentitemaddAPIResponseModel is 租赁商品发布 成功返回结果

type AlibabaidlerentitemaddTopResult added in v1.3.1

type AlibabaidlerentitemaddTopResult struct {
	// 错误码
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// 错误信息
	ErrorMessage string `json:"error_message,omitempty" xml:"error_message,omitempty"`
	// 商品id
	Data int64 `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerentitemaddTopResult 结构体

type AlibabaidlerentitemeditAPIRequest added in v1.3.1

type AlibabaidlerentitemeditAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerentitemeditAPIRequest 租赁商品编辑 API请求 alibaba.idle.rent.item.edit

发布闲鱼租赁商品

func NewAlibabaidlerentitemeditRequest added in v1.3.1

func NewAlibabaidlerentitemeditRequest() *AlibabaidlerentitemeditAPIRequest

NewAlibabaidlerentitemeditRequest 初始化AlibabaidlerentitemeditAPIRequest对象

func (AlibabaidlerentitemeditAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlerentitemeditAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerentitemeditAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerentitemeditAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerentitemeditAPIRequest) GetParamRentItemDTO added in v1.3.1

func (r AlibabaidlerentitemeditAPIRequest) GetParamRentItemDTO() *RentItemDto

GetParamRentItemDTO ParamRentItemDTO Getter

func (AlibabaidlerentitemeditAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerentitemeditAPIRequest) SetParamRentItemDTO added in v1.3.1

func (r *AlibabaidlerentitemeditAPIRequest) SetParamRentItemDTO(_paramRentItemDTO *RentItemDto) error

SetParamRentItemDTO is ParamRentItemDTO Setter 商品信息

type AlibabaidlerentitemeditAPIResponse added in v1.3.1

type AlibabaidlerentitemeditAPIResponse struct {
	model.CommonResponse
	AlibabaidlerentitemeditAPIResponseModel
}

AlibabaidlerentitemeditAPIResponse 租赁商品编辑 API返回值 alibaba.idle.rent.item.edit

发布闲鱼租赁商品

type AlibabaidlerentitemeditAPIResponseModel added in v1.3.1

type AlibabaidlerentitemeditAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_rent_item_edit_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 系统自动生成
	Result *AlibabaidlerentitemeditTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerentitemeditAPIResponseModel is 租赁商品编辑 成功返回结果

type AlibabaidlerentitemeditTopResult added in v1.3.1

type AlibabaidlerentitemeditTopResult struct {
	// 错误码
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// 错误信息
	ErrorMessage string `json:"error_message,omitempty" xml:"error_message,omitempty"`
	// 是否更新成功
	Data bool `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerentitemeditTopResult 结构体

type AlibabaidlerentitemqueryAPIRequest added in v1.3.1

type AlibabaidlerentitemqueryAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerentitemqueryAPIRequest 查询租赁商品信息 API请求 alibaba.idle.rent.item.query

查询租赁商品信息

func NewAlibabaidlerentitemqueryRequest added in v1.3.1

func NewAlibabaidlerentitemqueryRequest() *AlibabaidlerentitemqueryAPIRequest

NewAlibabaidlerentitemqueryRequest 初始化AlibabaidlerentitemqueryAPIRequest对象

func (AlibabaidlerentitemqueryAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlerentitemqueryAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerentitemqueryAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerentitemqueryAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerentitemqueryAPIRequest) GetItemId added in v1.3.1

GetItemId ItemId Getter

func (AlibabaidlerentitemqueryAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerentitemqueryAPIRequest) SetItemId added in v1.3.1

func (r *AlibabaidlerentitemqueryAPIRequest) SetItemId(_itemId int64) error

SetItemId is ItemId Setter 商品id

type AlibabaidlerentitemqueryAPIResponse added in v1.3.1

type AlibabaidlerentitemqueryAPIResponse struct {
	model.CommonResponse
	AlibabaidlerentitemqueryAPIResponseModel
}

AlibabaidlerentitemqueryAPIResponse 查询租赁商品信息 API返回值 alibaba.idle.rent.item.query

查询租赁商品信息

type AlibabaidlerentitemqueryAPIResponseModel added in v1.3.1

type AlibabaidlerentitemqueryAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_rent_item_query_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回model
	Result *AlibabaidlerentitemqueryResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerentitemqueryAPIResponseModel is 查询租赁商品信息 成功返回结果

type AlibabaidlerentitemqueryData added in v1.3.1

type AlibabaidlerentitemqueryData struct {
	// 商品sku信息
	ItemSkuList []ItemSkuDto `json:"item_sku_list,omitempty" xml:"item_sku_list>item_sku_dto,omitempty"`
	// 标题
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 描述
	Desc string `json:"desc,omitempty" xml:"desc,omitempty"`
	// 新旧水平
	UsedLevel int64 `json:"used_level,omitempty" xml:"used_level,omitempty"`
	// 库存
	Quantity int64 `json:"quantity,omitempty" xml:"quantity,omitempty"`
	// 地址信息
	Address *AddressDto `json:"address,omitempty" xml:"address,omitempty"`
	// 商品id
	ItemId int64 `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 价格信息
	PriceInfo *PriceDto `json:"price_info,omitempty" xml:"price_info,omitempty"`
	// 商品状态
	Status int64 `json:"status,omitempty" xml:"status,omitempty"`
	// 运费模板id
	TemplateId int64 `json:"template_id,omitempty" xml:"template_id,omitempty"`
}

AlibabaidlerentitemqueryData 结构体

type AlibabaidlerentitemqueryResult added in v1.3.1

type AlibabaidlerentitemqueryResult struct {
	// 错误描述
	ErrorMessage string `json:"error_message,omitempty" xml:"error_message,omitempty"`
	// 错误码
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// 返回素材id
	Data *AlibabaidlerentitemqueryData `json:"data,omitempty" xml:"data,omitempty"`
	// 数据是否可用
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerentitemqueryResult 结构体

type AlibabaidlerentitemskuupdateAPIRequest added in v1.3.1

type AlibabaidlerentitemskuupdateAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerentitemskuupdateAPIRequest 更新/增加sku信息 API请求 alibaba.idle.rent.item.sku.update

更新/增加sku信息

func NewAlibabaidlerentitemskuupdateRequest added in v1.3.1

func NewAlibabaidlerentitemskuupdateRequest() *AlibabaidlerentitemskuupdateAPIRequest

NewAlibabaidlerentitemskuupdateRequest 初始化AlibabaidlerentitemskuupdateAPIRequest对象

func (AlibabaidlerentitemskuupdateAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlerentitemskuupdateAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerentitemskuupdateAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerentitemskuupdateAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerentitemskuupdateAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (AlibabaidlerentitemskuupdateAPIRequest) GetSku added in v1.3.1

GetSku Sku Getter

func (*AlibabaidlerentitemskuupdateAPIRequest) SetSku added in v1.3.1

SetSku is Sku Setter sku信息,更新后skuId保持不变

type AlibabaidlerentitemskuupdateAPIResponse added in v1.3.1

type AlibabaidlerentitemskuupdateAPIResponse struct {
	model.CommonResponse
	AlibabaidlerentitemskuupdateAPIResponseModel
}

AlibabaidlerentitemskuupdateAPIResponse 更新/增加sku信息 API返回值 alibaba.idle.rent.item.sku.update

更新/增加sku信息

type AlibabaidlerentitemskuupdateAPIResponseModel added in v1.3.1

type AlibabaidlerentitemskuupdateAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_rent_item_sku_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 系统自动生成
	Result *AlibabaidlerentitemskuupdateTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerentitemskuupdateAPIResponseModel is 更新/增加sku信息 成功返回结果

type AlibabaidlerentitemskuupdateTopResult added in v1.3.1

type AlibabaidlerentitemskuupdateTopResult struct {
	// 错误信息
	ErrorMessage string `json:"error_message,omitempty" xml:"error_message,omitempty"`
	// 错误码
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// data
	Data bool `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerentitemskuupdateTopResult 结构体

type AlibabaidlerentmediauploadAPIRequest added in v1.3.1

type AlibabaidlerentmediauploadAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerentmediauploadAPIRequest 闲鱼多媒体上传接口 API请求 alibaba.idle.rent.media.upload

上传多媒体信息,包括图片、视频(暂不支持)

func NewAlibabaidlerentmediauploadRequest added in v1.3.1

func NewAlibabaidlerentmediauploadRequest() *AlibabaidlerentmediauploadAPIRequest

NewAlibabaidlerentmediauploadRequest 初始化AlibabaidlerentmediauploadAPIRequest对象

func (AlibabaidlerentmediauploadAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlerentmediauploadAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerentmediauploadAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerentmediauploadAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerentmediauploadAPIRequest) GetData added in v1.3.1

GetData Data Getter

func (AlibabaidlerentmediauploadAPIRequest) GetName added in v1.3.1

GetName Name Getter

func (AlibabaidlerentmediauploadAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (AlibabaidlerentmediauploadAPIRequest) GetType added in v1.3.1

GetType Type Getter

func (*AlibabaidlerentmediauploadAPIRequest) SetData added in v1.3.1

SetData is Data Setter 多媒体字节数组

func (*AlibabaidlerentmediauploadAPIRequest) SetName added in v1.3.1

SetName is Name Setter 文件名

func (*AlibabaidlerentmediauploadAPIRequest) SetType added in v1.3.1

SetType is Type Setter 0-表示图片,1-表示视频(暂不支持)

type AlibabaidlerentmediauploadAPIResponse added in v1.3.1

type AlibabaidlerentmediauploadAPIResponse struct {
	model.CommonResponse
	AlibabaidlerentmediauploadAPIResponseModel
}

AlibabaidlerentmediauploadAPIResponse 闲鱼多媒体上传接口 API返回值 alibaba.idle.rent.media.upload

上传多媒体信息,包括图片、视频(暂不支持)

type AlibabaidlerentmediauploadAPIResponseModel added in v1.3.1

type AlibabaidlerentmediauploadAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_rent_media_upload_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 响应数据
	Result *AlibabaidlerentmediauploadTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerentmediauploadAPIResponseModel is 闲鱼多媒体上传接口 成功返回结果

type AlibabaidlerentmediauploadTopResult added in v1.3.1

type AlibabaidlerentmediauploadTopResult struct {
	// 错误信息
	ErrorMessage string `json:"error_message,omitempty" xml:"error_message,omitempty"`
	// 错误码
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// 媒体文件id
	Data int64 `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerentmediauploadTopResult 结构体

type AlibabaidlerentordercheckstatusuploadAPIRequest added in v1.3.1

type AlibabaidlerentordercheckstatusuploadAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerentordercheckstatusuploadAPIRequest 上传验收结果 API请求 alibaba.idle.rent.order.checkstatus.upload

上传验收结果

func NewAlibabaidlerentordercheckstatusuploadRequest added in v1.3.1

func NewAlibabaidlerentordercheckstatusuploadRequest() *AlibabaidlerentordercheckstatusuploadAPIRequest

NewAlibabaidlerentordercheckstatusuploadRequest 初始化AlibabaidlerentordercheckstatusuploadAPIRequest对象

func (AlibabaidlerentordercheckstatusuploadAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerentordercheckstatusuploadAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerentordercheckstatusuploadAPIRequest) GetCheckResult added in v1.3.1

GetCheckResult CheckResult Getter

func (AlibabaidlerentordercheckstatusuploadAPIRequest) GetOrderId added in v1.3.1

GetOrderId OrderId Getter

func (AlibabaidlerentordercheckstatusuploadAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerentordercheckstatusuploadAPIRequest) SetCheckResult added in v1.3.1

func (r *AlibabaidlerentordercheckstatusuploadAPIRequest) SetCheckResult(_checkResult *CheckResultDto) error

SetCheckResult is CheckResult Setter 校验结果

func (*AlibabaidlerentordercheckstatusuploadAPIRequest) SetOrderId added in v1.3.1

SetOrderId is OrderId Setter 订单id

type AlibabaidlerentordercheckstatusuploadAPIResponse added in v1.3.1

type AlibabaidlerentordercheckstatusuploadAPIResponse struct {
	model.CommonResponse
	AlibabaidlerentordercheckstatusuploadAPIResponseModel
}

AlibabaidlerentordercheckstatusuploadAPIResponse 上传验收结果 API返回值 alibaba.idle.rent.order.checkstatus.upload

上传验收结果

type AlibabaidlerentordercheckstatusuploadAPIResponseModel added in v1.3.1

type AlibabaidlerentordercheckstatusuploadAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_rent_order_checkstatus_upload_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 系统自动生成
	Result *AlibabaidlerentordercheckstatusuploadTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerentordercheckstatusuploadAPIResponseModel is 上传验收结果 成功返回结果

type AlibabaidlerentordercheckstatusuploadTopResult added in v1.3.1

type AlibabaidlerentordercheckstatusuploadTopResult struct {
	// 错误码
	ErrorMessage string `json:"error_message,omitempty" xml:"error_message,omitempty"`
	// 错误信息
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// data
	Data bool `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerentordercheckstatusuploadTopResult 结构体

type AlibabaidlerentorderlogisticsdeliverAPIRequest added in v1.3.1

type AlibabaidlerentorderlogisticsdeliverAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerentorderlogisticsdeliverAPIRequest 创建揽收物流 API请求 alibaba.idle.rent.order.logistics.deliver

创建揽收物流 商家去物流公司创建物流订单

func NewAlibabaidlerentorderlogisticsdeliverRequest added in v1.3.1

func NewAlibabaidlerentorderlogisticsdeliverRequest() *AlibabaidlerentorderlogisticsdeliverAPIRequest

NewAlibabaidlerentorderlogisticsdeliverRequest 初始化AlibabaidlerentorderlogisticsdeliverAPIRequest对象

func (AlibabaidlerentorderlogisticsdeliverAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerentorderlogisticsdeliverAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerentorderlogisticsdeliverAPIRequest) GetLogistics added in v1.3.1

GetLogistics Logistics Getter

func (AlibabaidlerentorderlogisticsdeliverAPIRequest) GetOrderId added in v1.3.1

GetOrderId OrderId Getter

func (AlibabaidlerentorderlogisticsdeliverAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerentorderlogisticsdeliverAPIRequest) SetLogistics added in v1.3.1

SetLogistics is Logistics Setter 物流信息

func (*AlibabaidlerentorderlogisticsdeliverAPIRequest) SetOrderId added in v1.3.1

SetOrderId is OrderId Setter 订单id

type AlibabaidlerentorderlogisticsdeliverAPIResponse added in v1.3.1

type AlibabaidlerentorderlogisticsdeliverAPIResponse struct {
	model.CommonResponse
	AlibabaidlerentorderlogisticsdeliverAPIResponseModel
}

AlibabaidlerentorderlogisticsdeliverAPIResponse 创建揽收物流 API返回值 alibaba.idle.rent.order.logistics.deliver

创建揽收物流 商家去物流公司创建物流订单

type AlibabaidlerentorderlogisticsdeliverAPIResponseModel added in v1.3.1

type AlibabaidlerentorderlogisticsdeliverAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_rent_order_logistics_deliver_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 系统自动生成
	Result *AlibabaidlerentorderlogisticsdeliverTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerentorderlogisticsdeliverAPIResponseModel is 创建揽收物流 成功返回结果

type AlibabaidlerentorderlogisticsdeliverTopResult added in v1.3.1

type AlibabaidlerentorderlogisticsdeliverTopResult struct {
	// 错误信息
	ErrorMessage string `json:"error_message,omitempty" xml:"error_message,omitempty"`
	// 错误码
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// data
	Data bool `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerentorderlogisticsdeliverTopResult 结构体

type AlibabaidlerentorderpackageAPIRequest added in v1.3.1

type AlibabaidlerentorderpackageAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerentorderpackageAPIRequest 确认揽收商品 API请求 alibaba.idle.rent.order.package

确认揽收

func NewAlibabaidlerentorderpackageRequest added in v1.3.1

func NewAlibabaidlerentorderpackageRequest() *AlibabaidlerentorderpackageAPIRequest

NewAlibabaidlerentorderpackageRequest 初始化AlibabaidlerentorderpackageAPIRequest对象

func (AlibabaidlerentorderpackageAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlerentorderpackageAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerentorderpackageAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerentorderpackageAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerentorderpackageAPIRequest) GetLogistics added in v1.3.1

GetLogistics Logistics Getter

func (AlibabaidlerentorderpackageAPIRequest) GetOrderId added in v1.3.1

GetOrderId OrderId Getter

func (AlibabaidlerentorderpackageAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerentorderpackageAPIRequest) SetLogistics added in v1.3.1

func (r *AlibabaidlerentorderpackageAPIRequest) SetLogistics(_logistics *LogisticsDto) error

SetLogistics is Logistics Setter 物流信息

func (*AlibabaidlerentorderpackageAPIRequest) SetOrderId added in v1.3.1

func (r *AlibabaidlerentorderpackageAPIRequest) SetOrderId(_orderId int64) error

SetOrderId is OrderId Setter 订单id

type AlibabaidlerentorderpackageAPIResponse added in v1.3.1

type AlibabaidlerentorderpackageAPIResponse struct {
	model.CommonResponse
	AlibabaidlerentorderpackageAPIResponseModel
}

AlibabaidlerentorderpackageAPIResponse 确认揽收商品 API返回值 alibaba.idle.rent.order.package

确认揽收

type AlibabaidlerentorderpackageAPIResponseModel added in v1.3.1

type AlibabaidlerentorderpackageAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_rent_order_package_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 系统自动生成
	Result *AlibabaidlerentorderpackageTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerentorderpackageAPIResponseModel is 确认揽收商品 成功返回结果

type AlibabaidlerentorderpackageTopResult added in v1.3.1

type AlibabaidlerentorderpackageTopResult struct {
	// 错误码
	ErrorMessage string `json:"error_message,omitempty" xml:"error_message,omitempty"`
	// 错误信息
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// data
	Data bool `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerentorderpackageTopResult 结构体

type AlibabaidlerentorderqueryAPIRequest added in v1.3.1

type AlibabaidlerentorderqueryAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerentorderqueryAPIRequest 查询订单 API请求 alibaba.idle.rent.order.query

查询订单信息

func NewAlibabaidlerentorderqueryRequest added in v1.3.1

func NewAlibabaidlerentorderqueryRequest() *AlibabaidlerentorderqueryAPIRequest

NewAlibabaidlerentorderqueryRequest 初始化AlibabaidlerentorderqueryAPIRequest对象

func (AlibabaidlerentorderqueryAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlerentorderqueryAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerentorderqueryAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerentorderqueryAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerentorderqueryAPIRequest) GetOrderId added in v1.3.1

GetOrderId OrderId Getter

func (AlibabaidlerentorderqueryAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerentorderqueryAPIRequest) SetOrderId added in v1.3.1

func (r *AlibabaidlerentorderqueryAPIRequest) SetOrderId(_orderId int64) error

SetOrderId is OrderId Setter 订单id

type AlibabaidlerentorderqueryAPIResponse added in v1.3.1

type AlibabaidlerentorderqueryAPIResponse struct {
	model.CommonResponse
	AlibabaidlerentorderqueryAPIResponseModel
}

AlibabaidlerentorderqueryAPIResponse 查询订单 API返回值 alibaba.idle.rent.order.query

查询订单信息

type AlibabaidlerentorderqueryAPIResponseModel added in v1.3.1

type AlibabaidlerentorderqueryAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_rent_order_query_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 系统自动生成
	Result *AlibabaidlerentorderqueryTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerentorderqueryAPIResponseModel is 查询订单 成功返回结果

type AlibabaidlerentorderqueryTopResult added in v1.3.1

type AlibabaidlerentorderqueryTopResult struct {
	// 错误码
	ErrorMessage string `json:"error_message,omitempty" xml:"error_message,omitempty"`
	// 错误信息
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// data
	Data *RentalOrderDto `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerentorderqueryTopResult 结构体

type AlibabaidlerentorderreceiveitemAPIRequest added in v1.3.1

type AlibabaidlerentorderreceiveitemAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerentorderreceiveitemAPIRequest 确认签收 API请求 alibaba.idle.rent.order.receiveitem

确认揽收/签收

func NewAlibabaidlerentorderreceiveitemRequest added in v1.3.1

func NewAlibabaidlerentorderreceiveitemRequest() *AlibabaidlerentorderreceiveitemAPIRequest

NewAlibabaidlerentorderreceiveitemRequest 初始化AlibabaidlerentorderreceiveitemAPIRequest对象

func (AlibabaidlerentorderreceiveitemAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerentorderreceiveitemAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerentorderreceiveitemAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerentorderreceiveitemAPIRequest) GetOrderId added in v1.3.1

GetOrderId OrderId Getter

func (AlibabaidlerentorderreceiveitemAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerentorderreceiveitemAPIRequest) SetOrderId added in v1.3.1

func (r *AlibabaidlerentorderreceiveitemAPIRequest) SetOrderId(_orderId int64) error

SetOrderId is OrderId Setter 订单id

type AlibabaidlerentorderreceiveitemAPIResponse added in v1.3.1

type AlibabaidlerentorderreceiveitemAPIResponse struct {
	model.CommonResponse
	AlibabaidlerentorderreceiveitemAPIResponseModel
}

AlibabaidlerentorderreceiveitemAPIResponse 确认签收 API返回值 alibaba.idle.rent.order.receiveitem

确认揽收/签收

type AlibabaidlerentorderreceiveitemAPIResponseModel added in v1.3.1

type AlibabaidlerentorderreceiveitemAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_rent_order_receiveitem_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 系统自动生成
	Result *AlibabaidlerentorderreceiveitemTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerentorderreceiveitemAPIResponseModel is 确认签收 成功返回结果

type AlibabaidlerentorderreceiveitemTopResult added in v1.3.1

type AlibabaidlerentorderreceiveitemTopResult struct {
	// 错误码
	ErrorMessage string `json:"error_message,omitempty" xml:"error_message,omitempty"`
	// 错误信息
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// data
	Data bool `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerentorderreceiveitemTopResult 结构体

type AlibabaidlerentordersenditemAPIRequest added in v1.3.1

type AlibabaidlerentordersenditemAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlerentordersenditemAPIRequest 确认发货 API请求 alibaba.idle.rent.order.senditem

确认发货

func NewAlibabaidlerentordersenditemRequest added in v1.3.1

func NewAlibabaidlerentordersenditemRequest() *AlibabaidlerentordersenditemAPIRequest

NewAlibabaidlerentordersenditemRequest 初始化AlibabaidlerentordersenditemAPIRequest对象

func (AlibabaidlerentordersenditemAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlerentordersenditemAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlerentordersenditemAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlerentordersenditemAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlerentordersenditemAPIRequest) GetLogisticsList added in v1.3.1

GetLogisticsList LogisticsList Getter

func (AlibabaidlerentordersenditemAPIRequest) GetOrderId added in v1.3.1

GetOrderId OrderId Getter

func (AlibabaidlerentordersenditemAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlerentordersenditemAPIRequest) SetLogisticsList added in v1.3.1

func (r *AlibabaidlerentordersenditemAPIRequest) SetLogisticsList(_logisticsList []LogisticsDto) error

SetLogisticsList is LogisticsList Setter 物流信息

func (*AlibabaidlerentordersenditemAPIRequest) SetOrderId added in v1.3.1

func (r *AlibabaidlerentordersenditemAPIRequest) SetOrderId(_orderId int64) error

SetOrderId is OrderId Setter 订单id

type AlibabaidlerentordersenditemAPIResponse added in v1.3.1

type AlibabaidlerentordersenditemAPIResponse struct {
	model.CommonResponse
	AlibabaidlerentordersenditemAPIResponseModel
}

AlibabaidlerentordersenditemAPIResponse 确认发货 API返回值 alibaba.idle.rent.order.senditem

确认发货

type AlibabaidlerentordersenditemAPIResponseModel added in v1.3.1

type AlibabaidlerentordersenditemAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_rent_order_senditem_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 系统自动生成
	Result *AlibabaidlerentordersenditemTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlerentordersenditemAPIResponseModel is 确认发货 成功返回结果

type AlibabaidlerentordersenditemTopResult added in v1.3.1

type AlibabaidlerentordersenditemTopResult struct {
	// 错误码
	ErrorMessage string `json:"error_message,omitempty" xml:"error_message,omitempty"`
	// 错误信息
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// data
	Data bool `json:"data,omitempty" xml:"data,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlerentordersenditemTopResult 结构体

type AlibabaidlereportmediauploadAPIRequest added in v1.3.1

type AlibabaidlereportmediauploadAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlereportmediauploadAPIRequest 验货报告上传文件 API请求 alibaba.idle.report.media.upload

服务商上传文件、图片

func NewAlibabaidlereportmediauploadRequest added in v1.3.1

func NewAlibabaidlereportmediauploadRequest() *AlibabaidlereportmediauploadAPIRequest

NewAlibabaidlereportmediauploadRequest 初始化AlibabaidlereportmediauploadAPIRequest对象

func (AlibabaidlereportmediauploadAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlereportmediauploadAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlereportmediauploadAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlereportmediauploadAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlereportmediauploadAPIRequest) GetData added in v1.3.1

GetData Data Getter

func (AlibabaidlereportmediauploadAPIRequest) GetName added in v1.3.1

GetName Name Getter

func (AlibabaidlereportmediauploadAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (AlibabaidlereportmediauploadAPIRequest) GetType added in v1.3.1

GetType Type Getter

func (*AlibabaidlereportmediauploadAPIRequest) SetData added in v1.3.1

SetData is Data Setter 多媒体字节数组

func (*AlibabaidlereportmediauploadAPIRequest) SetName added in v1.3.1

SetName is Name Setter 名称

func (*AlibabaidlereportmediauploadAPIRequest) SetType added in v1.3.1

SetType is Type Setter 类型 PHOTO 图片;FILM 视频

type AlibabaidlereportmediauploadAPIResponse added in v1.3.1

type AlibabaidlereportmediauploadAPIResponse struct {
	model.CommonResponse
	AlibabaidlereportmediauploadAPIResponseModel
}

AlibabaidlereportmediauploadAPIResponse 验货报告上传文件 API返回值 alibaba.idle.report.media.upload

服务商上传文件、图片

type AlibabaidlereportmediauploadAPIResponseModel added in v1.3.1

type AlibabaidlereportmediauploadAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_report_media_upload_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 结果
	Result *CommonResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlereportmediauploadAPIResponseModel is 验货报告上传文件 成功返回结果

type AlibabaidlereportresultuploadAPIRequest added in v1.3.1

type AlibabaidlereportresultuploadAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlereportresultuploadAPIRequest 服务商上传验货报告 API请求 alibaba.idle.report.result.upload

服务商上传验货报告

func NewAlibabaidlereportresultuploadRequest added in v1.3.1

func NewAlibabaidlereportresultuploadRequest() *AlibabaidlereportresultuploadAPIRequest

NewAlibabaidlereportresultuploadRequest 初始化AlibabaidlereportresultuploadAPIRequest对象

func (AlibabaidlereportresultuploadAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlereportresultuploadAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlereportresultuploadAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlereportresultuploadAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlereportresultuploadAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (AlibabaidlereportresultuploadAPIRequest) GetReportUploadTopCmd added in v1.3.1

GetReportUploadTopCmd ReportUploadTopCmd Getter

func (*AlibabaidlereportresultuploadAPIRequest) SetReportUploadTopCmd added in v1.3.1

func (r *AlibabaidlereportresultuploadAPIRequest) SetReportUploadTopCmd(_reportUploadTopCmd *ReportUploadTopCmd) error

SetReportUploadTopCmd is ReportUploadTopCmd Setter 参数

type AlibabaidlereportresultuploadAPIResponse added in v1.3.1

type AlibabaidlereportresultuploadAPIResponse struct {
	model.CommonResponse
	AlibabaidlereportresultuploadAPIResponseModel
}

AlibabaidlereportresultuploadAPIResponse 服务商上传验货报告 API返回值 alibaba.idle.report.result.upload

服务商上传验货报告

type AlibabaidlereportresultuploadAPIResponseModel added in v1.3.1

type AlibabaidlereportresultuploadAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_report_result_upload_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 结果
	Result *CommonResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlereportresultuploadAPIResponseModel is 服务商上传验货报告 成功返回结果

type AlibabaidlespuregistermodifyAPIRequest added in v1.3.1

type AlibabaidlespuregistermodifyAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidlespuregistermodifyAPIRequest 服务商spu挂载接口 API请求 alibaba.idle.spu.register.modify

闲鱼服务商通过此接口进行spu挂载,指明自己支持对该spu的服务(回收、验货等)

func NewAlibabaidlespuregistermodifyRequest added in v1.3.1

func NewAlibabaidlespuregistermodifyRequest() *AlibabaidlespuregistermodifyAPIRequest

NewAlibabaidlespuregistermodifyRequest 初始化AlibabaidlespuregistermodifyAPIRequest对象

func (AlibabaidlespuregistermodifyAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidlespuregistermodifyAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidlespuregistermodifyAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidlespuregistermodifyAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidlespuregistermodifyAPIRequest) GetIdleSpuRegister4TopDto added in v1.3.1

func (r AlibabaidlespuregistermodifyAPIRequest) GetIdleSpuRegister4TopDto() *IdleSpuRegister4topDto

GetIdleSpuRegister4TopDto IdleSpuRegister4TopDto Getter

func (AlibabaidlespuregistermodifyAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidlespuregistermodifyAPIRequest) SetIdleSpuRegister4TopDto added in v1.3.1

func (r *AlibabaidlespuregistermodifyAPIRequest) SetIdleSpuRegister4TopDto(_idleSpuRegister4TopDto *IdleSpuRegister4topDto) error

SetIdleSpuRegister4TopDto is IdleSpuRegister4TopDto Setter 入参

type AlibabaidlespuregistermodifyAPIResponse added in v1.3.1

type AlibabaidlespuregistermodifyAPIResponse struct {
	model.CommonResponse
	AlibabaidlespuregistermodifyAPIResponseModel
}

AlibabaidlespuregistermodifyAPIResponse 服务商spu挂载接口 API返回值 alibaba.idle.spu.register.modify

闲鱼服务商通过此接口进行spu挂载,指明自己支持对该spu的服务(回收、验货等)

type AlibabaidlespuregistermodifyAPIResponseModel added in v1.3.1

type AlibabaidlespuregistermodifyAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_spu_register_modify_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	Result *AlibabaidlespuregistermodifyResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidlespuregistermodifyAPIResponseModel is 服务商spu挂载接口 成功返回结果

type AlibabaidlespuregistermodifyResult added in v1.3.1

type AlibabaidlespuregistermodifyResult struct {
	// errCode
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// errMsg
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// spu挂载信息后台状态,0在线,-1删除,1测试中。当spu第一次挂载时,会进入1测试中状态。服务商联调通过后,需要再次挂载,actionType还传0,挂载信息状态会变成0已上线。
	Module int64 `json:"module,omitempty" xml:"module,omitempty"`
	// 是否挂载成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidlespuregistermodifyResult 结构体

type AlibabaidletemplatequesgetAPIRequest added in v1.3.1

type AlibabaidletemplatequesgetAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletemplatequesgetAPIRequest 获取SPU最新版本问卷 API请求 alibaba.idle.template.ques.get

获取SPU最新版本问卷

func NewAlibabaidletemplatequesgetRequest added in v1.3.1

func NewAlibabaidletemplatequesgetRequest() *AlibabaidletemplatequesgetAPIRequest

NewAlibabaidletemplatequesgetRequest 初始化AlibabaidletemplatequesgetAPIRequest对象

func (AlibabaidletemplatequesgetAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidletemplatequesgetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletemplatequesgetAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidletemplatequesgetAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletemplatequesgetAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (AlibabaidletemplatequesgetAPIRequest) GetSpuQuestionnaireTopQry added in v1.3.1

func (r AlibabaidletemplatequesgetAPIRequest) GetSpuQuestionnaireTopQry() *SpuQuestionnaireTopQry

GetSpuQuestionnaireTopQry SpuQuestionnaireTopQry Getter

func (*AlibabaidletemplatequesgetAPIRequest) SetSpuQuestionnaireTopQry added in v1.3.1

func (r *AlibabaidletemplatequesgetAPIRequest) SetSpuQuestionnaireTopQry(_spuQuestionnaireTopQry *SpuQuestionnaireTopQry) error

SetSpuQuestionnaireTopQry is SpuQuestionnaireTopQry Setter 请求参数

type AlibabaidletemplatequesgetAPIResponse added in v1.3.1

type AlibabaidletemplatequesgetAPIResponse struct {
	model.CommonResponse
	AlibabaidletemplatequesgetAPIResponseModel
}

AlibabaidletemplatequesgetAPIResponse 获取SPU最新版本问卷 API返回值 alibaba.idle.template.ques.get

获取SPU最新版本问卷

type AlibabaidletemplatequesgetAPIResponseModel added in v1.3.1

type AlibabaidletemplatequesgetAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_template_ques_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 结果
	Result *CommonResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidletemplatequesgetAPIResponseModel is 获取SPU最新版本问卷 成功返回结果

type AlibabaidletemplatequesonlineAPIRequest added in v1.3.1

type AlibabaidletemplatequesonlineAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletemplatequesonlineAPIRequest 预上线SPU问卷版本 API请求 alibaba.idle.template.ques.online

获取SPU最新版本问卷

func NewAlibabaidletemplatequesonlineRequest added in v1.3.1

func NewAlibabaidletemplatequesonlineRequest() *AlibabaidletemplatequesonlineAPIRequest

NewAlibabaidletemplatequesonlineRequest 初始化AlibabaidletemplatequesonlineAPIRequest对象

func (AlibabaidletemplatequesonlineAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidletemplatequesonlineAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletemplatequesonlineAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidletemplatequesonlineAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletemplatequesonlineAPIRequest) GetQuestionnaireSupportCmd added in v1.3.1

func (r AlibabaidletemplatequesonlineAPIRequest) GetQuestionnaireSupportCmd() *QuestionnaireSupportCmd

GetQuestionnaireSupportCmd QuestionnaireSupportCmd Getter

func (AlibabaidletemplatequesonlineAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidletemplatequesonlineAPIRequest) SetQuestionnaireSupportCmd added in v1.3.1

func (r *AlibabaidletemplatequesonlineAPIRequest) SetQuestionnaireSupportCmd(_questionnaireSupportCmd *QuestionnaireSupportCmd) error

SetQuestionnaireSupportCmd is QuestionnaireSupportCmd Setter 参数

type AlibabaidletemplatequesonlineAPIResponse added in v1.3.1

type AlibabaidletemplatequesonlineAPIResponse struct {
	model.CommonResponse
	AlibabaidletemplatequesonlineAPIResponseModel
}

AlibabaidletemplatequesonlineAPIResponse 预上线SPU问卷版本 API返回值 alibaba.idle.template.ques.online

获取SPU最新版本问卷

type AlibabaidletemplatequesonlineAPIResponseModel added in v1.3.1

type AlibabaidletemplatequesonlineAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_template_ques_online_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 结果
	Result *CommonResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidletemplatequesonlineAPIResponseModel is 预上线SPU问卷版本 成功返回结果

type AlibabaidletenderaftersaleordergetAPIRequest added in v1.3.1

type AlibabaidletenderaftersaleordergetAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletenderaftersaleordergetAPIRequest 闲鱼帮卖售后服务单查询 API请求 alibaba.idle.tender.aftersale.order.get

闲鱼帮卖售后服务单查询

func NewAlibabaidletenderaftersaleordergetRequest added in v1.3.1

func NewAlibabaidletenderaftersaleordergetRequest() *AlibabaidletenderaftersaleordergetAPIRequest

NewAlibabaidletenderaftersaleordergetRequest 初始化AlibabaidletenderaftersaleordergetAPIRequest对象

func (AlibabaidletenderaftersaleordergetAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletenderaftersaleordergetAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletenderaftersaleordergetAPIRequest) GetApplyId added in v1.3.1

GetApplyId ApplyId Getter

func (AlibabaidletenderaftersaleordergetAPIRequest) GetMainOrderId added in v1.3.1

GetMainOrderId MainOrderId Getter

func (AlibabaidletenderaftersaleordergetAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidletenderaftersaleordergetAPIRequest) SetApplyId added in v1.3.1

SetApplyId is ApplyId Setter 服务申请单id

func (*AlibabaidletenderaftersaleordergetAPIRequest) SetMainOrderId added in v1.3.1

func (r *AlibabaidletenderaftersaleordergetAPIRequest) SetMainOrderId(_mainOrderId int64) error

SetMainOrderId is MainOrderId Setter 主订单号

type AlibabaidletenderaftersaleordergetAPIResponse added in v1.3.1

type AlibabaidletenderaftersaleordergetAPIResponse struct {
	model.CommonResponse
	AlibabaidletenderaftersaleordergetAPIResponseModel
}

AlibabaidletenderaftersaleordergetAPIResponse 闲鱼帮卖售后服务单查询 API返回值 alibaba.idle.tender.aftersale.order.get

闲鱼帮卖售后服务单查询

type AlibabaidletenderaftersaleordergetAPIResponseModel added in v1.3.1

type AlibabaidletenderaftersaleordergetAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_tender_aftersale_order_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 查询结果
	Module *AlibabaidletenderaftersaleordergetModule `json:"module,omitempty" xml:"module,omitempty"`
	// 查询是否成功
	QuerySuccess bool `json:"query_success,omitempty" xml:"query_success,omitempty"`
}

AlibabaidletenderaftersaleordergetAPIResponseModel is 闲鱼帮卖售后服务单查询 成功返回结果

type AlibabaidletenderaftersaleordergetModule added in v1.3.1

type AlibabaidletenderaftersaleordergetModule struct {
	// 申请服务类型
	ApplyType string `json:"apply_type,omitempty" xml:"apply_type,omitempty"`
	// 理赔方案类型
	ServicePlanType string `json:"service_plan_type,omitempty" xml:"service_plan_type,omitempty"`
	// 理赔方案信息
	ServicePlanInfo string `json:"service_plan_info,omitempty" xml:"service_plan_info,omitempty"`
	// 正向订单号
	MainOrderId string `json:"main_order_id,omitempty" xml:"main_order_id,omitempty"`
	// 申请信息
	ApplyInfo string `json:"apply_info,omitempty" xml:"apply_info,omitempty"`
	// 售后服务CODE
	ServiceBizCode string `json:"service_biz_code,omitempty" xml:"service_biz_code,omitempty"`
	// 售后服务场景类型
	ServiceSceneType string `json:"service_scene_type,omitempty" xml:"service_scene_type,omitempty"`
	// 帮卖完结方式
	MainOrderSettleType string `json:"main_order_settle_type,omitempty" xml:"main_order_settle_type,omitempty"`
	// 售后申请单主状态
	MainStatus int64 `json:"main_status,omitempty" xml:"main_status,omitempty"`
	// 扩展信息
	Attributes *Attributes `json:"attributes,omitempty" xml:"attributes,omitempty"`
	// 售后申请单子状态
	SubStatus int64 `json:"sub_status,omitempty" xml:"sub_status,omitempty"`
}

AlibabaidletenderaftersaleordergetModule 结构体

type AlibabaidletenderaftersaleorderperformAPIRequest added in v1.3.1

type AlibabaidletenderaftersaleorderperformAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletenderaftersaleorderperformAPIRequest 闲鱼帮卖售后订单履约 API请求 alibaba.idle.tender.aftersale.order.perform

闲鱼帮卖售后订单履约

func NewAlibabaidletenderaftersaleorderperformRequest added in v1.3.1

func NewAlibabaidletenderaftersaleorderperformRequest() *AlibabaidletenderaftersaleorderperformAPIRequest

NewAlibabaidletenderaftersaleorderperformRequest 初始化AlibabaidletenderaftersaleorderperformAPIRequest对象

func (AlibabaidletenderaftersaleorderperformAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletenderaftersaleorderperformAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletenderaftersaleorderperformAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (AlibabaidletenderaftersaleorderperformAPIRequest) GetTenderAfterSaleParam added in v1.3.1

GetTenderAfterSaleParam TenderAfterSaleParam Getter

func (*AlibabaidletenderaftersaleorderperformAPIRequest) SetTenderAfterSaleParam added in v1.3.1

func (r *AlibabaidletenderaftersaleorderperformAPIRequest) SetTenderAfterSaleParam(_tenderAfterSaleParam *TenderAfterSaleParam) error

SetTenderAfterSaleParam is TenderAfterSaleParam Setter 实参

type AlibabaidletenderaftersaleorderperformAPIResponse added in v1.3.1

type AlibabaidletenderaftersaleorderperformAPIResponse struct {
	model.CommonResponse
	AlibabaidletenderaftersaleorderperformAPIResponseModel
}

AlibabaidletenderaftersaleorderperformAPIResponse 闲鱼帮卖售后订单履约 API返回值 alibaba.idle.tender.aftersale.order.perform

闲鱼帮卖售后订单履约

type AlibabaidletenderaftersaleorderperformAPIResponseModel added in v1.3.1

type AlibabaidletenderaftersaleorderperformAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_tender_aftersale_order_perform_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 错误信息
	PerformError string `json:"perform_error,omitempty" xml:"perform_error,omitempty"`
	// 是否履约成功
	TransformSuccess bool `json:"transform_success,omitempty" xml:"transform_success,omitempty"`
}

AlibabaidletenderaftersaleorderperformAPIResponseModel is 闲鱼帮卖售后订单履约 成功返回结果

type AlibabaidletenderbtobitemdeleteAPIRequest added in v1.3.1

type AlibabaidletenderbtobitemdeleteAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletenderbtobitemdeleteAPIRequest 暗拍b2b商品下架/删除 API请求 alibaba.idle.tender.btob.item.delete

暗拍b2b商品下架/删除

func NewAlibabaidletenderbtobitemdeleteRequest added in v1.3.1

func NewAlibabaidletenderbtobitemdeleteRequest() *AlibabaidletenderbtobitemdeleteAPIRequest

NewAlibabaidletenderbtobitemdeleteRequest 初始化AlibabaidletenderbtobitemdeleteAPIRequest对象

func (AlibabaidletenderbtobitemdeleteAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletenderbtobitemdeleteAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidletenderbtobitemdeleteAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletenderbtobitemdeleteAPIRequest) GetParam0 added in v1.3.1

GetParam0 Param0 Getter

func (AlibabaidletenderbtobitemdeleteAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidletenderbtobitemdeleteAPIRequest) SetParam0 added in v1.3.1

SetParam0 is Param0 Setter 参数0

type AlibabaidletenderbtobitemdeleteAPIResponse added in v1.3.1

type AlibabaidletenderbtobitemdeleteAPIResponse struct {
	model.CommonResponse
	AlibabaidletenderbtobitemdeleteAPIResponseModel
}

AlibabaidletenderbtobitemdeleteAPIResponse 暗拍b2b商品下架/删除 API返回值 alibaba.idle.tender.btob.item.delete

暗拍b2b商品下架/删除

type AlibabaidletenderbtobitemdeleteAPIResponseModel added in v1.3.1

type AlibabaidletenderbtobitemdeleteAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_tender_btob_item_delete_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 结果
	Result *CommonResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidletenderbtobitemdeleteAPIResponseModel is 暗拍b2b商品下架/删除 成功返回结果

type AlibabaidletenderbtobitemqueryAPIRequest added in v1.3.1

type AlibabaidletenderbtobitemqueryAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletenderbtobitemqueryAPIRequest 暗拍b2b商品查询 API请求 alibaba.idle.tender.btob.item.query

暗拍b2b商品查询

func NewAlibabaidletenderbtobitemqueryRequest added in v1.3.1

func NewAlibabaidletenderbtobitemqueryRequest() *AlibabaidletenderbtobitemqueryAPIRequest

NewAlibabaidletenderbtobitemqueryRequest 初始化AlibabaidletenderbtobitemqueryAPIRequest对象

func (AlibabaidletenderbtobitemqueryAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidletenderbtobitemqueryAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletenderbtobitemqueryAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidletenderbtobitemqueryAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletenderbtobitemqueryAPIRequest) GetParam0 added in v1.3.1

GetParam0 Param0 Getter

func (AlibabaidletenderbtobitemqueryAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidletenderbtobitemqueryAPIRequest) SetParam0 added in v1.3.1

SetParam0 is Param0 Setter 参数

type AlibabaidletenderbtobitemqueryAPIResponse added in v1.3.1

type AlibabaidletenderbtobitemqueryAPIResponse struct {
	model.CommonResponse
	AlibabaidletenderbtobitemqueryAPIResponseModel
}

AlibabaidletenderbtobitemqueryAPIResponse 暗拍b2b商品查询 API返回值 alibaba.idle.tender.btob.item.query

暗拍b2b商品查询

type AlibabaidletenderbtobitemqueryAPIResponseModel added in v1.3.1

type AlibabaidletenderbtobitemqueryAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_tender_btob_item_query_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 结果
	Result *CommonPageResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidletenderbtobitemqueryAPIResponseModel is 暗拍b2b商品查询 成功返回结果

type AlibabaidletenderbtobitemuploadAPIRequest added in v1.3.1

type AlibabaidletenderbtobitemuploadAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletenderbtobitemuploadAPIRequest 暗拍发布/编辑B2B商品 API请求 alibaba.idle.tender.btob.item.upload

暗拍发布/编辑B2B商品

func NewAlibabaidletenderbtobitemuploadRequest added in v1.3.1

func NewAlibabaidletenderbtobitemuploadRequest() *AlibabaidletenderbtobitemuploadAPIRequest

NewAlibabaidletenderbtobitemuploadRequest 初始化AlibabaidletenderbtobitemuploadAPIRequest对象

func (AlibabaidletenderbtobitemuploadAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletenderbtobitemuploadAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidletenderbtobitemuploadAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletenderbtobitemuploadAPIRequest) GetParam0 added in v1.3.1

GetParam0 Param0 Getter

func (AlibabaidletenderbtobitemuploadAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidletenderbtobitemuploadAPIRequest) SetParam0 added in v1.3.1

SetParam0 is Param0 Setter 参数

type AlibabaidletenderbtobitemuploadAPIResponse added in v1.3.1

type AlibabaidletenderbtobitemuploadAPIResponse struct {
	model.CommonResponse
	AlibabaidletenderbtobitemuploadAPIResponseModel
}

AlibabaidletenderbtobitemuploadAPIResponse 暗拍发布/编辑B2B商品 API返回值 alibaba.idle.tender.btob.item.upload

暗拍发布/编辑B2B商品

type AlibabaidletenderbtobitemuploadAPIResponseModel added in v1.3.1

type AlibabaidletenderbtobitemuploadAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_tender_btob_item_upload_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回结果
	Result *CommonResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidletenderbtobitemuploadAPIResponseModel is 暗拍发布/编辑B2B商品 成功返回结果

type AlibabaidletenderordergetAPIRequest added in v1.3.1

type AlibabaidletenderordergetAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletenderordergetAPIRequest 暗拍读取订单 API请求 alibaba.idle.tender.order.get

查询省心卖暗拍项目订单

func NewAlibabaidletenderordergetRequest added in v1.3.1

func NewAlibabaidletenderordergetRequest() *AlibabaidletenderordergetAPIRequest

NewAlibabaidletenderordergetRequest 初始化AlibabaidletenderordergetAPIRequest对象

func (AlibabaidletenderordergetAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidletenderordergetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletenderordergetAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidletenderordergetAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletenderordergetAPIRequest) GetParam0 added in v1.3.1

GetParam0 Param0 Getter

func (AlibabaidletenderordergetAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidletenderordergetAPIRequest) SetParam0 added in v1.3.1

SetParam0 is Param0 Setter 查询信息

type AlibabaidletenderordergetAPIResponse added in v1.3.1

type AlibabaidletenderordergetAPIResponse struct {
	model.CommonResponse
	AlibabaidletenderordergetAPIResponseModel
}

AlibabaidletenderordergetAPIResponse 暗拍读取订单 API返回值 alibaba.idle.tender.order.get

查询省心卖暗拍项目订单

type AlibabaidletenderordergetAPIResponseModel added in v1.3.1

type AlibabaidletenderordergetAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_tender_order_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 结果信息
	Result *AlibabaidletenderordergetResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidletenderordergetAPIResponseModel is 暗拍读取订单 成功返回结果

type AlibabaidletenderordergetResult added in v1.3.1

type AlibabaidletenderordergetResult struct {
	// 错误code
	ErrorCodeInfo string `json:"error_code_info,omitempty" xml:"error_code_info,omitempty"`
	// 错误msg
	ErrorMsgInfo string `json:"error_msg_info,omitempty" xml:"error_msg_info,omitempty"`
	// 结果详细信息
	Module *TenderOrderInfoDto `json:"module,omitempty" xml:"module,omitempty"`
	// 是否成功
	RespSuccess bool `json:"resp_success,omitempty" xml:"resp_success,omitempty"`
}

AlibabaidletenderordergetResult 结构体

type AlibabaidletenderprepayactionAPIRequest added in v1.3.1

type AlibabaidletenderprepayactionAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletenderprepayactionAPIRequest 服务商预付款完成接口 API请求 alibaba.idle.tender.pre.pay.action

服务商预付款完成接口

func NewAlibabaidletenderprepayactionRequest added in v1.3.1

func NewAlibabaidletenderprepayactionRequest() *AlibabaidletenderprepayactionAPIRequest

NewAlibabaidletenderprepayactionRequest 初始化AlibabaidletenderprepayactionAPIRequest对象

func (AlibabaidletenderprepayactionAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidletenderprepayactionAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletenderprepayactionAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidletenderprepayactionAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletenderprepayactionAPIRequest) GetParam0 added in v1.3.1

GetParam0 Param0 Getter

func (AlibabaidletenderprepayactionAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidletenderprepayactionAPIRequest) SetParam0 added in v1.3.1

SetParam0 is Param0 Setter 请求参数

type AlibabaidletenderprepayactionAPIResponse added in v1.3.1

type AlibabaidletenderprepayactionAPIResponse struct {
	model.CommonResponse
	AlibabaidletenderprepayactionAPIResponseModel
}

AlibabaidletenderprepayactionAPIResponse 服务商预付款完成接口 API返回值 alibaba.idle.tender.pre.pay.action

服务商预付款完成接口

type AlibabaidletenderprepayactionAPIResponseModel added in v1.3.1

type AlibabaidletenderprepayactionAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_tender_pre_pay_action_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 结果
	Result *CommonResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidletenderprepayactionAPIResponseModel is 服务商预付款完成接口 成功返回结果

type AlibabaidletenderuploadreportAPIRequest added in v1.3.1

type AlibabaidletenderuploadreportAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletenderuploadreportAPIRequest 服务商上传验货报告同步给闲鱼 API请求 alibaba.idle.tender.upload.report

服务商上传验货报告同步给闲鱼

func NewAlibabaidletenderuploadreportRequest added in v1.3.1

func NewAlibabaidletenderuploadreportRequest() *AlibabaidletenderuploadreportAPIRequest

NewAlibabaidletenderuploadreportRequest 初始化AlibabaidletenderuploadreportAPIRequest对象

func (AlibabaidletenderuploadreportAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidletenderuploadreportAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletenderuploadreportAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidletenderuploadreportAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletenderuploadreportAPIRequest) GetParam0 added in v1.3.1

GetParam0 Param0 Getter

func (AlibabaidletenderuploadreportAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidletenderuploadreportAPIRequest) SetParam0 added in v1.3.1

SetParam0 is Param0 Setter 回收商质检报告

type AlibabaidletenderuploadreportAPIResponse added in v1.3.1

type AlibabaidletenderuploadreportAPIResponse struct {
	model.CommonResponse
	AlibabaidletenderuploadreportAPIResponseModel
}

AlibabaidletenderuploadreportAPIResponse 服务商上传验货报告同步给闲鱼 API返回值 alibaba.idle.tender.upload.report

服务商上传验货报告同步给闲鱼

type AlibabaidletenderuploadreportAPIResponseModel added in v1.3.1

type AlibabaidletenderuploadreportAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_tender_upload_report_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回结果
	Result *IdleCommonResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidletenderuploadreportAPIResponseModel is 服务商上传验货报告同步给闲鱼 成功返回结果

type AlibabaidletradecarperformAPIRequest added in v1.3.1

type AlibabaidletradecarperformAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletradecarperformAPIRequest 二手车寄卖履约接口 API请求 alibaba.idle.trade.car.perform

二手车寄卖履约接口

func NewAlibabaidletradecarperformRequest added in v1.3.1

func NewAlibabaidletradecarperformRequest() *AlibabaidletradecarperformAPIRequest

NewAlibabaidletradecarperformRequest 初始化AlibabaidletradecarperformAPIRequest对象

func (AlibabaidletradecarperformAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidletradecarperformAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletradecarperformAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidletradecarperformAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletradecarperformAPIRequest) GetCarConsignmentParam added in v1.3.1

func (r AlibabaidletradecarperformAPIRequest) GetCarConsignmentParam() *CarConsignmentParam

GetCarConsignmentParam CarConsignmentParam Getter

func (AlibabaidletradecarperformAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidletradecarperformAPIRequest) SetCarConsignmentParam added in v1.3.1

func (r *AlibabaidletradecarperformAPIRequest) SetCarConsignmentParam(_carConsignmentParam *CarConsignmentParam) error

SetCarConsignmentParam is CarConsignmentParam Setter 履约参数

type AlibabaidletradecarperformAPIResponse added in v1.3.1

type AlibabaidletradecarperformAPIResponse struct {
	model.CommonResponse
	AlibabaidletradecarperformAPIResponseModel
}

AlibabaidletradecarperformAPIResponse 二手车寄卖履约接口 API返回值 alibaba.idle.trade.car.perform

二手车寄卖履约接口

type AlibabaidletradecarperformAPIResponseModel added in v1.3.1

type AlibabaidletradecarperformAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_trade_car_perform_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回结果
	Result *CarConsignmentResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidletradecarperformAPIResponseModel is 二手车寄卖履约接口 成功返回结果

type AlibabaidletransferpayqueryAPIRequest added in v1.3.1

type AlibabaidletransferpayqueryAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidletransferpayqueryAPIRequest 闲鱼转账结果查询 API请求 alibaba.idle.transferpay.query

商家业务 转账支付的结果查询

func NewAlibabaidletransferpayqueryRequest added in v1.3.1

func NewAlibabaidletransferpayqueryRequest() *AlibabaidletransferpayqueryAPIRequest

NewAlibabaidletransferpayqueryRequest 初始化AlibabaidletransferpayqueryAPIRequest对象

func (AlibabaidletransferpayqueryAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidletransferpayqueryAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidletransferpayqueryAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidletransferpayqueryAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidletransferpayqueryAPIRequest) GetParam added in v1.3.1

GetParam Param Getter

func (AlibabaidletransferpayqueryAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidletransferpayqueryAPIRequest) SetParam added in v1.3.1

SetParam is Param Setter 入参

type AlibabaidletransferpayqueryAPIResponse added in v1.3.1

type AlibabaidletransferpayqueryAPIResponse struct {
	model.CommonResponse
	AlibabaidletransferpayqueryAPIResponseModel
}

AlibabaidletransferpayqueryAPIResponse 闲鱼转账结果查询 API返回值 alibaba.idle.transferpay.query

商家业务 转账支付的结果查询

type AlibabaidletransferpayqueryAPIResponseModel added in v1.3.1

type AlibabaidletransferpayqueryAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_transferpay_query_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 接口返回model
	Result *AlibabaidletransferpayqueryResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidletransferpayqueryAPIResponseModel is 闲鱼转账结果查询 成功返回结果

type AlibabaidletransferpayqueryResult added in v1.3.1

type AlibabaidletransferpayqueryResult struct {
	// 错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 详情数据
	Module *Serializable `json:"module,omitempty" xml:"module,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

AlibabaidletransferpayqueryResult 结构体

type AlibabaidleuserpermitAPIRequest added in v1.3.1

type AlibabaidleuserpermitAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaidleuserpermitAPIRequest 用户appkey授权 API请求 alibaba.idle.user.permit

闲鱼卖家与服务商关系绑定,用于业务数据分发/授权校验/消息通知鉴权

func NewAlibabaidleuserpermitRequest added in v1.3.1

func NewAlibabaidleuserpermitRequest() *AlibabaidleuserpermitAPIRequest

NewAlibabaidleuserpermitRequest 初始化AlibabaidleuserpermitAPIRequest对象

func (AlibabaidleuserpermitAPIRequest) GetApiMethodName added in v1.3.1

func (r AlibabaidleuserpermitAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaidleuserpermitAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaidleuserpermitAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaidleuserpermitAPIRequest) GetParamUserGrantRequest added in v1.3.1

func (r AlibabaidleuserpermitAPIRequest) GetParamUserGrantRequest() *UserGrantRequest

GetParamUserGrantRequest ParamUserGrantRequest Getter

func (AlibabaidleuserpermitAPIRequest) GetRawParams added in v1.3.1

func (r AlibabaidleuserpermitAPIRequest) GetRawParams() model.Params

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaidleuserpermitAPIRequest) SetParamUserGrantRequest added in v1.3.1

func (r *AlibabaidleuserpermitAPIRequest) SetParamUserGrantRequest(_paramUserGrantRequest *UserGrantRequest) error

SetParamUserGrantRequest is ParamUserGrantRequest Setter 授权请求

type AlibabaidleuserpermitAPIResponse added in v1.3.1

type AlibabaidleuserpermitAPIResponse struct {
	model.CommonResponse
	AlibabaidleuserpermitAPIResponseModel
}

AlibabaidleuserpermitAPIResponse 用户appkey授权 API返回值 alibaba.idle.user.permit

闲鱼卖家与服务商关系绑定,用于业务数据分发/授权校验/消息通知鉴权

type AlibabaidleuserpermitAPIResponseModel added in v1.3.1

type AlibabaidleuserpermitAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_idle_user_permit_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回包装类
	Result *BaseResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaidleuserpermitAPIResponseModel is 用户appkey授权 成功返回结果

type AlibabaxianyutenderorderperformAPIRequest added in v1.3.1

type AlibabaxianyutenderorderperformAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

AlibabaxianyutenderorderperformAPIRequest 闲鱼暗拍订单履约 API请求 alibaba.xianyu.tender.order.perform

闲鱼暗拍订单履约

func NewAlibabaxianyutenderorderperformRequest added in v1.3.1

func NewAlibabaxianyutenderorderperformRequest() *AlibabaxianyutenderorderperformAPIRequest

NewAlibabaxianyutenderorderperformRequest 初始化AlibabaxianyutenderorderperformAPIRequest对象

func (AlibabaxianyutenderorderperformAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (AlibabaxianyutenderorderperformAPIRequest) GetApiParams added in v1.3.1

func (r AlibabaxianyutenderorderperformAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (AlibabaxianyutenderorderperformAPIRequest) GetParam0 added in v1.3.1

GetParam0 Param0 Getter

func (AlibabaxianyutenderorderperformAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*AlibabaxianyutenderorderperformAPIRequest) SetParam0 added in v1.3.1

SetParam0 is Param0 Setter 入参

type AlibabaxianyutenderorderperformAPIResponse added in v1.3.1

type AlibabaxianyutenderorderperformAPIResponse struct {
	model.CommonResponse
	AlibabaxianyutenderorderperformAPIResponseModel
}

AlibabaxianyutenderorderperformAPIResponse 闲鱼暗拍订单履约 API返回值 alibaba.xianyu.tender.order.perform

闲鱼暗拍订单履约

type AlibabaxianyutenderorderperformAPIResponseModel added in v1.3.1

type AlibabaxianyutenderorderperformAPIResponseModel struct {
	XMLName xml.Name `xml:"alibaba_xianyu_tender_order_perform_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 结果
	Result *AlibabaxianyutenderorderperformResult `json:"result,omitempty" xml:"result,omitempty"`
}

AlibabaxianyutenderorderperformAPIResponseModel is 闲鱼暗拍订单履约 成功返回结果

type AlibabaxianyutenderorderperformResult added in v1.3.1

type AlibabaxianyutenderorderperformResult struct {
	// 错误信息
	ErrCodeInfo string `json:"err_code_info,omitempty" xml:"err_code_info,omitempty"`
	// 错误码
	ErrMsgInfo string `json:"err_msg_info,omitempty" xml:"err_msg_info,omitempty"`
	// 请求是否成功
	RespSuccess bool `json:"resp_success,omitempty" xml:"resp_success,omitempty"`
	// 结果是否成功
	Module bool `json:"module,omitempty" xml:"module,omitempty"`
}

AlibabaxianyutenderorderperformResult 结构体

type AlipayOrderDto

type AlipayOrderDto struct {
	// 支付宝交易号
	AlipayTradeNo string `json:"alipay_trade_no,omitempty" xml:"alipay_trade_no,omitempty"`
	// 支付订单
	PayOrderId string `json:"pay_order_id,omitempty" xml:"pay_order_id,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 支付时间
	PayTime string `json:"pay_time,omitempty" xml:"pay_time,omitempty"`
	// 金额
	Amount int64 `json:"amount,omitempty" xml:"amount,omitempty"`
	// 支付状态,1未支付,6已支付
	PayStatus int64 `json:"pay_status,omitempty" xml:"pay_status,omitempty"`
}

AlipayOrderDto 结构体

type AppraiseIsvRefundRequest

type AppraiseIsvRefundRequest struct {
	// 退款操作说明
	LeaveMessage string `json:"leave_message,omitempty" xml:"leave_message,omitempty"`
	// 退款操作*      * 同意退款并执行打款->退款成功,仅退款情况下,直接调用;退货退款情况下,先调用同意退货接口,收到货再调用这个接口           AGREE_REFUND,     *      * 拒绝退款 -> 退款关闭           REFUSE_REFUND,     *      * 同意退货并提供退货地址 -> 等待买家退货           AGREE_RETURN
	Operation string `json:"operation,omitempty" xml:"operation,omitempty"`
	// 订单号
	BizOrderId int64 `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 退货地址
	ReturnGoodsAddress *ShippingAddressInfo `json:"return_goods_address,omitempty" xml:"return_goods_address,omitempty"`
}

AppraiseIsvRefundRequest 结构体

type AppraiseOrderInfoDto

type AppraiseOrderInfoDto struct {
	// 鉴定商发货给买家的单号 主状态>=7,验货中心已发货时填写
	Ac2buyerMailNo string `json:"ac2buyer_mail_no,omitempty" xml:"ac2buyer_mail_no,omitempty"`
	// 逆向流程鉴定商发货给卖家的单号 逆向流程中,主状态>=103卖家已发货后发起逆向时填写
	Ac2sellerMailNo string `json:"ac2seller_mail_no,omitempty" xml:"ac2seller_mail_no,omitempty"`
	// 服务商appkey
	AppKey string `json:"app_key,omitempty" xml:"app_key,omitempty"`
	// 订单号
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 品牌Id
	BrandId string `json:"brand_id,omitempty" xml:"brand_id,omitempty"`
	// 买家收货地址。主状态>=6,买家确认购买时填写
	BuyerAddress string `json:"buyer_address,omitempty" xml:"buyer_address,omitempty"`
	// 买家支付宝ID,用于卖家责任时赔付买家 逆向流程中,主状态105鉴定为赝品时填写
	BuyerAlipayUserId string `json:"buyer_alipay_user_id,omitempty" xml:"buyer_alipay_user_id,omitempty"`
	// 买家区
	BuyerArea string `json:"buyer_area,omitempty" xml:"buyer_area,omitempty"`
	// 买家城市
	BuyerCity string `json:"buyer_city,omitempty" xml:"buyer_city,omitempty"`
	// 买家关闭原因
	BuyerCloseReason string `json:"buyer_close_reason,omitempty" xml:"buyer_close_reason,omitempty"`
	// 买家村庄
	BuyerCountry string `json:"buyer_country,omitempty" xml:"buyer_country,omitempty"`
	// 买家手机号。主状态>=6,买家确认购买时有值
	BuyerPhone string `json:"buyer_phone,omitempty" xml:"buyer_phone,omitempty"`
	// 买家省份
	BuyerProvince string `json:"buyer_province,omitempty" xml:"buyer_province,omitempty"`
	// 买家收货姓名。主状态>=6,买家确认购买时有值
	BuyerReceiptName string `json:"buyer_receipt_name,omitempty" xml:"buyer_receipt_name,omitempty"`
	// 类目聚合场景,如"YHB_3C"
	CateAggScene string `json:"cate_agg_scene,omitempty" xml:"cate_agg_scene,omitempty"`
	// 渠道
	Channel string `json:"channel,omitempty" xml:"channel,omitempty"`
	// 预留 JSON 格式渠道业务数据
	ChannelData string `json:"channel_data,omitempty" xml:"channel_data,omitempty"`
	// 订单环境 'online':线上环境;'pre':测试环境
	Env string `json:"env,omitempty" xml:"env,omitempty"`
	// 订单创建时间
	GmtCreate string `json:"gmt_create,omitempty" xml:"gmt_create,omitempty"`
	// 二手卖家承诺验货项。数组,每条记录的keyId代表验货项id,比如1001可能代表内存。valueId和valueName分别代表验货项值的id和描述。keyId、valueId的取值参考对接文档
	IdleAppraiseCheckpoints string `json:"idle_appraise_checkpoints,omitempty" xml:"idle_appraise_checkpoints,omitempty"`
	// 鉴定场景:1表示新品鉴定,2表示旧品鉴定
	IdleAppraiseScene string `json:"idle_appraise_scene,omitempty" xml:"idle_appraise_scene,omitempty"`
	// 商品详情页
	ItemDetailInfo string `json:"item_detail_info,omitempty" xml:"item_detail_info,omitempty"`
	// 订单主状态。(主状态,子状态,状态说明)示例如下: ("1", "1", "买家拍下未付款") ("2", "1", "买家拍下已付款") ("3", "1", "卖家已发货") 等。详情参考对接文档
	OrderStatus string `json:"order_status,omitempty" xml:"order_status,omitempty"`
	// 订单子状态,说明见order_status
	OrderSubStatus string `json:"order_sub_status,omitempty" xml:"order_sub_status,omitempty"`
	// 卖家发货给验货中心的单号。主状态>=3,卖家已发货时有值
	Seller2acMailNo string `json:"seller2ac_mail_no,omitempty" xml:"seller2ac_mail_no,omitempty"`
	// 卖家区
	SellerArea string `json:"seller_area,omitempty" xml:"seller_area,omitempty"`
	// 卖家城市
	SellerCity string `json:"seller_city,omitempty" xml:"seller_city,omitempty"`
	// 卖家关闭原因
	SellerCloseReason string `json:"seller_close_reason,omitempty" xml:"seller_close_reason,omitempty"`
	// 卖家村庄
	SellerCountry string `json:"seller_country,omitempty" xml:"seller_country,omitempty"`
	// 卖家手机号码。逆向流程中,主状态>=102卖家已发货后发起逆向时有值
	SellerPhone string `json:"seller_phone,omitempty" xml:"seller_phone,omitempty"`
	// 卖家省份
	SellerProvince string `json:"seller_province,omitempty" xml:"seller_province,omitempty"`
	// 逆向流程卖家收货地址。逆向流程中,主状态>=102卖家已发货后发起逆向时有值
	SellerReceiptAddress string `json:"seller_receipt_address,omitempty" xml:"seller_receipt_address,omitempty"`
	// 卖家收货姓名,逆向退货用。逆向流程中,主状态>=102卖家已发货后发起逆向时有值
	SellerReceiptName string `json:"seller_receipt_name,omitempty" xml:"seller_receipt_name,omitempty"`
	// spuId
	SpuId string `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
	// spu信息jsonStr
	SpuInfo string `json:"spu_info,omitempty" xml:"spu_info,omitempty"`
	// 2022-10-01 00:00:00
	BuyerConfirmReceiptTimeout string `json:"buyer_confirm_receipt_timeout,omitempty" xml:"buyer_confirm_receipt_timeout,omitempty"`
	// 2022-10-01 00:00:00
	SellerConfirmBackAddressTime string `json:"seller_confirm_back_address_time,omitempty" xml:"seller_confirm_back_address_time,omitempty"`
	// 验货宝订单流程版本
	YhbVersion string `json:"yhb_version,omitempty" xml:"yhb_version,omitempty"`
	// 买家验货费支付宝流水单号(仅在买家需要承担时有效)
	BuyerInspectionZfbId string `json:"buyer_inspection_zfb_id,omitempty" xml:"buyer_inspection_zfb_id,omitempty"`
	// 买家验货费支付单号
	BuyerInspectionOrderId string `json:"buyer_inspection_order_id,omitempty" xml:"buyer_inspection_order_id,omitempty"`
	// 卖家验货费支付宝流水单号(仅在卖家需要承担时有效)
	SellerInspectionZfbId string `json:"seller_inspection_zfb_id,omitempty" xml:"seller_inspection_zfb_id,omitempty"`
	// 卖家验货费支付单号
	SellerInspectionOrderId string `json:"seller_inspection_order_id,omitempty" xml:"seller_inspection_order_id,omitempty"`
	// 纠纷单判责结论,只在产生纠纷单并在判责结论出具后有效
	DisputeConclusion string `json:"dispute_conclusion,omitempty" xml:"dispute_conclusion,omitempty"`
	// 卖家支付宝 pid
	SellerAlipayPid string `json:"seller_alipay_pid,omitempty" xml:"seller_alipay_pid,omitempty"`
	// 仓库 id
	AcStorageId string `json:"ac_storage_id,omitempty" xml:"ac_storage_id,omitempty"`
	// 有值代表使用了验货费券,表示金额
	InspectionCouponFee string `json:"inspection_coupon_fee,omitempty" xml:"inspection_coupon_fee,omitempty"`
	// 需付给买家的赔付金额,单位分。状态为:已付款后发货超时(101-1 101-2)、卖家取消订单(101-3 101-4)、鉴定为赝品(主状态105)时有值。
	Compensation2buyer int64 `json:"compensation2buyer,omitempty" xml:"compensation2buyer,omitempty"`
	// 服务商应收实时分账金额,分。仅当交易成功或者卖家无责买家不买 这两个状态有效,其余为0。当保证金被罚没的状态时,不会实时分账而是线下结算,所以只有上述两个状态有值。
	SupplierChargeFeeCent int64 `json:"supplier_charge_fee_cent,omitempty" xml:"supplier_charge_fee_cent,omitempty"`
	// 买家实付金额,单位:分
	ActualPaidFeeCent int64 `json:"actual_paid_fee_cent,omitempty" xml:"actual_paid_fee_cent,omitempty"`
	// 确定买家验货费金额,单位:分
	BuyerInspectionFee int64 `json:"buyer_inspection_fee,omitempty" xml:"buyer_inspection_fee,omitempty"`
	// 确定买家验货费金额,单位:分
	SellerInspectionFee int64 `json:"seller_inspection_fee,omitempty" xml:"seller_inspection_fee,omitempty"`
	// 是否是经主发发布/编辑的验货宝商品
	AppraiseFromNewPublisher bool `json:"appraise_from_new_publisher,omitempty" xml:"appraise_from_new_publisher,omitempty"`
	// true 表示交易成功卖家包验货费模式
	TradeSuccessSellerAssume bool `json:"trade_success_seller_assume,omitempty" xml:"trade_success_seller_assume,omitempty"`
}

AppraiseOrderInfoDto 结构体

type AppraiseOrderSynDto

type AppraiseOrderSynDto struct {
	// biz_order_id
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// (主状态,子状态,状态说明)示例如下: ("1", "1", "买家拍下未付款") ("2", "1", "买家拍下已付款") ("3", "1", "卖家已发货") 等,详情参考对接文档
	OrderStatus string `json:"order_status,omitempty" xml:"order_status,omitempty"`
	// 见order_status字段说明
	OrderSubStatus string `json:"order_sub_status,omitempty" xml:"order_sub_status,omitempty"`
	// 3.0 必填
	TriggerEvent string `json:"trigger_event,omitempty" xml:"trigger_event,omitempty"`
	// 根据订单状态不同,传递不同的内容
	Attribute *Attribute `json:"attribute,omitempty" xml:"attribute,omitempty"`
}

AppraiseOrderSynDto 结构体

type Attribute

type Attribute struct {
	// 结构化一级结论枚举值 新品:'CERTIFIED_FLAW':真货有瑕疵;'CERTIFIED_NO_FLAW':真货无瑕疵;'FAKE':假货。 二手:'CERTIFIED_FLAW':真货有瑕疵;'FAKE':假货 主状态为4 ac已收货后,服务商调用履约接口传入
	Conclusion1 string `json:"conclusion1,omitempty" xml:"conclusion1,omitempty"`
	// 结构化二级结论枚举值 新品:无需该字段 二手:'SELLER_FAULT':卖家责任;'SELLER_NO_FAULT':卖家无责 主状态为4 ac已收货后,服务商调用履约接口传入
	Conclusion2 string `json:"conclusion2,omitempty" xml:"conclusion2,omitempty"`
	// 成色,奢侈品类需要填写" example="99新"。主状态为4 ac已收货后,服务商调用履约接口传入
	Degree string `json:"degree,omitempty" xml:"degree,omitempty"`
	// 鉴定报告URL地址。主状态为4 ac已收货后,服务商调用履约接口传入
	ReportUrl string `json:"report_url,omitempty" xml:"report_url,omitempty"`
	// 验货结论,真假、有无瑕疵等。主状态为4 ac已收货后,服务商调用履约接口传入
	Summary string `json:"summary,omitempty" xml:"summary,omitempty"`
	// 逆向流程发货给卖家的单号。买家发货后的任意一个逆向状态 服务商调用履约接口传入
	Ac2sellerMailNo string `json:"ac2seller_mail_no,omitempty" xml:"ac2seller_mail_no,omitempty"`
	// 发货给买家的单号。主状态为6 买家确认购买,服务商调用履约接口传入
	Ac2buyerMailNo string `json:"ac2buyer_mail_no,omitempty" xml:"ac2buyer_mail_no,omitempty"`
	// 验货项结论。keyId表示验货项Id,比如1001可能代表内存,valueId指出验货值的id,比如1可能代表存储64G的id,consistent代表实际此值是否为真。关于keyId、valueId的取值由其他对接文档给出
	IdleAppraiseCheckpointsResult string `json:"idle_appraise_checkpoints_result,omitempty" xml:"idle_appraise_checkpoints_result,omitempty"`
	// 拒绝识别场景原因枚举值
	RefuseReasonCode string `json:"refuse_reason_code,omitempty" xml:"refuse_reason_code,omitempty"`
	// 帮卖打款卖家支付宝流水号
	PlatformSalePaidZfbId string `json:"platform_sale_paid_zfb_id,omitempty" xml:"platform_sale_paid_zfb_id,omitempty"`
	// 支付订单号。orderStatus=5时必须上送
	PayOrderId string `json:"pay_order_id,omitempty" xml:"pay_order_id,omitempty"`
	// 拍卖订单违约金额,单位分,精确到元。orderSubStatus=204或者214时必须上送;orderStatus=5时必须上送(违约金总额)
	ForfeitFee string `json:"forfeit_fee,omitempty" xml:"forfeit_fee,omitempty"`
	// 帮卖服务费金额,单位分,精确到元。orderStatus=5时必须上送
	ServiceFee string `json:"service_fee,omitempty" xml:"service_fee,omitempty"`
	// 成交金额,单位分,精确到元。orderSubStatus=31时表示相同机况下市场回收价格;orderSubStatus=203或者213,表示拍卖成交金额;orderStatus=5时,表示最终成交金额,必须上送.
	DealAmt string `json:"deal_amt,omitempty" xml:"deal_amt,omitempty"`
	// 节点到期时间,下一节点开始时间(例如订单进入挂拍状态,则表示挂拍结束时间即竞拍开始时间),格式为“yyyy-MM-dd HH:mm:s”。orderSubStatus为如下值时必须上送:201,211表示竞拍开始时间; 202,212表示竞拍结束时间; 203,213表示拍卖买家付款截止时间;
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 拍卖订单号。orderSubStatus=201或者211时上送
	AuctionId string `json:"auction_id,omitempty" xml:"auction_id,omitempty"`
	// 关闭订单原因。orderSubStatus=102时表示卖家取消原因;orderSubStatus=103时表示买家取消原因;
	CloseReason string `json:"close_reason,omitempty" xml:"close_reason,omitempty"`
	// 质检金额(拍卖底价),单位为分,精确到元。orderSubStatus=31时上送
	ConfirmAmt string `json:"confirm_amt,omitempty" xml:"confirm_amt,omitempty"`
	// 快递单号,orderSubStatus=21表示服务商取件快递单号,orderSubStatus =101时表示服务商退货快递单号
	MailNo string `json:"mail_no,omitempty" xml:"mail_no,omitempty"`
	// 实际支付金额,单位分,精确到元。orderStatus=5时必须上送
	PayAmt string `json:"pay_amt,omitempty" xml:"pay_amt,omitempty"`
	// 历史最高成交金额,单位分,精确到元。orderSubStatus=31时上送
	MaxDealAmt string `json:"max_deal_amt,omitempty" xml:"max_deal_amt,omitempty"`
	// 评价内容。order_status=7时候填写
	RateContent string `json:"rate_content,omitempty" xml:"rate_content,omitempty"`
	// 评价等级。order_status=7时候填写 1:好评 2:中评
	RateGrade string `json:"rate_grade,omitempty" xml:"rate_grade,omitempty"`
	// 最终成交价(分)
	ConfirmFee string `json:"confirm_fee,omitempty" xml:"confirm_fee,omitempty"`
	// 上门取件订单号
	Seller2AcMailNo string `json:"seller_2_ac_mail_no,omitempty" xml:"seller_2_ac_mail_no,omitempty"`
	// 参考回收价(分)
	ReferenceRecyclePrice string `json:"reference_recycle_price,omitempty" xml:"reference_recycle_price,omitempty"`
	// 逆向退给卖家运单号
	RefundMailNo string `json:"refund_mail_no,omitempty" xml:"refund_mail_no,omitempty"`
	// 服务商发布的商品id
	ItemId string `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 卖家逆向收货地址id
	SellerReceiptAddressId string `json:"seller_receipt_address_id,omitempty" xml:"seller_receipt_address_id,omitempty"`
	// order_status=103、101时候填写 关闭原因描述
	Reason string `json:"reason,omitempty" xml:"reason,omitempty"`
	// order_status=104时填写卖家还欠费金额单位分
	ArrearageFee string `json:"arrearage_fee,omitempty" xml:"arrearage_fee,omitempty"`
	// 字段已废弃,order_status=1时传递支付宝的签约号
	AgreementNo string `json:"agreement_no,omitempty" xml:"agreement_no,omitempty"`
	// 字段已废弃,order_status=1时传递,支付宝用户id
	AlipayUserId string `json:"alipay_user_id,omitempty" xml:"alipay_user_id,omitempty"`
	// 字段已废弃,order_status=104时传递用户还款链接
	ArrearageLink string `json:"arrearage_link,omitempty" xml:"arrearage_link,omitempty"`
	// 业务场景定义的数量,如旧衣回收重量,order_status=3时候传递,具体含义根据不同业务场景决定
	Quantity string `json:"quantity,omitempty" xml:"quantity,omitempty"`
	// 支付宝交易号,在支付预付款(推送status=8)和推送(status=5)分别提供相应打款的交易号
	AlipayTradeNo string `json:"alipay_trade_no,omitempty" xml:"alipay_trade_no,omitempty"`
	// 联系人姓名,上门回收填写,order_status=1
	ContactName string `json:"contact_name,omitempty" xml:"contact_name,omitempty"`
	// 联系人电话,上门回收填写,order_status=1
	ContactMobile string `json:"contact_mobile,omitempty" xml:"contact_mobile,omitempty"`
	// 手淘商家的淘宝账号id
	RecycleSupplierId string `json:"recycle_supplier_id,omitempty" xml:"recycle_supplier_id,omitempty"`
	// 商家收到货品时间
	IsvReceiveTime string `json:"isv_receive_time,omitempty" xml:"isv_receive_time,omitempty"`
	// 质检型号名称(若存在不一致情况,需要了解实际检测的质检型号,若实际型号在已挂载的spuid中则传spuid,否则传"其他")
	RealModel string `json:"real_model,omitempty" xml:"real_model,omitempty"`
	// 提交型号和质检型号是否一致
	SpuMatch string `json:"spu_match,omitempty" xml:"spu_match,omitempty"`
	// order_status=103、101时候填写 关闭原因code。QA_STAFF_NOT_VISIT_HOME("质检员未上门取件"), SELLER_CAN_NOT_CONTACT("用户无法联系"), SELLER_NOT_COME_STORE_AT_TIME("用户未按时到店"), CANCEL_BY_SELLER_DEMAND("用户要求不回收了"), QA_NOT_QUALIFIED("不符合服务商质检要求"), OTHER("其他原因")
	CloseReasonCode string `json:"close_reason_code,omitempty" xml:"close_reason_code,omitempty"`
	// 逆向退回邮费,单位分
	RefundLogisticsFee string `json:"refund_logistics_fee,omitempty" xml:"refund_logistics_fee,omitempty"`
	// 补偿给卖家的费用
	CompensationFee string `json:"compensation_fee,omitempty" xml:"compensation_fee,omitempty"`
	// 是否允许用户修改地址
	AgreeUseAddressChange string `json:"agree_use_address_change,omitempty" xml:"agree_use_address_change,omitempty"`
}

Attribute 结构体

type Attributes added in v1.2.8

type Attributes struct {
	// 用户寄出快递单号
	MailNo string `json:"mail_no,omitempty" xml:"mail_no,omitempty"`
	// 卖家收件地址
	SellerAddressDetail string `json:"seller_address_detail,omitempty" xml:"seller_address_detail,omitempty"`
	// 卖家收件电话
	SellerAddressPhone string `json:"seller_address_phone,omitempty" xml:"seller_address_phone,omitempty"`
	// 卖家人收件名
	SellerAddressName string `json:"seller_address_name,omitempty" xml:"seller_address_name,omitempty"`
}

Attributes 结构体

type AutoTradeApiparam added in v1.3.1

type AutoTradeApiparam struct {
	// 场景
	Scenario string `json:"scenario,omitempty" xml:"scenario,omitempty"`
	// AT交易产品标识
	XGlobalBizCode string `json:"x_global_biz_code,omitempty" xml:"x_global_biz_code,omitempty"`
	// 额外参数
	ExtraParam string `json:"extra_param,omitempty" xml:"extra_param,omitempty"`
	// API版本
	Version string `json:"version,omitempty" xml:"version,omitempty"`
	// 订单id
	BizOrderId int64 `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
}

AutoTradeApiparam 结构体

type BaseResult

type BaseResult struct {
	// 错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误描述
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 是否发货成功
	Data bool `json:"data,omitempty" xml:"data,omitempty"`
	// 请求是否执行成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

BaseResult 结构体

type CarConsignmentParam added in v1.2.8

type CarConsignmentParam struct {
	// 订单id
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 主状态
	MainStatus string `json:"main_status,omitempty" xml:"main_status,omitempty"`
	// 子状态
	OrderStatus string `json:"order_status,omitempty" xml:"order_status,omitempty"`
	// 服务商appkey
	Appkey string `json:"appkey,omitempty" xml:"appkey,omitempty"`
	// 额外属性信息
	Attribute string `json:"attribute,omitempty" xml:"attribute,omitempty"`
	// 子状态
	SubStatus string `json:"sub_status,omitempty" xml:"sub_status,omitempty"`
}

CarConsignmentParam 结构体

type CarConsignmentResult added in v1.2.8

type CarConsignmentResult struct {
	// 错误信息
	PerformError string `json:"perform_error,omitempty" xml:"perform_error,omitempty"`
	// 请求成功
	TransformSuccess bool `json:"transform_success,omitempty" xml:"transform_success,omitempty"`
}

CarConsignmentResult 结构体

type CheckResultDto

type CheckResultDto struct {
	// 不通过错误码
	ExtraCode string `json:"extra_code,omitempty" xml:"extra_code,omitempty"`
	// 不通过详细信息
	ExtraMessage string `json:"extra_message,omitempty" xml:"extra_message,omitempty"`
	// 商品id
	ItemId int64 `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// sku id
	SkuId int64 `json:"sku_id,omitempty" xml:"sku_id,omitempty"`
	// 是否通过
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

CheckResultDto 结构体

type CommonPageResult added in v1.2.5

type CommonPageResult struct {
	// 商品数据
	Data []TenderItemListVo `json:"data,omitempty" xml:"data>tender_item_list_vo,omitempty"`
	// 异常编码
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// 异常信息
	ErrorMsg string `json:"error_msg,omitempty" xml:"error_msg,omitempty"`
	// 当前页
	CurrentPage int64 `json:"current_page,omitempty" xml:"current_page,omitempty"`
	// 数据总量
	Total int64 `json:"total,omitempty" xml:"total,omitempty"`
	// 请求结果
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
	// 是否有下页
	HasNextPage bool `json:"has_next_page,omitempty" xml:"has_next_page,omitempty"`
}

CommonPageResult 结构体

type CommonResult added in v1.2.5

type CommonResult struct {
	// 异常码
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// 异常提示
	ErrorMsg string `json:"error_msg,omitempty" xml:"error_msg,omitempty"`
	// 是否成功
	Data bool `json:"data,omitempty" xml:"data,omitempty"`
	// 请求是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

CommonResult 结构体

type ConsignmentOrderQuery added in v1.2.8

type ConsignmentOrderQuery struct {
	// 订单id
	BizOrderId int64 `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
}

ConsignmentOrderQuery 结构体

type ConsignmentOrderSynDto

type ConsignmentOrderSynDto struct {
	// 订单二级状态,一级状态的子状态,对于没有二级状态的场景该字段为空。一级状态为2已取件: 21:已取件; 22:已收件; 一级状态为3已质检: 31:已质检; 32:用户已确认; 201:一次挂拍; 一级状态为20竞拍中: 202:一次竞拍中; 203:一次竞拍成交; 204:一次拍卖违约; 205:一次竞拍流拍; 211:二次挂拍; 212:二次竞拍中; 213:二次竞拍成交; 214:二次拍卖违约; 215:二次竞拍流拍; 一级状态为5服务商确认交易完成: 51:拍卖成功/订单成功; 58:回收商确认交易/拍卖流拍成交; 59:服务商(兜底)确认交易/支付;
	OrderSubStatus string `json:"order_sub_status,omitempty" xml:"order_sub_status,omitempty"`
	// 订单一级状态。1:已下单; 2:已取件; 3:已质检; 20:竞拍中; 5:交易成功; 6:卖家已评价; 7:服务商已评价; 100:申请退货; 101:已退货; 102:卖家取消订单关闭; 103:服务商取消订单关闭;
	OrderStatus string `json:"order_status,omitempty" xml:"order_status,omitempty"`
	// 闲鱼订单号
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 履约节点数据
	Attribute *Attribute `json:"attribute,omitempty" xml:"attribute,omitempty"`
}

ConsignmentOrderSynDto 结构体

type ConsignmentOrderTo

type ConsignmentOrderTo struct {
	// 订单创建时间,格式为"yyyy-MM-dd HH:mm:ss"
	GmtCreate string `json:"gmt_create,omitempty" xml:"gmt_create,omitempty"`
	// 支付方式。1:支付宝现金 2:天猫红包
	IdlePayType string `json:"idle_pay_type,omitempty" xml:"idle_pay_type,omitempty"`
	// 订单环境。online:线上环境 pre:测试环境
	Env string `json:"env,omitempty" xml:"env,omitempty"`
	// 退货原因
	RefundReason string `json:"refund_reason,omitempty" xml:"refund_reason,omitempty"`
	// 买家关闭原因
	BuyerCloseReason string `json:"buyer_close_reason,omitempty" xml:"buyer_close_reason,omitempty"`
	// 卖家关闭原因
	SellerCloseReason string `json:"seller_close_reason,omitempty" xml:"seller_close_reason,omitempty"`
	// 评价内容
	RateContent string `json:"rate_content,omitempty" xml:"rate_content,omitempty"`
	// 评价等级。1 好评,0 默认中评
	RateGrade string `json:"rate_grade,omitempty" xml:"rate_grade,omitempty"`
	// 预留json格式渠道业务数据,如无则为空。比如,ship=1:不需要发货,weight=5-15代表5-15kg,userLevel=vip代表免议价用户
	ChannelData string `json:"channel_data,omitempty" xml:"channel_data,omitempty"`
	// 子渠道
	SubChannel string `json:"sub_channel,omitempty" xml:"sub_channel,omitempty"`
	// 渠道
	Channel string `json:"channel,omitempty" xml:"channel,omitempty"`
	// 村
	Country string `json:"country,omitempty" xml:"country,omitempty"`
	// 区
	Area string `json:"area,omitempty" xml:"area,omitempty"`
	// 省
	Province string `json:"province,omitempty" xml:"province,omitempty"`
	// 市
	City string `json:"city,omitempty" xml:"city,omitempty"`
	// 估价ID
	ApprizeId string `json:"apprize_id,omitempty" xml:"apprize_id,omitempty"`
	// 卖家真实姓名
	SellerRealName string `json:"seller_real_name,omitempty" xml:"seller_real_name,omitempty"`
	// 取件时间,格式为"yyyy-MM-dd HH:mm:ss"
	ShipTime string `json:"ship_time,omitempty" xml:"ship_time,omitempty"`
	// 取件类型 1:顺丰 2:上门取件
	ShipType string `json:"ship_type,omitempty" xml:"ship_type,omitempty"`
	// 卖家手机号码
	SellerPhone string `json:"seller_phone,omitempty" xml:"seller_phone,omitempty"`
	// 卖家取件地址/收货地址
	SellerAddress string `json:"seller_address,omitempty" xml:"seller_address,omitempty"`
	// 卖家支付宝账号
	SellerAlipayAccount string `json:"seller_alipay_account,omitempty" xml:"seller_alipay_account,omitempty"`
	// 卖家支付宝用户ID
	SellerAlipayUserId string `json:"seller_alipay_user_id,omitempty" xml:"seller_alipay_user_id,omitempty"`
	// 卖家昵称
	SellerNick string `json:"seller_nick,omitempty" xml:"seller_nick,omitempty"`
	// 买家昵称
	BuyerNick string `json:"buyer_nick,omitempty" xml:"buyer_nick,omitempty"`
	// 闲鱼订单ID
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 回收商appKey
	AppKey string `json:"app_key,omitempty" xml:"app_key,omitempty"`
	// json格式服务费计算规则,单位为分,精确到元:最终成交金额*percent%,最高为max金额,最低为min金额。
	ServiceRule string `json:"service_rule,omitempty" xml:"service_rule,omitempty"`
	// 估价金额,单位分,精确到元
	ApprizeAmount int64 `json:"apprize_amount,omitempty" xml:"apprize_amount,omitempty"`
	// 订单二级状态,一级状态的子状态,对于没有二级状态的场景该字段为空。一级状态为2已取件: 21:已取件; 22:已收件; 一级状态为3已质检: 31:已质检; 32:用户已确认; 201:一次挂拍; 一级状态为20竞拍中: 202:一次竞拍中; 203:一次竞拍成交; 204:一次拍卖违约; 205:一次竞拍流拍; 211:二次挂拍; 212:二次竞拍中; 213:二次竞拍成交; 214:二次拍卖违约; 215:二次竞拍流拍; 一级状态为5服务商确认交易完成: 51:拍卖成功/订单成功; 58:回收商确认交易/拍卖流拍成交; 59:服务商(兜底)确认交易/支付;
	OrderSubStatus int64 `json:"order_sub_status,omitempty" xml:"order_sub_status,omitempty"`
	// 订单一级状态。1:已下单; 2:已取件; 3:已质检; 20:竞拍中; 5:交易成功; 6:卖家已评价; 7:服务商已评价; 100:申请退货; 101:已退货; 102:卖家取消订单关闭; 103:服务商取消订单关闭;
	OrderStatus int64 `json:"order_status,omitempty" xml:"order_status,omitempty"`
}

ConsignmentOrderTo 结构体

type ConsignmentV2orderSynDto added in v1.3.1

type ConsignmentV2orderSynDto struct {
	// 订单子状态
	OrderSubStatus string `json:"order_sub_status,omitempty" xml:"order_sub_status,omitempty"`
	// 订单主状态
	OrderStatus string `json:"order_status,omitempty" xml:"order_status,omitempty"`
	// 闲鱼订单号
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 下单环境
	Env string `json:"env,omitempty" xml:"env,omitempty"`
	// 不同的状态传递不同参数
	Attribute *Attribute `json:"attribute,omitempty" xml:"attribute,omitempty"`
}

ConsignmentV2orderSynDto 结构体

type ConsignmentV2orderTo added in v1.3.1

type ConsignmentV2orderTo struct {
	// appkey
	Appkey string `json:"appkey,omitempty" xml:"appkey,omitempty"`
	// 订单id
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 订单主状态
	OrderStatus string `json:"order_status,omitempty" xml:"order_status,omitempty"`
	// 订单子状态
	OrderSubStatus string `json:"order_sub_status,omitempty" xml:"order_sub_status,omitempty"`
	// 卖家id
	SellerId string `json:"seller_id,omitempty" xml:"seller_id,omitempty"`
	// 卖家昵称
	SellerNick string `json:"seller_nick,omitempty" xml:"seller_nick,omitempty"`
	// 卖家支付宝昵称
	SellerAlipayUserId string `json:"seller_alipay_user_id,omitempty" xml:"seller_alipay_user_id,omitempty"`
	// 卖家支付宝账户
	SellerAlipayAccount string `json:"seller_alipay_account,omitempty" xml:"seller_alipay_account,omitempty"`
	// 估价金额
	ApprizeAmount string `json:"apprize_amount,omitempty" xml:"apprize_amount,omitempty"`
	// 卖家地址
	SellerAddress string `json:"seller_address,omitempty" xml:"seller_address,omitempty"`
	// 卖家手机
	SellerPhone string `json:"seller_phone,omitempty" xml:"seller_phone,omitempty"`
	// 上门时间
	ShipTime string `json:"ship_time,omitempty" xml:"ship_time,omitempty"`
	// 卖家真实姓名
	SellerRealName string `json:"seller_real_name,omitempty" xml:"seller_real_name,omitempty"`
	// 估价id
	ApprizeId string `json:"apprize_id,omitempty" xml:"apprize_id,omitempty"`
	// 市
	City string `json:"city,omitempty" xml:"city,omitempty"`
	// 省
	Province string `json:"province,omitempty" xml:"province,omitempty"`
	// 区
	Area string `json:"area,omitempty" xml:"area,omitempty"`
	// 村
	Country string `json:"country,omitempty" xml:"country,omitempty"`
	// 订单渠道
	Channel string `json:"channel,omitempty" xml:"channel,omitempty"`
	// 子渠道
	SubChannel string `json:"sub_channel,omitempty" xml:"sub_channel,omitempty"`
	// 渠道下存储的数据
	ChannelData string `json:"channel_data,omitempty" xml:"channel_data,omitempty"`
	// 评价等级 1 好评,0 默认中评
	RateGrade string `json:"rate_grade,omitempty" xml:"rate_grade,omitempty"`
	// 评价内容
	RateContent string `json:"rate_content,omitempty" xml:"rate_content,omitempty"`
	// 卖家取消订单原因
	SellerCloseReason string `json:"seller_close_reason,omitempty" xml:"seller_close_reason,omitempty"`
	// 买家关闭订单原因
	BuyerCloseReason string `json:"buyer_close_reason,omitempty" xml:"buyer_close_reason,omitempty"`
	// 订单产生环境
	Env string `json:"env,omitempty" xml:"env,omitempty"`
	// 订单创建时间
	GmtCreate string `json:"gmt_create,omitempty" xml:"gmt_create,omitempty"`
	// 服务费规则
	ServiceRule string `json:"service_rule,omitempty" xml:"service_rule,omitempty"`
	// 上门取件物流单号
	ShipMailNo string `json:"ship_mail_no,omitempty" xml:"ship_mail_no,omitempty"`
	// 质检结果简述
	Summary string `json:"summary,omitempty" xml:"summary,omitempty"`
	// 质检报告url
	ReportUrl string `json:"report_url,omitempty" xml:"report_url,omitempty"`
	// 成色
	Degree string `json:"degree,omitempty" xml:"degree,omitempty"`
	// 服务费
	ConsignmentServiceFee string `json:"consignment_service_fee,omitempty" xml:"consignment_service_fee,omitempty"`
	// 服务商实际支付金额
	ConsignmentPayAmount string `json:"consignment_pay_amount,omitempty" xml:"consignment_pay_amount,omitempty"`
	// 质检价格
	QaAmount string `json:"qa_amount,omitempty" xml:"qa_amount,omitempty"`
	// 用户出价
	ConsignmentMaxDealAmt string `json:"consignment_max_deal_amt,omitempty" xml:"consignment_max_deal_amt,omitempty"`
	// 参考回收价
	ReferenceRecyclePrice string `json:"reference_recycle_price,omitempty" xml:"reference_recycle_price,omitempty"`
	// 逆向退回地址id
	SellerReceiptAddressId string `json:"seller_receipt_address_id,omitempty" xml:"seller_receipt_address_id,omitempty"`
	// 逆向退回地址 详细信息
	SellerReceiptAddress string `json:"seller_receipt_address,omitempty" xml:"seller_receipt_address,omitempty"`
	// 退回运单号
	RefundMailNo string `json:"refund_mail_no,omitempty" xml:"refund_mail_no,omitempty"`
	// 逆向退回卖家手机号
	SellerReceiptPhone string `json:"seller_receipt_phone,omitempty" xml:"seller_receipt_phone,omitempty"`
	// 逆向退回卖家姓名
	SellerReceiptName string `json:"seller_receipt_name,omitempty" xml:"seller_receipt_name,omitempty"`
	// 逆向处理费
	ReverseServiceFee string `json:"reverse_service_fee,omitempty" xml:"reverse_service_fee,omitempty"`
	// spuId
	SpuId string `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
	// 订单发货类型,1:邮寄,2:上门,3:到店
	ShipType string `json:"ship_type,omitempty" xml:"ship_type,omitempty"`
	// 门店地址id
	StationId string `json:"station_id,omitempty" xml:"station_id,omitempty"`
	// 回收商appKey
	AppKey string `json:"app_key,omitempty" xml:"app_key,omitempty"`
	// 用户定价,精确到分
	ConfirmFee string `json:"confirm_fee,omitempty" xml:"confirm_fee,omitempty"`
}

ConsignmentV2orderTo 结构体

type EquipmentDto

type EquipmentDto struct {
	// 标配名称
	Name string `json:"name,omitempty" xml:"name,omitempty"`
	// 标配值,多为数量
	Value string `json:"value,omitempty" xml:"value,omitempty"`
}

EquipmentDto 结构体

type HashMap added in v1.2.9

type HashMap struct {
	// 上面区间订单
	ShipMailNo string `json:"ship_mail_no,omitempty" xml:"ship_mail_no,omitempty"`
	// 估价价格 单位分
	QaAmount string `json:"qa_amount,omitempty" xml:"qa_amount,omitempty"`
	// 参考价格起始价 单位分
	ReferenceStartPrice string `json:"reference_start_price,omitempty" xml:"reference_start_price,omitempty"`
	// 参考价格终止价 单位分
	ReferenceEndPrice string `json:"reference_end_price,omitempty" xml:"reference_end_price,omitempty"`
	// 验货报告id
	Report string `json:"report,omitempty" xml:"report,omitempty"`
	// 服务商最终成交价
	ConfirmFee string `json:"confirm_fee,omitempty" xml:"confirm_fee,omitempty"`
	// 服务商给买家发货订单号
	Ac2buyerMailNo string `json:"ac2buyer_mail_no,omitempty" xml:"ac2buyer_mail_no,omitempty"`
	// 服务商关单原因
	BuyerCloseReason string `json:"buyer_close_reason,omitempty" xml:"buyer_close_reason,omitempty"`
	// 服务商退回单号
	RefundMailNo string `json:"refund_mail_no,omitempty" xml:"refund_mail_no,omitempty"`
	// 质检工程师姓名
	ContactName string `json:"contact_name,omitempty" xml:"contact_name,omitempty"`
	// 质检工程师电话
	ContactMobile string `json:"contact_mobile,omitempty" xml:"contact_mobile,omitempty"`
}

HashMap 结构体

type IdleAdvBaseResult added in v1.2.9

type IdleAdvBaseResult struct {
	// 错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误原因描述
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
}

IdleAdvBaseResult 结构体

type IdleAdvMaterialUploadDetailTopParam added in v1.2.9

type IdleAdvMaterialUploadDetailTopParam struct {
	// 素材地址,必传字段, 如果链接有有效期,尽量有效期放开到1个小时
	Url string `json:"url,omitempty" xml:"url,omitempty"`
	// 素材名称
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 如果是视频素材,需要传当前视频的封面图地址,视频素材必填项
	CoverUrl string `json:"cover_url,omitempty" xml:"cover_url,omitempty"`
	// 素材类型,1 图片 2 视频
	Type int64 `json:"type,omitempty" xml:"type,omitempty"`
	// 必填项,如果是视频素材,需要传当前视频的封面图的宽,如果是图片素材,需要传当前图片的宽
	Width int64 `json:"width,omitempty" xml:"width,omitempty"`
	// 必填项,如果是视频素材,需要传当前视频的封面图的宽,如果是图片素材,需要传当前图片的高
	Height int64 `json:"height,omitempty" xml:"height,omitempty"`
}

IdleAdvMaterialUploadDetailTopParam 结构体

type IdleAdvMaterialUploadTopParam added in v1.2.9

type IdleAdvMaterialUploadTopParam struct {
	// 素材上传详细信息参数
	UploadDetails []IdleAdvMaterialUploadDetailTopParam `json:"upload_details,omitempty" xml:"upload_details>idle_adv_material_upload_detail_top_param,omitempty"`
}

IdleAdvMaterialUploadTopParam 结构体

type IdleAdvMaterialUploadTopResult added in v1.2.9

type IdleAdvMaterialUploadTopResult struct {
	// 失败的素材的名称,和参数传入的title对应
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 当前错误原因
	Result *IdleAdvBaseResult `json:"result,omitempty" xml:"result,omitempty"`
}

IdleAdvMaterialUploadTopResult 结构体

type IdleAdvResult added in v1.2.9

type IdleAdvResult struct {
	// 部分失败的素材错误原因细节列表,如果素材上传成功,不会在该列表中
	ErrDetail []IdleAdvMaterialUploadTopResult `json:"err_detail,omitempty" xml:"err_detail>idle_adv_material_upload_top_result,omitempty"`
	// 接口层面错误的错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 接口层面错误的错误原因描述
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 接口层面是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

IdleAdvResult 结构体

type IdleAppraiseSpuRegister4topDto added in v1.3.1

type IdleAppraiseSpuRegister4topDto struct {
	// 类目Id
	CateId string `json:"cate_id,omitempty" xml:"cate_id,omitempty"`
	// 操作类型,0新增,-1删除。当spu第一次挂载时,会进入1测试中状态。服务商联调通过后,需要再次挂载,actionType还传0,挂载信息状态会变成0已上线。
	ActionType int64 `json:"action_type,omitempty" xml:"action_type,omitempty"`
	// 验货类型,1新品,2二手
	AppraiseScene int64 `json:"appraise_scene,omitempty" xml:"appraise_scene,omitempty"`
	// brandId
	BrandId int64 `json:"brand_id,omitempty" xml:"brand_id,omitempty"`
	// spuId
	SpuId int64 `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
}

IdleAppraiseSpuRegister4topDto 结构体

type IdleCommonResult added in v1.2.5

type IdleCommonResult struct {
	// 错误码
	ErrCodeInfo string `json:"err_code_info,omitempty" xml:"err_code_info,omitempty"`
	// 上下文信息
	Context string `json:"context,omitempty" xml:"context,omitempty"`
	// 错误信息
	ErrMsgInfo string `json:"err_msg_info,omitempty" xml:"err_msg_info,omitempty"`
	// id
	Data int64 `json:"data,omitempty" xml:"data,omitempty"`
	// 成功
	RespSuccess bool `json:"resp_success,omitempty" xml:"resp_success,omitempty"`
}

IdleCommonResult 结构体

type IdleGooseFishUserInfoVo added in v1.2.9

type IdleGooseFishUserInfoVo struct {
	// 闲鱼头像
	Avatar string `json:"avatar,omitempty" xml:"avatar,omitempty"`
	// 用户闲鱼昵称
	NickName string `json:"nick_name,omitempty" xml:"nick_name,omitempty"`
	// 0男生 1女生
	Gender int64 `json:"gender,omitempty" xml:"gender,omitempty"`
}

IdleGooseFishUserInfoVo 结构体

type IdleItemApiAutoRechargeDo added in v1.2.9

type IdleItemApiAutoRechargeDo struct {
	// add:增加;remove:移除。
	Action string `json:"action,omitempty" xml:"action,omitempty"`
	// 直充附加信息
	TemplateExtraInfo string `json:"template_extra_info,omitempty" xml:"template_extra_info,omitempty"`
	// 直充模板标识
	TemplateCode string `json:"template_code,omitempty" xml:"template_code,omitempty"`
}

IdleItemApiAutoRechargeDo 结构体

type IdleItemAutoRechargeBatchRemoveApiDo added in v1.2.9

type IdleItemAutoRechargeBatchRemoveApiDo struct {
	// 商品id列表
	ItemIds []int64 `json:"item_ids,omitempty" xml:"item_ids>int64,omitempty"`
}

IdleItemAutoRechargeBatchRemoveApiDo 结构体

type IdleItemAutoRechargeBatchRemoveResult added in v1.2.9

type IdleItemAutoRechargeBatchRemoveResult struct {
	// 错误码
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// 错误说明
	ErrorMsg string `json:"error_msg,omitempty" xml:"error_msg,omitempty"`
	// 移除失败商品id
	ItemId int64 `json:"item_id,omitempty" xml:"item_id,omitempty"`
}

IdleItemAutoRechargeBatchRemoveResult 结构体

type IdleSpuRegister4topDto added in v1.3.1

type IdleSpuRegister4topDto struct {
	// 业务场景编码, 如YHB_3C、RECYCLE_PHONE,具体值由挂载spu文档给出
	Scene string `json:"scene,omitempty" xml:"scene,omitempty"`
	// 操作类型,0新增,-1删除。当spu第一次挂载时,会进入1测试中状态。服务商联调通过后,需要再次挂载,actionType还传0,挂载信息状态会变成0已上线。
	ActionType int64 `json:"action_type,omitempty" xml:"action_type,omitempty"`
	// spuId 具体值由挂载spu文档给出
	SpuId int64 `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
}

IdleSpuRegister4topDto 结构体

type IdleTopResult

type IdleTopResult struct {
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 申请结果
	Module *RefundBaseDto `json:"module,omitempty" xml:"module,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

IdleTopResult 结构体

type ImageInfoDto

type ImageInfoDto struct {
	// 图片id
	Id int64 `json:"id,omitempty" xml:"id,omitempty"`
}

ImageInfoDto 结构体

type InspectionReport

type InspectionReport struct {
	// 错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 鉴定报告
	Report string `json:"report,omitempty" xml:"report,omitempty"`
	// 错误描述
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 成色
	Degree string `json:"degree,omitempty" xml:"degree,omitempty"`
	// 估价id,与order_id任选其一,orderId优先
	QuoteId string `json:"quote_id,omitempty" xml:"quote_id,omitempty"`
	// 对此商品的质检描述
	Summary string `json:"summary,omitempty" xml:"summary,omitempty"`
	// *      * Json串:desc存储特别说明的文字描述,images存储上传的图片url;      * 形如:      * {      *   "desc":"desc",      *   "images":[      *      "imageUrl1",      *      "imageUrl2"      *   ]      * };
	Explanation string `json:"explanation,omitempty" xml:"explanation,omitempty"`
	// 设备imei号
	Imei string `json:"imei,omitempty" xml:"imei,omitempty"`
	// 价格
	Price int64 `json:"price,omitempty" xml:"price,omitempty"`
	// 订单,orderId优先,与quote_id任选其一
	OrderId int64 `json:"order_id,omitempty" xml:"order_id,omitempty"`
	// 手淘商家的淘宝账号id,通过 spuId 和 recycleSupplierId 定位到唯一的回收模板
	RecycleSupplierId int64 `json:"recycle_supplier_id,omitempty" xml:"recycle_supplier_id,omitempty"`
	// 质检类型(1第一次直接;2二次复检)
	AppraiseType int64 `json:"appraise_type,omitempty" xml:"appraise_type,omitempty"`
	// 成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

InspectionReport 结构体

type ItemPvPairDto

type ItemPvPairDto struct {
	// sku属性名
	PropText string `json:"prop_text,omitempty" xml:"prop_text,omitempty"`
	// sku属性值名称
	ValueText string `json:"value_text,omitempty" xml:"value_text,omitempty"`
}

ItemPvPairDto 结构体

type ItemSkuDto

type ItemSkuDto struct {
	// sku属性
	PropList []ItemPvPairDto `json:"prop_list,omitempty" xml:"prop_list>item_pv_pair_dto,omitempty"`
	// sku价格,单位分
	Price int64 `json:"price,omitempty" xml:"price,omitempty"`
	// sku库存
	Quantity int64 `json:"quantity,omitempty" xml:"quantity,omitempty"`
	// sku id
	SkuId int64 `json:"sku_id,omitempty" xml:"sku_id,omitempty"`
	// 商品id
	ItemId int64 `json:"item_id,omitempty" xml:"item_id,omitempty"`
}

ItemSkuDto 结构体

type LogisticsDto

type LogisticsDto struct {
	// 快递/物流名称
	LogisticsName string `json:"logistics_name,omitempty" xml:"logistics_name,omitempty"`
	// 物流id
	LogisticsId string `json:"logistics_id,omitempty" xml:"logistics_id,omitempty"`
	// 发货人地址信息
	SenderAddress *UserAddressDto `json:"sender_address,omitempty" xml:"sender_address,omitempty"`
}

LogisticsDto 结构体

type MediaDto

type MediaDto struct {
	// 商品主图列表
	Images []ImageInfoDto `json:"images,omitempty" xml:"images>image_info_dto,omitempty"`
	// 商品详情图片列表
	PropImages []ImageInfoDto `json:"prop_images,omitempty" xml:"prop_images>image_info_dto,omitempty"`
}

MediaDto 结构体

type OneSpuSpRegisterUpdateParam added in v1.2.8

type OneSpuSpRegisterUpdateParam struct {
	// 要挂载的闲鱼业务 PD 值,如:传 "YHB" 表示验货宝
	PdCode string `json:"pd_code,omitempty" xml:"pd_code,omitempty"`
	// 要挂载的业务场景,如:传 "YHB_PHONE" 表示验货宝手机类目
	SceneType string `json:"scene_type,omitempty" xml:"scene_type,omitempty"`
	// 要挂载的 SPU id
	XpuId string `json:"xpu_id,omitempty" xml:"xpu_id,omitempty"`
	// 挂载动作。-1(下线);1(挂载)
	Action string `json:"action,omitempty" xml:"action,omitempty"`
	// 当前服务提供方的标识符,如 APPKEY
	SpCode string `json:"sp_code,omitempty" xml:"sp_code,omitempty"`
}

OneSpuSpRegisterUpdateParam 结构体

type OrderCreateRequest added in v1.2.9

type OrderCreateRequest struct {
	// 额外信息
	ExtraData string `json:"extra_data,omitempty" xml:"extra_data,omitempty"`
	// 虚拟商品code,virtual_item_order为true时必传
	VirtualItemCode string `json:"virtual_item_code,omitempty" xml:"virtual_item_code,omitempty"`
	// 业务产品标识
	XGlobalBizCode string `json:"x_global_biz_code,omitempty" xml:"x_global_biz_code,omitempty"`
	// 邮寄地址的ID。不传入表示不需要邮寄
	DeliverId string `json:"deliver_id,omitempty" xml:"deliver_id,omitempty"`
	// 商品id,virtual_item_order为false时必传
	ItemId int64 `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 商品单价,单位分。
	Amount int64 `json:"amount,omitempty" xml:"amount,omitempty"`
	// 购买数量,默认1个
	BuyQuantity int64 `json:"buy_quantity,omitempty" xml:"buy_quantity,omitempty"`
	// 是否为虚拟商品下单,默认为false
	VirtualItemOrder bool `json:"virtual_item_order,omitempty" xml:"virtual_item_order,omitempty"`
}

OrderCreateRequest 结构体

type OrderCreateResult added in v1.2.9

type OrderCreateResult struct {
	// 订单编号
	BizOrderId int64 `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
}

OrderCreateResult 结构体

type OrderDummySendRequest

type OrderDummySendRequest struct {
	// 需要虚拟发货的订单号
	BizOrderId int64 `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
}

OrderDummySendRequest 结构体

type PayQueryRequest

type PayQueryRequest struct {
	// 业务订单号
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
}

PayQueryRequest 结构体

type PriceDto

type PriceDto struct {
	// 星级
	Star string `json:"star,omitempty" xml:"star,omitempty"`
	// 押金,单位分
	Deposit int64 `json:"deposit,omitempty" xml:"deposit,omitempty"`
	// 市场价,单位分
	OriginalPrice int64 `json:"original_price,omitempty" xml:"original_price,omitempty"`
	// 买断价,单位分
	ReservePrice int64 `json:"reserve_price,omitempty" xml:"reserve_price,omitempty"`
	// 日结算价格,单位分
	SettlePricePerDay int64 `json:"settle_price_per_day,omitempty" xml:"settle_price_per_day,omitempty"`
}

PriceDto 结构体

type PromotionActivityInfoVo added in v1.2.9

type PromotionActivityInfoVo struct {
	// 当前用户是否参与了营销活动
	Joined bool `json:"joined,omitempty" xml:"joined,omitempty"`
}

PromotionActivityInfoVo 结构体

type PromotionActivityQueryParam added in v1.2.9

type PromotionActivityQueryParam struct {
	// 业务唯一标识
	UniqueKey string `json:"unique_key,omitempty" xml:"unique_key,omitempty"`
	// 预约时间戳,单位秒
	BookTime string `json:"book_time,omitempty" xml:"book_time,omitempty"`
	// 素材ID
	MaterialId int64 `json:"material_id,omitempty" xml:"material_id,omitempty"`
	// 任务ID
	TaskId int64 `json:"task_id,omitempty" xml:"task_id,omitempty"`
}

PromotionActivityQueryParam 结构体

type QuestionnaireInfoTopVo added in v1.2.7

type QuestionnaireInfoTopVo struct {
	// 投放业务,RECYCLE_3C(回收),RECYCLE_TENDER(寄拍)
	BizType string `json:"biz_type,omitempty" xml:"biz_type,omitempty"`
	// 在线版本号
	OnlineVersion string `json:"online_version,omitempty" xml:"online_version,omitempty"`
	// 在线问卷内容
	OnlineQuestionnaire string `json:"online_questionnaire,omitempty" xml:"online_questionnaire,omitempty"`
	// 预发布版本号
	PreVersion string `json:"pre_version,omitempty" xml:"pre_version,omitempty"`
	// 预发布问卷
	PreQuestionnaire string `json:"pre_questionnaire,omitempty" xml:"pre_questionnaire,omitempty"`
	// 预发模板名称
	PreTemplateName string `json:"pre_template_name,omitempty" xml:"pre_template_name,omitempty"`
	// 线上模板名称
	OnlineTemplateName string `json:"online_template_name,omitempty" xml:"online_template_name,omitempty"`
	// SPUID
	SpuId int64 `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
	// 预发模板ID
	PreTemplateId int64 `json:"pre_template_id,omitempty" xml:"pre_template_id,omitempty"`
	// 线上模板ID
	OnlineTemplateId int64 `json:"online_template_id,omitempty" xml:"online_template_id,omitempty"`
}

QuestionnaireInfoTopVo 结构体

type QuestionnaireSupportCmd added in v1.2.5

type QuestionnaireSupportCmd struct {
	// 投放业务,RECYCLE_3C(回收),RECYCLE_TENDER(寄拍)
	BizType string `json:"biz_type,omitempty" xml:"biz_type,omitempty"`
	// 预上线版本号
	PreVersion string `json:"pre_version,omitempty" xml:"pre_version,omitempty"`
	// spu id
	SpuId int64 `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
}

QuestionnaireSupportCmd 结构体

type QuestionnaireSupportResult added in v1.2.5

type QuestionnaireSupportResult struct {
	// 投放业务
	BizType string `json:"biz_type,omitempty" xml:"biz_type,omitempty"`
	// 预上线版本号
	PreVersion string `json:"pre_version,omitempty" xml:"pre_version,omitempty"`
	// spu id
	SpuId int64 `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
}

QuestionnaireSupportResult 结构体

type RecycleOrderSynDto

type RecycleOrderSynDto struct {
	// 订单号
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 1:置订单可见 2:已上门取件    3:已质检      4:卖家确认交易完成      5:回收商确认交易完成      6:卖家订单已评价      7:回收商订单已评价  8:信用预付订单打款 101:货物已退回  103:回收商关闭订单  104:支付宝代扣失败 105:支付宝代扣成 106:支付宝代扣逾期
	OrderStatus string `json:"order_status,omitempty" xml:"order_status,omitempty"`
	// 回收商在top上申请的appkey
	PartnerKey string `json:"partner_key,omitempty" xml:"partner_key,omitempty"`
	// 属性入参
	Attribute *Attribute `json:"attribute,omitempty" xml:"attribute,omitempty"`
}

RecycleOrderSynDto 结构体

type RecycleRefundDetailDto

type RecycleRefundDetailDto struct {
	// 毫秒,操作超时时间,截止时间
	OpTimeout string `json:"op_timeout,omitempty" xml:"op_timeout,omitempty"`
	// 订单号
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 状态(1, "买家已经申请退款,等待卖家同意"),  (2, "卖家已经同意退货退款,等待买家退货"), --该状态下卖家已经提供退货地址,同意退货退款和发送地址是同时的  (3, "买家已经退货,等待卖家确认收货"),  (4, "退款关闭"),  (5, "退款成功"), --仅退款情况下是从状态1变更到5,同意退款和退款是同时的  (6, "卖家拒绝退款"),  (7, "等待买家确认重新邮寄的货物"),--如补寄等情形,一般不会出现  (8, "等待卖家确认退货地址")
	RefundStatus string `json:"refund_status,omitempty" xml:"refund_status,omitempty"`
	// 退款状态描述
	RefundStatusDesc string `json:"refund_status_desc,omitempty" xml:"refund_status_desc,omitempty"`
	// 退款金额
	RefundFee string `json:"refund_fee,omitempty" xml:"refund_fee,omitempty"`
	// 退款描述
	RefundDesc string `json:"refund_desc,omitempty" xml:"refund_desc,omitempty"`
	// 申请原因
	ApplyReason string `json:"apply_reason,omitempty" xml:"apply_reason,omitempty"`
	// 拒绝原因
	RefuseReason string `json:"refuse_reason,omitempty" xml:"refuse_reason,omitempty"`
	// 退款完结时间
	RefundEndTime string `json:"refund_end_time,omitempty" xml:"refund_end_time,omitempty"`
	// 退款开始时间
	RefundStartTime string `json:"refund_start_time,omitempty" xml:"refund_start_time,omitempty"`
	// 卖家同意退货说明
	SellerAgreeMsg string `json:"seller_agree_msg,omitempty" xml:"seller_agree_msg,omitempty"`
	// 地址信息,交易状态为2时返回此字段
	SellerAddress *ShippingAddressInfo `json:"seller_address,omitempty" xml:"seller_address,omitempty"`
	// 实际退款金额,不包括追缴单
	ActualRefundFee int64 `json:"actual_refund_fee,omitempty" xml:"actual_refund_fee,omitempty"`
	// 追缴单
	RecoverOrderInfo *AlipayOrderDto `json:"recover_order_info,omitempty" xml:"recover_order_info,omitempty"`
}

RecycleRefundDetailDto 结构体

type RecycleRefundTopRequest

type RecycleRefundTopRequest struct {
	// 申请仅退款
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 订单号
	BizOrderId int64 `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
}

RecycleRefundTopRequest 结构体

type RecycleResult

type RecycleResult struct {
	// errMsg
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// errCode
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误信息
	ErrMessage string `json:"err_message,omitempty" xml:"err_message,omitempty"`
	// 闲鱼状态 0:为在线 1:待测试
	SpuStatus int64 `json:"spu_status,omitempty" xml:"spu_status,omitempty"`
	// success
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

RecycleResult 结构体

type RecycleReturnGoodsRequest

type RecycleReturnGoodsRequest struct {
	// 快递公司
	LogisticsCompanyName string `json:"logistics_company_name,omitempty" xml:"logistics_company_name,omitempty"`
	// 运单号
	LogisticsMailNo string `json:"logistics_mail_no,omitempty" xml:"logistics_mail_no,omitempty"`
	// 卖家电话
	MobileNumber string `json:"mobile_number,omitempty" xml:"mobile_number,omitempty"`
	// 订单号
	BizOrderId int64 `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
}

RecycleReturnGoodsRequest 结构体

type RecycleSpuTemplate

type RecycleSpuTemplate struct {
	// 可选, 回收V1版本:3C数码"3C",奢侈品"LUXURIES",大件"BULKS",车"CAR",母婴"BABY",办公设备"OFFICE",美妆"MAKEUP",服装"CLOTHING",低残值"LOWVALUE",虚拟卡券"VIRTUAL"
	BizCode string `json:"biz_code,omitempty" xml:"biz_code,omitempty"`
	// 业务支持的产品类型:BM:帮卖,HS:回收,YJHX:天猫以旧换新,SYHS:淘宝私域回收
	PdCode string `json:"pd_code,omitempty" xml:"pd_code,omitempty"`
	// 服务商支持的SPU挂载:0和2:第一次请求预挂载新增,二次请求上线,上线后状态不会再变化;1:下线;
	ActionType int64 `json:"action_type,omitempty" xml:"action_type,omitempty"`
	// 淘宝商家ID,recycle_type = 2时才有效
	RecycleSupplierId int64 `json:"recycle_supplier_id,omitempty" xml:"recycle_supplier_id,omitempty"`
	// SPUID
	SpuId int64 `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
	// 回收商类型:1:专业服务商  2:淘宝商家
	RecycleType int64 `json:"recycle_type,omitempty" xml:"recycle_type,omitempty"`
}

RecycleSpuTemplate 结构体

type RefundBaseDto

type RefundBaseDto struct {
	// 退款状态描述
	RefundStatusDesc string `json:"refund_status_desc,omitempty" xml:"refund_status_desc,omitempty"`
	// 订单号
	BizOrderId int64 `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 退款状态
	RefundStatus int64 `json:"refund_status,omitempty" xml:"refund_status,omitempty"`
	// 退款金额/分
	RefundFee int64 `json:"refund_fee,omitempty" xml:"refund_fee,omitempty"`
}

RefundBaseDto 结构体

type RefundDto

type RefundDto struct {
	// 退款状态 与逆向DisputeStatusEnum 一致,1-9
	RefundStatus string `json:"refund_status,omitempty" xml:"refund_status,omitempty"`
	// 退款时间
	RefundTime string `json:"refund_time,omitempty" xml:"refund_time,omitempty"`
	// 申请退款类型: REFUND_ONLY_NO_SHIP(未发货仅退款),REFUND_ONLY_NO_RECIVE(已发货未收到货仅退款),REFUND_ONLY_WHIT_GOODS(收到货仅退款(退货退款))
	RefundType string `json:"refund_type,omitempty" xml:"refund_type,omitempty"`
	// 退货状态 GoodsStatusEnum 一致
	ReturnGoodsStatus string `json:"return_goods_status,omitempty" xml:"return_goods_status,omitempty"`
	// 申请退款金额
	ApplyRefundFee int64 `json:"apply_refund_fee,omitempty" xml:"apply_refund_fee,omitempty"`
	// 订单Id
	BizOrderId int64 `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 退款单ID
	DisputeId int64 `json:"dispute_id,omitempty" xml:"dispute_id,omitempty"`
	// 实际退款金额
	RealRefundFee int64 `json:"real_refund_fee,omitempty" xml:"real_refund_fee,omitempty"`
	// 到达下一个节点的超时时间点
	Timeout int64 `json:"timeout,omitempty" xml:"timeout,omitempty"`
}

RefundDto 结构体

type RentItemDto

type RentItemDto struct {
	// 标签
	FeaturedTags []string `json:"featured_tags,omitempty" xml:"featured_tags>string,omitempty"`
	// sku
	ItemSkuList []ItemSkuDto `json:"item_sku_list,omitempty" xml:"item_sku_list>item_sku_dto,omitempty"`
	// 类目属性对
	PropPairs []ItemPvPairDto `json:"prop_pairs,omitempty" xml:"prop_pairs>item_pv_pair_dto,omitempty"`
	// 标配信息
	StandardEquipments []EquipmentDto `json:"standard_equipments,omitempty" xml:"standard_equipments>equipment_dto,omitempty"`
	// 至少5个字符
	Desc string `json:"desc,omitempty" xml:"desc,omitempty"`
	// 标题,最少一个5个字符
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 地址信息
	Address *AddressDto `json:"address,omitempty" xml:"address,omitempty"`
	// 类目id
	CatId int64 `json:"cat_id,omitempty" xml:"cat_id,omitempty"`
	// 商品图片
	Media *MediaDto `json:"media,omitempty" xml:"media,omitempty"`
	// 价格信息
	PriceInfo *PriceDto `json:"price_info,omitempty" xml:"price_info,omitempty"`
	// 库存,无sku信息时必选
	Quantity int64 `json:"quantity,omitempty" xml:"quantity,omitempty"`
	// 新旧程度,10表示全新,9表示九成新
	UsedLevel int64 `json:"used_level,omitempty" xml:"used_level,omitempty"`
	// 物流模板id
	TemplateId int64 `json:"template_id,omitempty" xml:"template_id,omitempty"`
	// 要更新的商品id
	ItemId int64 `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 状态,可选值为0(表示上架),-2(表示下架),不填默认为0
	Status int64 `json:"status,omitempty" xml:"status,omitempty"`
	// true表示包邮,否则表示不包邮
	FreePostage bool `json:"free_postage,omitempty" xml:"free_postage,omitempty"`
}

RentItemDto 结构体

type RentalOrderDto

type RentalOrderDto struct {
	// 订单商品信息
	Items []RentalOrderItemDto `json:"items,omitempty" xml:"items>rental_order_item_dto,omitempty"`
	// 买家id
	BuyerId string `json:"buyer_id,omitempty" xml:"buyer_id,omitempty"`
	// 预约时间
	ReservedPackageTime string `json:"reserved_package_time,omitempty" xml:"reserved_package_time,omitempty"`
	// 用户会员卡到期时间
	BuyerMemberExpireDate string `json:"buyer_member_expire_date,omitempty" xml:"buyer_member_expire_date,omitempty"`
	// 买家地址
	BuyerAddress *UserAddressDto `json:"buyer_address,omitempty" xml:"buyer_address,omitempty"`
	// 订单id
	OrderId int64 `json:"order_id,omitempty" xml:"order_id,omitempty"`
	// 订单状态
	Status int64 `json:"status,omitempty" xml:"status,omitempty"`
	// 邮费,单位分
	Postage int64 `json:"postage,omitempty" xml:"postage,omitempty"`
}

RentalOrderDto 结构体

type RentalOrderItemDto

type RentalOrderItemDto struct {
	// 商品id
	ItemId int64 `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// sku信息
	SkuDTO *ItemSkuDto `json:"sku_d_t_o,omitempty" xml:"sku_d_t_o,omitempty"`
	// 价格信息
	Price *PriceDto `json:"price,omitempty" xml:"price,omitempty"`
}

RentalOrderItemDto 结构体

type ReportUploadTopCmd added in v1.2.8

type ReportUploadTopCmd struct {
	// 唯一码,手机传imei,奢品传溯源码
	TraceCode string `json:"trace_code,omitempty" xml:"trace_code,omitempty"`
	// 产品标识,验货宝:YHB;回收:RECYCLE
	ProductCode string `json:"product_code,omitempty" xml:"product_code,omitempty"`
	// 报告内容JSON
	Report string `json:"report,omitempty" xml:"report,omitempty"`
	// 订单号
	OrderId int64 `json:"order_id,omitempty" xml:"order_id,omitempty"`
	// 价格(分)
	Price int64 `json:"price,omitempty" xml:"price,omitempty"`
	// SPUID
	SpuId int64 `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
}

ReportUploadTopCmd 结构体

type Serializable

type Serializable struct {
	// 明细
	PayDetails []SubPayBillDto `json:"pay_details,omitempty" xml:"pay_details>sub_pay_bill_dto,omitempty"`
	// 代扣计划列表
	PlanIds []string `json:"plan_ids,omitempty" xml:"plan_ids>string,omitempty"`
	// 商户订单号(唯一建)
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 代扣计划
	PlanId string `json:"plan_id,omitempty" xml:"plan_id,omitempty"`
	// 支付宝流水号
	AlipayTradeNo string `json:"alipay_trade_no,omitempty" xml:"alipay_trade_no,omitempty"`
	// 支付时间
	PayTime string `json:"pay_time,omitempty" xml:"pay_time,omitempty"`
	// INIT:初始状态;PARTIAL_SUCCESSED:支付部分成功;SUCCESSED:支付成功;FAILED:支付失败
	PayStatus string `json:"pay_status,omitempty" xml:"pay_status,omitempty"`
	// 业务编码:R1:回收
	PayBizCode string `json:"pay_biz_code,omitempty" xml:"pay_biz_code,omitempty"`
	// 状态描述
	PayStatusDesc string `json:"pay_status_desc,omitempty" xml:"pay_status_desc,omitempty"`
	// 回收商appkey
	AppKey string `json:"app_key,omitempty" xml:"app_key,omitempty"`
	// 买家nick
	BuyerNick string `json:"buyer_nick,omitempty" xml:"buyer_nick,omitempty"`
	// 卖家nick
	SellerNick string `json:"seller_nick,omitempty" xml:"seller_nick,omitempty"`
	// 卖家支付宝id,用于回收商支付宝打款
	SellerAlipayUserId string `json:"seller_alipay_user_id,omitempty" xml:"seller_alipay_user_id,omitempty"`
	// 卖家支付宝账号,已脱敏
	SellerAlipayAccount string `json:"seller_alipay_account,omitempty" xml:"seller_alipay_account,omitempty"`
	// 卖家收货地址
	SellerAddress string `json:"seller_address,omitempty" xml:"seller_address,omitempty"`
	// 卖家手机号码
	SellerPhone string `json:"seller_phone,omitempty" xml:"seller_phone,omitempty"`
	// 取件类型 1:顺风 2:上门取件
	ShipType string `json:"ship_type,omitempty" xml:"ship_type,omitempty"`
	// 取件时间
	ShipTime string `json:"ship_time,omitempty" xml:"ship_time,omitempty"`
	// 卖家姓名
	SellerRealName string `json:"seller_real_name,omitempty" xml:"seller_real_name,omitempty"`
	// 支付宝签约code
	ZfbDkCode string `json:"zfb_dk_code,omitempty" xml:"zfb_dk_code,omitempty"`
	// 估价id
	ApprizeId string `json:"apprize_id,omitempty" xml:"apprize_id,omitempty"`
	// 城市
	City string `json:"city,omitempty" xml:"city,omitempty"`
	// 省
	Province string `json:"province,omitempty" xml:"province,omitempty"`
	// 区
	Area string `json:"area,omitempty" xml:"area,omitempty"`
	// 村
	Country string `json:"country,omitempty" xml:"country,omitempty"`
	// 芝麻分
	ZmScore string `json:"zm_score,omitempty" xml:"zm_score,omitempty"`
	// 未来的卡券id
	CouponId string `json:"coupon_id,omitempty" xml:"coupon_id,omitempty"`
	// 加价券金额
	CouponFee string `json:"coupon_fee,omitempty" xml:"coupon_fee,omitempty"`
	// 一、按百分比 {     "actType": 1,     "beg": "2017-12-01 12:00:00",     "couponFee": 4400,     "couponId": "-2",     "desc": "满50加价10%",     "end": "2017-12-13 12:00:00",     "idleBizCode": "9",     "low": 5000,     "percent": 0.1 }  二、按固定加价 {     "actType": 2,     "beg": "2017-12-01 12:00:00",     "couponFee": 3000,     "couponId": "-3",     "desc": "满50固定加价30",     "end": "2017-12-13 12:00:00",     "idleBizCode": "9",     "low": 5000,     "addFee": 3000 }  三、阶梯价 {     "actType": 3,     "beg": "2017-12-21 16:00:00",     "couponFee": 0,     "couponId": "-5",     "desc": "阶梯价",     "end": "2019-02-31 00:00:00",     "idleBizCode": "8",     "low": 0,     "range": [{         "actType": 1,         "couponFee": 0,         "desc": "100~2000元,加价10%",         "low": 10000,         "percent": 0.1,         "up": 200000     },     {         "actType": 1,         "couponFee": 0,         "desc": "2000~3000元,加价20%",         "low": 200000,         "percent": 0.2,         "up": 300000     },     {         "actType": 2,         "addFee": 70000,         "couponFee": 0,         "desc": "3000元以上,加价700",         "low": 300000,         "up": 0     }] }
	CouponRule string `json:"coupon_rule,omitempty" xml:"coupon_rule,omitempty"`
	// 回收渠道
	Channel string `json:"channel,omitempty" xml:"channel,omitempty"`
	// 1 好评,0 默认中评
	RateGrade string `json:"rate_grade,omitempty" xml:"rate_grade,omitempty"`
	// 评价内容
	RateContent string `json:"rate_content,omitempty" xml:"rate_content,omitempty"`
	// 卖家关闭订单原因
	CloseReason string `json:"close_reason,omitempty" xml:"close_reason,omitempty"`
	// 买家关闭订单原因
	BuyerCloseReason string `json:"buyer_close_reason,omitempty" xml:"buyer_close_reason,omitempty"`
	// 卖家申请退回原因
	RefundReason string `json:"refund_reason,omitempty" xml:"refund_reason,omitempty"`
	// onlien:线上环境  pre:测试环境
	Env string `json:"env,omitempty" xml:"env,omitempty"`
	// 订单创建时间
	GmtCreate string `json:"gmt_create,omitempty" xml:"gmt_create,omitempty"`
	// 600以下为Z5,600-649为Z4,650-699为Z3,700-749为Z2,750及以上为Z1
	ZmLevel string `json:"zm_level,omitempty" xml:"zm_level,omitempty"`
	// 1:支付宝现金 2:天猫红包
	IdlePayType string `json:"idle_pay_type,omitempty" xml:"idle_pay_type,omitempty"`
	// 渠道内的业务数据json格式 比如 ship=1 服装类的不需要发货,weight=5-15 代表服装5-15kg, userLevel=vip 代表免议价用户,sellerRealPhone 淘宝账号绑定的手机号
	ChannelData string `json:"channel_data,omitempty" xml:"channel_data,omitempty"`
	// spuId
	SpuId string `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
	// xydk:闲鱼代扣,信用订单使用
	DkType string `json:"dk_type,omitempty" xml:"dk_type,omitempty"`
	// 回收订单对应的快递单号
	ShipMailNo string `json:"ship_mail_no,omitempty" xml:"ship_mail_no,omitempty"`
	// 多笔估价场景,订单纬度对应的多笔估价集合
	ApprizeIdList string `json:"apprize_id_list,omitempty" xml:"apprize_id_list,omitempty"`
	// 多笔估价场景,订单纬度对应的多笔spuId集合
	SpuIdList string `json:"spu_id_list,omitempty" xml:"spu_id_list,omitempty"`
	// 返现金额,单位分
	CashFee string `json:"cash_fee,omitempty" xml:"cash_fee,omitempty"`
	// 估计版本,第几次估价
	QuoteVersion string `json:"quote_version,omitempty" xml:"quote_version,omitempty"`
	// 回收场景
	SceneType string `json:"scene_type,omitempty" xml:"scene_type,omitempty"`
	// 取件截止时间
	ShipTimeEnd string `json:"ship_time_end,omitempty" xml:"ship_time_end,omitempty"`
	// 当前代扣状态:104代扣失败、105代扣成功、106代扣逾期
	DkStatus string `json:"dk_status,omitempty" xml:"dk_status,omitempty"`
	// 卖家地址-乡镇/街道
	Town string `json:"town,omitempty" xml:"town,omitempty"`
	// 支付宝交易号
	AlipayOrderId string `json:"alipay_order_id,omitempty" xml:"alipay_order_id,omitempty"`
	// 金额
	Amount string `json:"amount,omitempty" xml:"amount,omitempty"`
	// 外部业务ID
	OuterId string `json:"outer_id,omitempty" xml:"outer_id,omitempty"`
	// 申请扣款金额(单位分)
	TotalAmount int64 `json:"total_amount,omitempty" xml:"total_amount,omitempty"`
	// 实际支付金额(单位分)
	ReceiptAmount int64 `json:"receipt_amount,omitempty" xml:"receipt_amount,omitempty"`
	// 回收订单状态
	OrderStatus int64 `json:"order_status,omitempty" xml:"order_status,omitempty"`
	// 买家id,已脱敏处理返回0
	BuyerId int64 `json:"buyer_id,omitempty" xml:"buyer_id,omitempty"`
	// 卖家id,已脱敏处理返回0
	SellerId int64 `json:"seller_id,omitempty" xml:"seller_id,omitempty"`
	// 信用预付金额,单位分
	CreditPayAmount int64 `json:"credit_pay_amount,omitempty" xml:"credit_pay_amount,omitempty"`
	// 估价金额,单位分
	ApprizeAmount int64 `json:"apprize_amount,omitempty" xml:"apprize_amount,omitempty"`
	// 是否信用预付订单
	CreditPay bool `json:"credit_pay,omitempty" xml:"credit_pay,omitempty"`
	// 是否支付宝签约
	ZfbDk bool `json:"zfb_dk,omitempty" xml:"zfb_dk,omitempty"`
	// 是否为返现订单
	CashOrder bool `json:"cash_order,omitempty" xml:"cash_order,omitempty"`
}

Serializable 结构体

type ServicePlanInfo added in v1.2.8

type ServicePlanInfo struct {
	// 售后处理类型,见对接文档
	ServiceType string `json:"service_type,omitempty" xml:"service_type,omitempty"`
	// 反馈信息
	ShowMessage string `json:"show_message,omitempty" xml:"show_message,omitempty"`
	// 仅退款金额(分)
	OnlyRefundCent int64 `json:"only_refund_cent,omitempty" xml:"only_refund_cent,omitempty"`
	// 退货退款金额(分)
	RefundAndReturnCent int64 `json:"refund_and_return_cent,omitempty" xml:"refund_and_return_cent,omitempty"`
}

ServicePlanInfo 结构体

type ShippingAddressInfo

type ShippingAddressInfo struct {
	// 这里必须写全详细地址
	AddressDetail string `json:"address_detail,omitempty" xml:"address_detail,omitempty"`
	// 区
	Area string `json:"area,omitempty" xml:"area,omitempty"`
	// 市
	City string `json:"city,omitempty" xml:"city,omitempty"`
	// 收件人姓名
	ConsigneeName string `json:"consignee_name,omitempty" xml:"consignee_name,omitempty"`
	// 手机号码
	MobilePhone string `json:"mobile_phone,omitempty" xml:"mobile_phone,omitempty"`
	// 邮编
	PostCode string `json:"post_code,omitempty" xml:"post_code,omitempty"`
	// 省
	Province string `json:"province,omitempty" xml:"province,omitempty"`
	// 固话
	TelNo string `json:"tel_no,omitempty" xml:"tel_no,omitempty"`
	// 四级地址 镇/街道
	Town string `json:"town,omitempty" xml:"town,omitempty"`
}

ShippingAddressInfo 结构体

type SpuQuestionnaireTopQry added in v1.2.5

type SpuQuestionnaireTopQry struct {
	// 投放业务,RECYCLE_3C(回收),RECYCLE_TENDER(寄拍)
	BizType string `json:"biz_type,omitempty" xml:"biz_type,omitempty"`
	// SPU ID
	SpuId int64 `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
}

SpuQuestionnaireTopQry 结构体

type SpuStatistics

type SpuStatistics struct {
	// 开始时间(预留)
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 场景:3C(3C行业)、BULKS(大件)
	SceneType string `json:"scene_type,omitempty" xml:"scene_type,omitempty"`
	// 预留字段
	SkuId string `json:"sku_id,omitempty" xml:"sku_id,omitempty"`
	// 该spu
	Descr string `json:"descr,omitempty" xml:"descr,omitempty"`
	// 结束时间(预留)
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 结构数据,涉及金额的数据单位为分,精确到元
	SpuData string `json:"spu_data,omitempty" xml:"spu_data,omitempty"`
	// 数据状态:1(可用)2(不可用)
	Status int64 `json:"status,omitempty" xml:"status,omitempty"`
	// spuId
	SpuId int64 `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
	// 版本号(预留)
	Version int64 `json:"version,omitempty" xml:"version,omitempty"`
}

SpuStatistics 结构体

type SubPayBillDto

type SubPayBillDto struct {
	// 支付时间
	PayTime string `json:"pay_time,omitempty" xml:"pay_time,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 支付状态描述
	PayStatusDesc string `json:"pay_status_desc,omitempty" xml:"pay_status_desc,omitempty"`
	// 支付状态
	PayStatus string `json:"pay_status,omitempty" xml:"pay_status,omitempty"`
	// 代扣错误信息
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 代扣错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 支付宝流水号
	AlipayTradeNo string `json:"alipay_trade_no,omitempty" xml:"alipay_trade_no,omitempty"`
	// 金额
	Amount string `json:"amount,omitempty" xml:"amount,omitempty"`
	// 计划id
	PlanId string `json:"plan_id,omitempty" xml:"plan_id,omitempty"`
}

SubPayBillDto 结构体

type TaobaoidlerecyclerefundapplyAPIRequest added in v1.3.1

type TaobaoidlerecyclerefundapplyAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

TaobaoidlerecyclerefundapplyAPIRequest 闲鱼回收交易退款申请V2 API请求 taobao.idle.recycle.refund.apply

回收商买家申请退款

func NewTaobaoidlerecyclerefundapplyRequest added in v1.3.1

func NewTaobaoidlerecyclerefundapplyRequest() *TaobaoidlerecyclerefundapplyAPIRequest

NewTaobaoidlerecyclerefundapplyRequest 初始化TaobaoidlerecyclerefundapplyAPIRequest对象

func (TaobaoidlerecyclerefundapplyAPIRequest) GetApiMethodName added in v1.3.1

func (r TaobaoidlerecyclerefundapplyAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoidlerecyclerefundapplyAPIRequest) GetApiParams added in v1.3.1

func (r TaobaoidlerecyclerefundapplyAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoidlerecyclerefundapplyAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (TaobaoidlerecyclerefundapplyAPIRequest) GetRefundApply added in v1.3.1

GetRefundApply RefundApply Getter

func (*TaobaoidlerecyclerefundapplyAPIRequest) SetRefundApply added in v1.3.1

func (r *TaobaoidlerecyclerefundapplyAPIRequest) SetRefundApply(_refundApply *RecycleRefundTopRequest) error

SetRefundApply is RefundApply Setter 退款申请

type TaobaoidlerecyclerefundapplyAPIResponse added in v1.3.1

type TaobaoidlerecyclerefundapplyAPIResponse struct {
	model.CommonResponse
	TaobaoidlerecyclerefundapplyAPIResponseModel
}

TaobaoidlerecyclerefundapplyAPIResponse 闲鱼回收交易退款申请V2 API返回值 taobao.idle.recycle.refund.apply

回收商买家申请退款

type TaobaoidlerecyclerefundapplyAPIResponseModel added in v1.3.1

type TaobaoidlerecyclerefundapplyAPIResponseModel struct {
	XMLName xml.Name `xml:"idle_recycle_refund_apply_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 退款申请结果
	Result *IdleTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoidlerecyclerefundapplyAPIResponseModel is 闲鱼回收交易退款申请V2 成功返回结果

type TaobaoidlerecyclerefundcancleapplyAPIRequest added in v1.3.1

type TaobaoidlerecyclerefundcancleapplyAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

TaobaoidlerecyclerefundcancleapplyAPIRequest 闲鱼回收取消退款申请V2 API请求 taobao.idle.recycle.refund.cancleapply

回收商的回收订单取消退款申请

func NewTaobaoidlerecyclerefundcancleapplyRequest added in v1.3.1

func NewTaobaoidlerecyclerefundcancleapplyRequest() *TaobaoidlerecyclerefundcancleapplyAPIRequest

NewTaobaoidlerecyclerefundcancleapplyRequest 初始化TaobaoidlerecyclerefundcancleapplyAPIRequest对象

func (TaobaoidlerecyclerefundcancleapplyAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoidlerecyclerefundcancleapplyAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoidlerecyclerefundcancleapplyAPIRequest) GetBizOrderId added in v1.3.1

GetBizOrderId BizOrderId Getter

func (TaobaoidlerecyclerefundcancleapplyAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*TaobaoidlerecyclerefundcancleapplyAPIRequest) SetBizOrderId added in v1.3.1

func (r *TaobaoidlerecyclerefundcancleapplyAPIRequest) SetBizOrderId(_bizOrderId int64) error

SetBizOrderId is BizOrderId Setter 订单号

type TaobaoidlerecyclerefundcancleapplyAPIResponse added in v1.3.1

type TaobaoidlerecyclerefundcancleapplyAPIResponse struct {
	model.CommonResponse
	TaobaoidlerecyclerefundcancleapplyAPIResponseModel
}

TaobaoidlerecyclerefundcancleapplyAPIResponse 闲鱼回收取消退款申请V2 API返回值 taobao.idle.recycle.refund.cancleapply

回收商的回收订单取消退款申请

type TaobaoidlerecyclerefundcancleapplyAPIResponseModel added in v1.3.1

type TaobaoidlerecyclerefundcancleapplyAPIResponseModel struct {
	XMLName xml.Name `xml:"idle_recycle_refund_cancleapply_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 撤销申请结果
	Result *IdleTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoidlerecyclerefundcancleapplyAPIResponseModel is 闲鱼回收取消退款申请V2 成功返回结果

type TaobaoidlerecyclerefunddetailAPIRequest added in v1.3.1

type TaobaoidlerecyclerefunddetailAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

TaobaoidlerecyclerefunddetailAPIRequest 闲鱼回收退款详情V2 API请求 taobao.idle.recycle.refund.detail

回收订单退款详情,主要包括退款状态,超时时间,和同意退款的卖家退货地址信息

func NewTaobaoidlerecyclerefunddetailRequest added in v1.3.1

func NewTaobaoidlerecyclerefunddetailRequest() *TaobaoidlerecyclerefunddetailAPIRequest

NewTaobaoidlerecyclerefunddetailRequest 初始化TaobaoidlerecyclerefunddetailAPIRequest对象

func (TaobaoidlerecyclerefunddetailAPIRequest) GetApiMethodName added in v1.3.1

func (r TaobaoidlerecyclerefunddetailAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoidlerecyclerefunddetailAPIRequest) GetApiParams added in v1.3.1

func (r TaobaoidlerecyclerefunddetailAPIRequest) GetApiParams(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoidlerecyclerefunddetailAPIRequest) GetBizOrderId added in v1.3.1

GetBizOrderId BizOrderId Getter

func (TaobaoidlerecyclerefunddetailAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*TaobaoidlerecyclerefunddetailAPIRequest) SetBizOrderId added in v1.3.1

func (r *TaobaoidlerecyclerefunddetailAPIRequest) SetBizOrderId(_bizOrderId int64) error

SetBizOrderId is BizOrderId Setter 订单号

type TaobaoidlerecyclerefunddetailAPIResponse added in v1.3.1

type TaobaoidlerecyclerefunddetailAPIResponse struct {
	model.CommonResponse
	TaobaoidlerecyclerefunddetailAPIResponseModel
}

TaobaoidlerecyclerefunddetailAPIResponse 闲鱼回收退款详情V2 API返回值 taobao.idle.recycle.refund.detail

回收订单退款详情,主要包括退款状态,超时时间,和同意退款的卖家退货地址信息

type TaobaoidlerecyclerefunddetailAPIResponseModel added in v1.3.1

type TaobaoidlerecyclerefunddetailAPIResponseModel struct {
	XMLName xml.Name `xml:"idle_recycle_refund_detail_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 退款详情,说明文档:https://www.yuque.com/tushuguanyuan/fsgl7y/xn2lu8#ed2c2d6a
	Result *IdleTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoidlerecyclerefunddetailAPIResponseModel is 闲鱼回收退款详情V2 成功返回结果

type TaobaoidlerecyclerefundreturngoodsAPIRequest added in v1.3.1

type TaobaoidlerecyclerefundreturngoodsAPIRequest struct {
	model.Params
	// contains filtered or unexported fields
}

TaobaoidlerecyclerefundreturngoodsAPIRequest 闲鱼回收退货V2 API请求 taobao.idle.recycle.refund.returngoods

回收商买家退货,填写退货运单号

func NewTaobaoidlerecyclerefundreturngoodsRequest added in v1.3.1

func NewTaobaoidlerecyclerefundreturngoodsRequest() *TaobaoidlerecyclerefundreturngoodsAPIRequest

NewTaobaoidlerecyclerefundreturngoodsRequest 初始化TaobaoidlerecyclerefundreturngoodsAPIRequest对象

func (TaobaoidlerecyclerefundreturngoodsAPIRequest) GetApiMethodName added in v1.3.1

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoidlerecyclerefundreturngoodsAPIRequest) GetApiParams added in v1.3.1

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoidlerecyclerefundreturngoodsAPIRequest) GetParam0 added in v1.3.1

GetParam0 Param0 Getter

func (TaobaoidlerecyclerefundreturngoodsAPIRequest) GetRawParams added in v1.3.1

GetRawParams IRequest interface 方法, 获取API原始参数

func (*TaobaoidlerecyclerefundreturngoodsAPIRequest) SetParam0 added in v1.3.1

SetParam0 is Param0 Setter 退货

type TaobaoidlerecyclerefundreturngoodsAPIResponse added in v1.3.1

type TaobaoidlerecyclerefundreturngoodsAPIResponse struct {
	model.CommonResponse
	TaobaoidlerecyclerefundreturngoodsAPIResponseModel
}

TaobaoidlerecyclerefundreturngoodsAPIResponse 闲鱼回收退货V2 API返回值 taobao.idle.recycle.refund.returngoods

回收商买家退货,填写退货运单号

type TaobaoidlerecyclerefundreturngoodsAPIResponseModel added in v1.3.1

type TaobaoidlerecyclerefundreturngoodsAPIResponseModel struct {
	XMLName xml.Name `xml:"idle_recycle_refund_returngoods_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 退货
	Result *IdleTopResult `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoidlerecyclerefundreturngoodsAPIResponseModel is 闲鱼回收退货V2 成功返回结果

type TenderAfterSaleParam added in v1.2.8

type TenderAfterSaleParam struct {
	// 履约事件
	EventId string `json:"event_id,omitempty" xml:"event_id,omitempty"`
	// 打款支付宝流水号
	AlipayTradeNo string `json:"alipay_trade_no,omitempty" xml:"alipay_trade_no,omitempty"`
	// 订单号
	MainOrderId string `json:"main_order_id,omitempty" xml:"main_order_id,omitempty"`
	// 提示用户需补充的申请信息
	NeedMakeUpNotice string `json:"need_make_up_notice,omitempty" xml:"need_make_up_notice,omitempty"`
	// 售后申请单id
	AfterSaleApplyId string `json:"after_sale_apply_id,omitempty" xml:"after_sale_apply_id,omitempty"`
	// 售后被拒绝,退回物流单号
	SendBackMailNo string `json:"send_back_mail_no,omitempty" xml:"send_back_mail_no,omitempty"`
	// 售后处理方案信息
	ServicePlanInfo *ServicePlanInfo `json:"service_plan_info,omitempty" xml:"service_plan_info,omitempty"`
}

TenderAfterSaleParam 结构体

type TenderItemDeleteCmd added in v1.2.5

type TenderItemDeleteCmd struct {
	// 商品id
	ItemId string `json:"item_id,omitempty" xml:"item_id,omitempty"`
}

TenderItemDeleteCmd 结构体

type TenderItemListQry added in v1.2.5

type TenderItemListQry struct {
	// 商品id
	ItemId string `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 场次日期
	ScheduleDate string `json:"schedule_date,omitempty" xml:"schedule_date,omitempty"`
	// 场次编码(两位数)
	ScheduleNumber string `json:"schedule_number,omitempty" xml:"schedule_number,omitempty"`
	// 用户昵称
	UserNick string `json:"user_nick,omitempty" xml:"user_nick,omitempty"`
	// 查询页码
	PageNumber int64 `json:"page_number,omitempty" xml:"page_number,omitempty"`
	// 分页大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 用户id
	UserId int64 `json:"user_id,omitempty" xml:"user_id,omitempty"`
}

TenderItemListQry 结构体

type TenderItemListVo added in v1.2.7

type TenderItemListVo struct {
	// 商品id
	ItemId string `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 订单id
	OrderId string `json:"order_id,omitempty" xml:"order_id,omitempty"`
	// 商品名称
	ItemName string `json:"item_name,omitempty" xml:"item_name,omitempty"`
	// 状态
	Status string `json:"status,omitempty" xml:"status,omitempty"`
	// 场次(日期+编码)
	Schedule string `json:"schedule,omitempty" xml:"schedule,omitempty"`
	// 等级
	Degree string `json:"degree,omitempty" xml:"degree,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 服务商仓库码
	OutId string `json:"out_id,omitempty" xml:"out_id,omitempty"`
	// 起拍价(分)
	StartPrice int64 `json:"start_price,omitempty" xml:"start_price,omitempty"`
	// 最终成交价(分)
	Price int64 `json:"price,omitempty" xml:"price,omitempty"`
	// 订单信息
	OrderInfo *TenderOrderInfoVo `json:"order_info,omitempty" xml:"order_info,omitempty"`
}

TenderItemListVo 结构体

type TenderItemUploadCmd added in v1.2.5

type TenderItemUploadCmd struct {
	// 商品id
	ItemId string `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 质检报告
	Report string `json:"report,omitempty" xml:"report,omitempty"`
	// 上拍场次日期
	ScheduleDate string `json:"schedule_date,omitempty" xml:"schedule_date,omitempty"`
	// 外部码
	OutId string `json:"out_id,omitempty" xml:"out_id,omitempty"`
	// 场次编码(两位数值)
	ScheduleNumber string `json:"schedule_number,omitempty" xml:"schedule_number,omitempty"`
	// 动作类型:add:上传,update:更新
	Type string `json:"type,omitempty" xml:"type,omitempty"`
	// 货源类型,RECYCLE(回收), OTHER(其他,服务商自有)
	SourceType string `json:"source_type,omitempty" xml:"source_type,omitempty"`
}

TenderItemUploadCmd 结构体

type TenderItemUploadVo added in v1.2.7

type TenderItemUploadVo struct {
	// 商品ID
	ItemId string `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 订单ID
	OrderId string `json:"order_id,omitempty" xml:"order_id,omitempty"`
	// 类目
	Category string `json:"category,omitempty" xml:"category,omitempty"`
}

TenderItemUploadVo 结构体

type TenderOrderInfoDto added in v1.2.5

type TenderOrderInfoDto struct {
	// 扩展信息
	ChannelData string `json:"channel_data,omitempty" xml:"channel_data,omitempty"`
	// 拍卖买家的用户nick
	BuyerNick string `json:"buyer_nick,omitempty" xml:"buyer_nick,omitempty"`
	// 服务商退货的原因
	ServiceRefundReason string `json:"service_refund_reason,omitempty" xml:"service_refund_reason,omitempty"`
	// 上门回收时间
	ShipTime string `json:"ship_time,omitempty" xml:"ship_time,omitempty"`
	// 渠道
	Channel string `json:"channel,omitempty" xml:"channel,omitempty"`
	// 订单主状态
	OrderStatus string `json:"order_status,omitempty" xml:"order_status,omitempty"`
	// 卖家地址
	SellerAddress string `json:"seller_address,omitempty" xml:"seller_address,omitempty"`
	// 拍卖最终成交价格
	DealPrice string `json:"deal_price,omitempty" xml:"deal_price,omitempty"`
	// 买家区
	BuyerArea string `json:"buyer_area,omitempty" xml:"buyer_area,omitempty"`
	// 服务商评估价格
	AppraisePrice string `json:"appraise_price,omitempty" xml:"appraise_price,omitempty"`
	// 买家
	BuyerAddress string `json:"buyer_address,omitempty" xml:"buyer_address,omitempty"`
	// 买家城市信息
	BuyerCity string `json:"buyer_city,omitempty" xml:"buyer_city,omitempty"`
	// 卖家alipay信息
	SellerAlipayUserId string `json:"seller_alipay_user_id,omitempty" xml:"seller_alipay_user_id,omitempty"`
	// 卖家城市信息
	SellerCity string `json:"seller_city,omitempty" xml:"seller_city,omitempty"`
	// appkey
	AppKey string `json:"app_key,omitempty" xml:"app_key,omitempty"`
	// 扩展信息
	Attribute string `json:"attribute,omitempty" xml:"attribute,omitempty"`
	// 服务商绑定的用户id
	ServiceId string `json:"service_id,omitempty" xml:"service_id,omitempty"`
	// 卖家nick
	SellerNick string `json:"seller_nick,omitempty" xml:"seller_nick,omitempty"`
	// 起拍价格
	StartPrice string `json:"start_price,omitempty" xml:"start_price,omitempty"`
	// 购买人的省
	BuyerProvince string `json:"buyer_province,omitempty" xml:"buyer_province,omitempty"`
	// 订单子状态
	OrderSubStatus string `json:"order_sub_status,omitempty" xml:"order_sub_status,omitempty"`
	// 卖家的电话信息
	SellerPhone string `json:"seller_phone,omitempty" xml:"seller_phone,omitempty"`
	// 卖家小区信息
	SellerCountry string `json:"seller_country,omitempty" xml:"seller_country,omitempty"`
	// 卖家的alipay账号信息
	SellerAlipayAccount string `json:"seller_alipay_account,omitempty" xml:"seller_alipay_account,omitempty"`
	// 卖家关闭原因
	SellerCloseReason string `json:"seller_close_reason,omitempty" xml:"seller_close_reason,omitempty"`
	// 拍卖的终止价格
	EndPrice string `json:"end_price,omitempty" xml:"end_price,omitempty"`
	// 购买人的真实姓名
	BuyerRealName string `json:"buyer_real_name,omitempty" xml:"buyer_real_name,omitempty"`
	// 创建时间
	GmtCreate string `json:"gmt_create,omitempty" xml:"gmt_create,omitempty"`
	// 创建环境
	Env string `json:"env,omitempty" xml:"env,omitempty"`
	// 卖家真实姓名
	SellerRealName string `json:"seller_real_name,omitempty" xml:"seller_real_name,omitempty"`
	// 服务商关闭的原因
	ServiceCloseReason string `json:"service_close_reason,omitempty" xml:"service_close_reason,omitempty"`
	// 卖家的地址
	SellerArea string `json:"seller_area,omitempty" xml:"seller_area,omitempty"`
	// 买家的地址信息
	BuyerCountry string `json:"buyer_country,omitempty" xml:"buyer_country,omitempty"`
	// 回收支付类型
	IdlePayType string `json:"idle_pay_type,omitempty" xml:"idle_pay_type,omitempty"`
	// 买家的电话信息
	BuyerPhone string `json:"buyer_phone,omitempty" xml:"buyer_phone,omitempty"`
	// 服务商的公司名称
	ServiceNick string `json:"service_nick,omitempty" xml:"service_nick,omitempty"`
	// 下单场景
	SceneType string `json:"scene_type,omitempty" xml:"scene_type,omitempty"`
	// 订单id
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 估价id
	AppraiseId string `json:"appraise_id,omitempty" xml:"appraise_id,omitempty"`
	// 服务商最终成交价格
	ServiceDealPrice string `json:"service_deal_price,omitempty" xml:"service_deal_price,omitempty"`
	// 上门类型
	ShipType string `json:"ship_type,omitempty" xml:"ship_type,omitempty"`
	// spuId
	SpuId string `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
	// 卖家的退回原因
	SellerRefundReason string `json:"seller_refund_reason,omitempty" xml:"seller_refund_reason,omitempty"`
	// 卖家的地址信息
	SellerProvince string `json:"seller_province,omitempty" xml:"seller_province,omitempty"`
	// 买家支付宝流水号
	BuyerOutPayId string `json:"buyer_out_pay_id,omitempty" xml:"buyer_out_pay_id,omitempty"`
	// 买家付款时间
	BuyerPayTime string `json:"buyer_pay_time,omitempty" xml:"buyer_pay_time,omitempty"`
	// 商品id/质检报告ID
	ItemId string `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 返现金额,单位:分
	CashFee string `json:"cash_fee,omitempty" xml:"cash_fee,omitempty"`
	// 估价版本,第几次估价
	QuoteVersion string `json:"quote_version,omitempty" xml:"quote_version,omitempty"`
	// 服务商预付款打款支付宝流水号
	PrePayNo string `json:"pre_pay_no,omitempty" xml:"pre_pay_no,omitempty"`
	// 门店信息
	StationInfo string `json:"station_info,omitempty" xml:"station_info,omitempty"`
	// 拍场订单Id
	TenderOrderId int64 `json:"tender_order_id,omitempty" xml:"tender_order_id,omitempty"`
	// 服务费(分)
	ServiceFee int64 `json:"service_fee,omitempty" xml:"service_fee,omitempty"`
	// 买家服务费,分
	BuyerFee int64 `json:"buyer_fee,omitempty" xml:"buyer_fee,omitempty"`
	// 一口价金额,分
	BuyoutPrice int64 `json:"buyout_price,omitempty" xml:"buyout_price,omitempty"`
	// 回收金额,分
	RecyclePrice int64 `json:"recycle_price,omitempty" xml:"recycle_price,omitempty"`
	// 应付预付款金额,分
	PrePayAmount int64 `json:"pre_pay_amount,omitempty" xml:"pre_pay_amount,omitempty"`
	// 预付款状态:1-未付款;2-已付款;
	PrePayStatus int64 `json:"pre_pay_status,omitempty" xml:"pre_pay_status,omitempty"`
	// 尾款,分
	PreFinalAmount int64 `json:"pre_final_amount,omitempty" xml:"pre_final_amount,omitempty"`
	// 是否为返现订单
	CashOrder bool `json:"cash_order,omitempty" xml:"cash_order,omitempty"`
}

TenderOrderInfoDto 结构体

type TenderOrderInfoVo added in v1.2.7

type TenderOrderInfoVo struct {
	// 扩展信息
	ChannelData string `json:"channel_data,omitempty" xml:"channel_data,omitempty"`
	// 拍卖买家的用户nick
	BuyerNick string `json:"buyer_nick,omitempty" xml:"buyer_nick,omitempty"`
	// 服务商退货的原因
	ServiceRefundReason string `json:"service_refund_reason,omitempty" xml:"service_refund_reason,omitempty"`
	// 上门回收时间
	ShipTime string `json:"ship_time,omitempty" xml:"ship_time,omitempty"`
	// 渠道
	Channel string `json:"channel,omitempty" xml:"channel,omitempty"`
	// 订单主状态
	OrderStatus string `json:"order_status,omitempty" xml:"order_status,omitempty"`
	// 卖家地址
	SellerAddress string `json:"seller_address,omitempty" xml:"seller_address,omitempty"`
	// 拍卖最终成交价格
	DealPrice string `json:"deal_price,omitempty" xml:"deal_price,omitempty"`
	// 买家区
	BuyerArea string `json:"buyer_area,omitempty" xml:"buyer_area,omitempty"`
	// 服务商评估价格
	AppraisePrice string `json:"appraise_price,omitempty" xml:"appraise_price,omitempty"`
	// 买家地址
	BuyerAddress string `json:"buyer_address,omitempty" xml:"buyer_address,omitempty"`
	// 买家城市信息
	BuyerCity string `json:"buyer_city,omitempty" xml:"buyer_city,omitempty"`
	// 卖家alipay信息
	SellerAlipayUserId string `json:"seller_alipay_user_id,omitempty" xml:"seller_alipay_user_id,omitempty"`
	// 卖家城市信息
	SellerCity string `json:"seller_city,omitempty" xml:"seller_city,omitempty"`
	// appkey
	AppKey string `json:"app_key,omitempty" xml:"app_key,omitempty"`
	// 扩展信息
	Attribute string `json:"attribute,omitempty" xml:"attribute,omitempty"`
	// 服务商绑定的用户id
	ServiceId string `json:"service_id,omitempty" xml:"service_id,omitempty"`
	// 卖家nick
	SellerNick string `json:"seller_nick,omitempty" xml:"seller_nick,omitempty"`
	// 起拍价格
	StartPrice string `json:"start_price,omitempty" xml:"start_price,omitempty"`
	// 买家省份
	BuyerProvince string `json:"buyer_province,omitempty" xml:"buyer_province,omitempty"`
	// 订单子状态
	OrderSubStatus string `json:"order_sub_status,omitempty" xml:"order_sub_status,omitempty"`
	// 卖家的电话信息
	SellerPhone string `json:"seller_phone,omitempty" xml:"seller_phone,omitempty"`
	// 卖家小区信息
	SellerCountry string `json:"seller_country,omitempty" xml:"seller_country,omitempty"`
	// 卖家的alipay账号信息
	SellerAlipayAccount string `json:"seller_alipay_account,omitempty" xml:"seller_alipay_account,omitempty"`
	// 卖家关闭原因
	SellerCloseReason string `json:"seller_close_reason,omitempty" xml:"seller_close_reason,omitempty"`
	// 拍卖的终止价格
	EndPrice string `json:"end_price,omitempty" xml:"end_price,omitempty"`
	// 购买人的真实姓名
	BuyerRealName string `json:"buyer_real_name,omitempty" xml:"buyer_real_name,omitempty"`
	// 创建时间
	GmtCreate string `json:"gmt_create,omitempty" xml:"gmt_create,omitempty"`
	// 创建环境
	Env string `json:"env,omitempty" xml:"env,omitempty"`
	// 卖家真实姓名
	SellerRealName string `json:"seller_real_name,omitempty" xml:"seller_real_name,omitempty"`
	// 服务商关闭的原因
	ServiceCloseReason string `json:"service_close_reason,omitempty" xml:"service_close_reason,omitempty"`
	// 卖家的地址
	SellerArea string `json:"seller_area,omitempty" xml:"seller_area,omitempty"`
	// 买家的地址信息
	BuyerCountry string `json:"buyer_country,omitempty" xml:"buyer_country,omitempty"`
	// 回收支付类型
	IdlePayType string `json:"idle_pay_type,omitempty" xml:"idle_pay_type,omitempty"`
	// 买家的电话信息
	BuyerPhone string `json:"buyer_phone,omitempty" xml:"buyer_phone,omitempty"`
	// 服务商的公司名称
	ServiceNick string `json:"service_nick,omitempty" xml:"service_nick,omitempty"`
	// 下单场景
	SceneType string `json:"scene_type,omitempty" xml:"scene_type,omitempty"`
	// 订单id2
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 估价id
	AppraiseId string `json:"appraise_id,omitempty" xml:"appraise_id,omitempty"`
	// 服务商最终成交价格
	ServiceDealPrice string `json:"service_deal_price,omitempty" xml:"service_deal_price,omitempty"`
	// 上门类型
	ShipType string `json:"ship_type,omitempty" xml:"ship_type,omitempty"`
	// spuId
	SpuId string `json:"spu_id,omitempty" xml:"spu_id,omitempty"`
	// 卖家的退回原因
	SellerRefundReason string `json:"seller_refund_reason,omitempty" xml:"seller_refund_reason,omitempty"`
	// 卖家的地址信息
	SellerProvince string `json:"seller_province,omitempty" xml:"seller_province,omitempty"`
	// 拍场订单Id
	TenderOrderId string `json:"tender_order_id,omitempty" xml:"tender_order_id,omitempty"`
	// 服务费(分)
	ServiceFee string `json:"service_fee,omitempty" xml:"service_fee,omitempty"`
	// 买家支付宝流水号
	BuyerOutPayId string `json:"buyer_out_pay_id,omitempty" xml:"buyer_out_pay_id,omitempty"`
}

TenderOrderInfoVo 结构体

type TenderOrderQuery added in v1.2.5

type TenderOrderQuery struct {
	// 订单id
	BizOrderId int64 `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
}

TenderOrderQuery 结构体

type TenderOrderSynDto added in v1.2.9

type TenderOrderSynDto struct {
	// 订单子状态
	OrderSubStatus string `json:"order_sub_status,omitempty" xml:"order_sub_status,omitempty"`
	// 订单id
	BizOrderId string `json:"biz_order_id,omitempty" xml:"biz_order_id,omitempty"`
	// 订单状态
	OrderStatus string `json:"order_status,omitempty" xml:"order_status,omitempty"`
	// 流量来源
	Source string `json:"source,omitempty" xml:"source,omitempty"`
	// 供商家传入的订单履约数据
	Attribute *HashMap `json:"attribute,omitempty" xml:"attribute,omitempty"`
}

TenderOrderSynDto 结构体

type TenderPrePayCmd added in v1.2.9

type TenderPrePayCmd struct {
	// 订单id
	OrderId string `json:"order_id,omitempty" xml:"order_id,omitempty"`
	// 预付款流水号
	PrePayNo string `json:"pre_pay_no,omitempty" xml:"pre_pay_no,omitempty"`
	// 预付款执行动作
	PrePayAction int64 `json:"pre_pay_action,omitempty" xml:"pre_pay_action,omitempty"`
}

TenderPrePayCmd 结构体

type TenderPrepayTopResult added in v1.2.9

type TenderPrepayTopResult struct {
	// 订单id
	OrderId string `json:"order_id,omitempty" xml:"order_id,omitempty"`
	// 支付宝流水号
	PrePayNo string `json:"pre_pay_no,omitempty" xml:"pre_pay_no,omitempty"`
	// 1-未支付,2-已支付
	PrePayStatus string `json:"pre_pay_status,omitempty" xml:"pre_pay_status,omitempty"`
	// 服务商appkey
	AppKey string `json:"app_key,omitempty" xml:"app_key,omitempty"`
	// 请求id
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 预付款
	PrePayAmount int64 `json:"pre_pay_amount,omitempty" xml:"pre_pay_amount,omitempty"`
	// 2-支付预付款
	PrePayAction int64 `json:"pre_pay_action,omitempty" xml:"pre_pay_action,omitempty"`
}

TenderPrepayTopResult 结构体

type TopListResult added in v1.2.9

type TopListResult struct {
	// 移除失败商品信息列表
	Data []IdleItemAutoRechargeBatchRemoveResult `json:"data,omitempty" xml:"data>idle_item_auto_recharge_batch_remove_result,omitempty"`
	// 错误码
	ErrCode string `json:"err_code,omitempty" xml:"err_code,omitempty"`
	// 错误说明
	ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
	// 请求是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

TopListResult 结构体

type UserAddressDto

type UserAddressDto struct {
	// 区
	Area string `json:"area,omitempty" xml:"area,omitempty"`
	// 详细地址
	Address string `json:"address,omitempty" xml:"address,omitempty"`
	// 市
	City string `json:"city,omitempty" xml:"city,omitempty"`
	// 发货人名称
	Name string `json:"name,omitempty" xml:"name,omitempty"`
	// 省
	Prov string `json:"prov,omitempty" xml:"prov,omitempty"`
	// 手机号
	PhoneNo string `json:"phone_no,omitempty" xml:"phone_no,omitempty"`
}

UserAddressDto 结构体

type UserGrantRequest

type UserGrantRequest struct {
	// 当前用户的所属业务类型编码,优品&开放平台业务 默认使用 IDLE_TOP
	BizCode string `json:"biz_code,omitempty" xml:"biz_code,omitempty"`
	// 场景码,标识品类。22:虚拟卡券/账号
	SceneType string `json:"scene_type,omitempty" xml:"scene_type,omitempty"`
}

UserGrantRequest 结构体

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL