package http_model type AddToListRequest struct { ProjectId string `json:"project_id"` // 待加入商单的种草任务ID ProjectType int `json:"project_type"` // 种草任务类型,1为公开,2为定向 ProjectName string `json:"project_name"` // 种草任务名称 ProjectPlatform int `json:"project_platform"` // 种草任务平台,1-7分别代表小红书、抖音、微博、快手、b站、大众点评、知乎 ProjectForm int `json:"project_form"` // 任务形式,1-3分别代表商品寄拍、素材分发、虚拟产品测评 ContentType int `json:"content_type"` // 内容形式,1代表图文,2代表视频 EnterpriseId string `json:"enterprise_id"` // 商家ID SupplierId int `json:"supplier_id"` // 服务商ID SubAccountId int `json:"sub_account_id"` // 子账号ID OperatorType int `json:"operator_type"` // 账号类型,1为主账号,2为子账号 } func NewAddToListRequest() *AddToListRequest { return new(AddToListRequest) } func NewAddToListResponse() *CommonResponse { resp := new(CommonResponse) return resp }