simba

package
v1.2.7 Latest Latest
Warning

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

Go to latest
Published: Aug 31, 2022 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Overview

Package simba 包含直通车API相关结构体

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

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ADGroup

type ADGroup struct {
	// 推广组主人昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 商品类目id,从根类目到子类目,用空格分割
	CategoryIds string `json:"category_ids,omitempty" xml:"category_ids,omitempty"`
	// 用户设置的上下线状态,offline-下线(暂停竞价);online-上线;默认为online
	OnlineStatus string `json:"online_status,omitempty" xml:"online_status,omitempty"`
	// online-上线;audit_offline-审核下线;crm_offline-CRM下线;默认为online
	OfflineType string `json:"offline_type,omitempty" xml:"offline_type,omitempty"`
	// 审核下线原因
	Reason string `json:"reason,omitempty" xml:"reason,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 最后修改时间
	ModifiedTime string `json:"modified_time,omitempty" xml:"modified_time,omitempty"`
	// title
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// imgUrl
	ImgUrl string `json:"img_url,omitempty" xml:"img_url,omitempty"`
	// outsideItemPrice
	ItemPrice string `json:"item_price,omitempty" xml:"item_price,omitempty"`
	// 推广计划Id
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 推广组id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 商品数字id
	NumIid int64 `json:"num_iid,omitempty" xml:"num_iid,omitempty"`
	// 默认出价,单位为分,不能小于5
	DefaultPrice int64 `json:"default_price,omitempty" xml:"default_price,omitempty"`
	// 非搜索出价,单位为分,不能小于5
	NonsearchMaxPrice int64 `json:"nonsearch_max_price,omitempty" xml:"nonsearch_max_price,omitempty"`
	// 已经废弃
	MobileDiscount int64 `json:"mobile_discount,omitempty" xml:"mobile_discount,omitempty"`
	// 非搜索是否使用默认出价,false-不用;true-使用;默认为true;
	IsNonsearchDefaultPrice bool `json:"is_nonsearch_default_price,omitempty" xml:"is_nonsearch_default_price,omitempty"`
}

ADGroup 结构体

type ADGroupPage

type ADGroupPage struct {
	// 商品对象列表
	AdgroupList []ADGroup `json:"adgroup_list,omitempty" xml:"adgroup_list>ad_group,omitempty"`
	// 模板规则
	Schedule string `json:"schedule,omitempty" xml:"schedule,omitempty"`
	// 模板名称
	Name string `json:"name,omitempty" xml:"name,omitempty"`
	// 每页数据大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 返回第几页的数据从1开始
	PageNo int64 `json:"page_no,omitempty" xml:"page_no,omitempty"`
	// 所查询的数据总数,只有当返回第一页数据时有值,当要求返回的数据非第一页时,此返回值无效
	TotalItem int64 `json:"total_item,omitempty" xml:"total_item,omitempty"`
	// 模板id
	Id int64 `json:"id,omitempty" xml:"id,omitempty"`
}

ADGroupPage 结构体

type AdgroupTargetingTagDto

type AdgroupTargetingTagDto struct {
	// 人群包出价方式0:出价;1:溢价
	PriceMode int64 `json:"price_mode,omitempty" xml:"price_mode,omitempty"`
	// 用户溢价比例,溢价20%,接口返回120
	Discount int64 `json:"discount,omitempty" xml:"discount,omitempty"`
	// 是否溢价1:不溢价,0:溢价
	IsDefaultPrice int64 `json:"is_default_price,omitempty" xml:"is_default_price,omitempty"`
	// 人群信息
	Crowd *CrowdDto `json:"crowd,omitempty" xml:"crowd,omitempty"`
	// 人群Id
	Id int64 `json:"id,omitempty" xml:"id,omitempty"`
	// 人群上下线状态,0:下线;1:上线
	OnlineStatus int64 `json:"online_status,omitempty" xml:"online_status,omitempty"`
}

AdgroupTargetingTagDto 结构体

type AreaOption

type AreaOption struct {
	// 地域名称
	Name string `json:"name,omitempty" xml:"name,omitempty"`
	// 地域id
	AreaId int64 `json:"area_id,omitempty" xml:"area_id,omitempty"`
	// 父地域id,若该字段为0表示该行政区为顶层,例如像北京,国外等。
	ParentId int64 `json:"parent_id,omitempty" xml:"parent_id,omitempty"`
	// 地域级别,目前自治区、省、直辖市是1,其他城市、地区是2
	Level int64 `json:"level,omitempty" xml:"level,omitempty"`
}

AreaOption 结构体

type Campaign

type Campaign struct {
	// 主人昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 推广计划名称,不能多余20个汉字
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 推广计划结算下线原因,1-余额不足;2-超过日限额,以分号分隔多个下线原因
	SettleReason string `json:"settle_reason,omitempty" xml:"settle_reason,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 最后修改时间
	ModifiedTime string `json:"modified_time,omitempty" xml:"modified_time,omitempty"`
	// 用户设置的上下限状态;offline-下线;online-上线;
	OnlineStatus string `json:"online_status,omitempty" xml:"online_status,omitempty"`
	// 推广计划结算状态,offline-下线;online-上线,
	SettleStatus string `json:"settle_status,omitempty" xml:"settle_status,omitempty"`
	// 推广计划ID
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 计划类型0 标准计划,16 销量明星
	CampaignType int64 `json:"campaign_type,omitempty" xml:"campaign_type,omitempty"`
}

Campaign 结构体

type CampaignArea

type CampaignArea struct {
	// 主人昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 值为:“all”;或者用“,”分割的数字,数字必须是直通车全国省市列表的AreaID,如果已经包含省、自治区id,请不要再包括省内市的id;
	Area string `json:"area,omitempty" xml:"area,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 最后修改时间
	ModifiedTime string `json:"modified_time,omitempty" xml:"modified_time,omitempty"`
	// 推广计划ID
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
}

CampaignArea 结构体

type CampaignBudget

type CampaignBudget struct {
	// 主人昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 最后修改时间
	ModifiedTime string `json:"modified_time,omitempty" xml:"modified_time,omitempty"`
	// 推广计划ID
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 日限额,单位是元,不得小于30
	Budget int64 `json:"budget,omitempty" xml:"budget,omitempty"`
	// 是否平滑消耗,true-是;false-否;在设置了推广计划日限额后,此属性才生效
	IsSmooth bool `json:"is_smooth,omitempty" xml:"is_smooth,omitempty"`
}

CampaignBudget 结构体

type CampaignPlatform

type CampaignPlatform struct {
	// 搜索投放频道代码数组,频道代码必须是直通车搜索类频道列表中的值。1:淘宝站内搜索,8、无线站内搜索;16:无线站外搜索
	SearchChannels []int64 `json:"search_channels,omitempty" xml:"search_channels>int64,omitempty"`
	// 非搜索投放频道代码数组,频道代码必须是直通车非搜索类频道列表中的值。1、淘宝站内定向;2、站外定向;8、无线站内定向;16、无线站外定向
	NonsearchChannels []int64 `json:"nonsearch_channels,omitempty" xml:"nonsearch_channels>int64,omitempty"`
	// 主人昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 最后修改时间
	ModifiedTime string `json:"modified_time,omitempty" xml:"modified_time,omitempty"`
	// 推广计划ID
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 已经废弃
	OutsideDiscount int64 `json:"outside_discount,omitempty" xml:"outside_discount,omitempty"`
	// 已经废弃了
	MobileDiscount int64 `json:"mobile_discount,omitempty" xml:"mobile_discount,omitempty"`
}

CampaignPlatform 结构体

type CampaignSchedule

type CampaignSchedule struct {
	// 主人昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 值为:“all”;或者用“;”分割的每天的设置字符串,该字符串为用“,”分割的时段折扣字符串,格式为:起始时间-结束时间:折扣,其中时间是24小时格式记录18:30,,折扣是1-150整数,表示折扣百分比;
	Schedule string `json:"schedule,omitempty" xml:"schedule,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 最后修改时间
	ModifiedTime string `json:"modified_time,omitempty" xml:"modified_time,omitempty"`
	// 推广计划ID
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
}

CampaignSchedule 结构体

type CiaConfig

type CiaConfig struct {
	// 目标点击量
	TargetClick int64 `json:"target_click,omitempty" xml:"target_click,omitempty"`
	// 出价偏好(3:促进收藏加购,4:促进点击,5:促进成交)
	BidTargetType int64 `json:"bid_target_type,omitempty" xml:"bid_target_type,omitempty"`
	// 最高溢价比例
	MaxPremium int64 `json:"max_premium,omitempty" xml:"max_premium,omitempty"`
	// 推广组id
	AdGroupId int64 `json:"ad_group_id,omitempty" xml:"ad_group_id,omitempty"`
	// 是否自动流转
	IsCirculation bool `json:"is_circulation,omitempty" xml:"is_circulation,omitempty"`
	// 是否开启智能出价
	IsSmartBidding bool `json:"is_smart_bidding,omitempty" xml:"is_smart_bidding,omitempty"`
}

CiaConfig 结构体

type CiaUpdateDto

type CiaUpdateDto struct {
	// 计划Id
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 出价目标(3:促进收藏加购,4:促进点击,5:促进成交)
	BidTargetType int64 `json:"bid_target_type,omitempty" xml:"bid_target_type,omitempty"`
	// 最高溢价比例(30-300)
	MaxPremium int64 `json:"max_premium,omitempty" xml:"max_premium,omitempty"`
	// 是否自动流转(0:否,1:是)
	IsCirculation int64 `json:"is_circulation,omitempty" xml:"is_circulation,omitempty"`
	// 推广组Id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 是否开启智能出价
	IsSmartBidding bool `json:"is_smart_bidding,omitempty" xml:"is_smart_bidding,omitempty"`
}

CiaUpdateDto 结构体

type Creative

type Creative struct {
	// 主人昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 创意标题,最多30个汉字
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 创意图片地址,必须是推广组对应商品的图片之一
	ImgUrl string `json:"img_url,omitempty" xml:"img_url,omitempty"`
	// 审核状态: audit_wait-待审核;audit_pass-审核通过(上线);audit_reject-审核拒绝;默认为audit_pass。
	AuditStatus string `json:"audit_status,omitempty" xml:"audit_status,omitempty"`
	// 审核拒绝原因描述
	AuditDesc string `json:"audit_desc,omitempty" xml:"audit_desc,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 最后修改时间
	ModifiedTime string `json:"modified_time,omitempty" xml:"modified_time,omitempty"`
	// 使用副图作为创意的原始副图图片URL后缀
	SecondImgOriginUrl string `json:"second_img_origin_url,omitempty" xml:"second_img_origin_url,omitempty"`
	// 广审批准文号
	AdExaminationCode string `json:"ad_examination_code,omitempty" xml:"ad_examination_code,omitempty"`
	//
	VideoUrl string `json:"video_url,omitempty" xml:"video_url,omitempty"`
	// 推广计划Id
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 推广组id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 创意id
	CreativeId int64 `json:"creative_id,omitempty" xml:"creative_id,omitempty"`
	// 创意图片类型,1-主图,2-副图,3-自定义图片
	ImgType int64 `json:"img_type,omitempty" xml:"img_type,omitempty"`
	//
	VideoId int64 `json:"video_id,omitempty" xml:"video_id,omitempty"`
}

Creative 结构体

type CreativePage

type CreativePage struct {
	// 广告创意列表
	CreativeList []Creative `json:"creative_list,omitempty" xml:"creative_list>creative,omitempty"`
	// 每页数据大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 返回第几页的数据从1开始
	PageNo int64 `json:"page_no,omitempty" xml:"page_no,omitempty"`
	// 所查询的数据总数,只有当返回第一页数据时有值,当要求返回的数据非第一页时,此返回值无效
	TotalItem int64 `json:"total_item,omitempty" xml:"total_item,omitempty"`
}

CreativePage 结构体

type CreativeRecord

type CreativeRecord struct {
	// 主人昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 创意标题,最多30个汉字
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 修改前创意标题
	OldTitle string `json:"old_title,omitempty" xml:"old_title,omitempty"`
	// 创意图片地址,必须是推广组对应商品的图片之一
	ImgUrl string `json:"img_url,omitempty" xml:"img_url,omitempty"`
	// 修改前创意图片地址
	OldImgUrl string `json:"old_img_url,omitempty" xml:"old_img_url,omitempty"`
	// 审核状态: audit_wait-待审核;audit_pass-审核通过(上线);audit_reject-审核拒绝;默认为audit_pass。
	AuditStatus string `json:"audit_status,omitempty" xml:"audit_status,omitempty"`
	// 审核拒绝原因描述
	AuditDesc string `json:"audit_desc,omitempty" xml:"audit_desc,omitempty"`
	// 创意被修改的时间
	ModifyTime string `json:"modify_time,omitempty" xml:"modify_time,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 系统记录最后修改时间
	ModifiedTime string `json:"modified_time,omitempty" xml:"modified_time,omitempty"`
	// 关键词id
	CreativeId int64 `json:"creative_id,omitempty" xml:"creative_id,omitempty"`
}

CreativeRecord 结构体

type CrowdDto

type CrowdDto struct {
	// 用户所选择的人群名称
	Name string `json:"name,omitempty" xml:"name,omitempty"`
	// 业务类型
	BizType int64 `json:"biz_type,omitempty" xml:"biz_type,omitempty"`
	// 用户在直通车的ID
	CustId int64 `json:"cust_id,omitempty" xml:"cust_id,omitempty"`
	// 人群包模版类型
	TemplateId int64 `json:"template_id,omitempty" xml:"template_id,omitempty"`
	// 人群包类型
	Type int64 `json:"type,omitempty" xml:"type,omitempty"`
	// 人群id ,报表用
	CrowdId int64 `json:"crowd_id,omitempty" xml:"crowd_id,omitempty"`
	// 人群建议溢价,取值范围[5,300]
	FitDiscount int64 `json:"fit_discount,omitempty" xml:"fit_discount,omitempty"`
	// 所选择的人群id
	DmpcrowdId int64 `json:"dmpcrowd_id,omitempty" xml:"dmpcrowd_id,omitempty"`
}

CrowdDto 结构体

type DimDtOs

type DimDtOs struct {
	// tagList
	TagList []TagOptions `json:"tag_list,omitempty" xml:"tag_list>tag_options,omitempty"`
	// 维度名称,如性别,年龄
	Name string `json:"name,omitempty" xml:"name,omitempty"`
	// 维度id,如性别年龄的id
	Id int64 `json:"id,omitempty" xml:"id,omitempty"`
}

DimDtOs 结构体

type ExtraAttributes

type ExtraAttributes struct {
	// 商品在淘宝的发布时间
	PublishTime string `json:"publish_time,omitempty" xml:"publish_time,omitempty"`
	// 库存数量
	Quantity int64 `json:"quantity,omitempty" xml:"quantity,omitempty"`
	// 商品的累积销量
	SalesCount int64 `json:"sales_count,omitempty" xml:"sales_count,omitempty"`
}

ExtraAttributes 结构体

type GuidancePrice

type GuidancePrice struct {
	// 相对当前价格点击提升比例
	ClickUpRate string `json:"click_up_rate,omitempty" xml:"click_up_rate,omitempty"`
	// 相对当前价格展现提升比例
	ImpressionUpRate string `json:"impression_up_rate,omitempty" xml:"impression_up_rate,omitempty"`
	// 价格类型,0代表正常排名建议,1代表被过滤排名建议, 		 * 2代表相近价格建议,3代表转化出价建议
	PriceFlag string `json:"price_flag,omitempty" xml:"price_flag,omitempty"`
	// 建议出价(分)
	Price string `json:"price,omitempty" xml:"price,omitempty"`
	// flag=0,1时为目标排名,flag=2时无意义,flag=3时代表对应的建议
	Flag string `json:"flag,omitempty" xml:"flag,omitempty"`
	// 建议价格能够拿到的点击量
	NewClick string `json:"new_click,omitempty" xml:"new_click,omitempty"`
	// 建议价格能够拿到的展现量
	NewImpression string `json:"new_impression,omitempty" xml:"new_impression,omitempty"`
}

GuidancePrice 结构体

type InsightCategoryDataDto

type InsightCategoryDataDto struct {
	// 类目名称
	CatName string `json:"cat_name,omitempty" xml:"cat_name,omitempty"`
	// 点击率
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// 展现量
	Impression int64 `json:"impression,omitempty" xml:"impression,omitempty"`
	// 点击量
	Click int64 `json:"click,omitempty" xml:"click,omitempty"`
	// 类目id
	CatId int64 `json:"cat_id,omitempty" xml:"cat_id,omitempty"`
}

InsightCategoryDataDto 结构体

type InsightCategoryForcastDto

type InsightCategoryForcastDto struct {
	// 表示类目的所有父级类目的名称,不同层级之间用��(ascii码为2的字符)分隔开
	CatPathName string `json:"cat_path_name,omitempty" xml:"cat_path_name,omitempty"`
	// 表示词与该类目的相关度,值越大表示越相关
	Score string `json:"score,omitempty" xml:"score,omitempty"`
	// 表示该类目的所有父级类目,按层级顺序排列,层级越高的在前面,不同的层级之间用空格分隔
	CatPathId string `json:"cat_path_id,omitempty" xml:"cat_path_id,omitempty"`
	// 查询词
	Bidword string `json:"bidword,omitempty" xml:"bidword,omitempty"`
}

InsightCategoryForcastDto 结构体

type InsightCategoryInfoDto

type InsightCategoryInfoDto struct {
	// 表示类目的所有父级类目的名称,不同层级之间用��(ascii码为2的字符)分隔开
	CatPathName string `json:"cat_path_name,omitempty" xml:"cat_path_name,omitempty"`
	// 表示该类目的所有父级类目,按层级顺序排列,层级越高的在前面,不同的层级之间用空格分隔
	CatPathId string `json:"cat_path_id,omitempty" xml:"cat_path_id,omitempty"`
	// 表示类目信息上次同步的时间
	LastSyncTime string `json:"last_sync_time,omitempty" xml:"last_sync_time,omitempty"`
	// 类目名称
	CatName string `json:"cat_name,omitempty" xml:"cat_name,omitempty"`
	// 类目Id
	CatId int64 `json:"cat_id,omitempty" xml:"cat_id,omitempty"`
	// 父类目Id
	ParentCatId int64 `json:"parent_cat_id,omitempty" xml:"parent_cat_id,omitempty"`
	// 类目的级别
	CatLevel int64 `json:"cat_level,omitempty" xml:"cat_level,omitempty"`
}

InsightCategoryInfoDto 结构体

type InsightRelatedWord

type InsightRelatedWord struct {
	// 相关度
	Weight string `json:"weight,omitempty" xml:"weight,omitempty"`
	// 相关词
	RelatedWord string `json:"related_word,omitempty" xml:"related_word,omitempty"`
}

InsightRelatedWord 结构体

type InsightRelatedWords

type InsightRelatedWords struct {
	// 相关词信息列表
	RelatedWordItemsList []InsightRelatedWord `json:"related_word_items_list,omitempty" xml:"related_word_items_list>insight_related_word,omitempty"`
	// 原词
	Bidword string `json:"bidword,omitempty" xml:"bidword,omitempty"`
}

InsightRelatedWords 结构体

type InsightWordDataDto

type InsightWordDataDto struct {
	// 点击转化率
	Coverage string `json:"coverage,omitempty" xml:"coverage,omitempty"`
	// 平均点击花费
	Cpc string `json:"cpc,omitempty" xml:"cpc,omitempty"`
	// 投入产出比
	Roi string `json:"roi,omitempty" xml:"roi,omitempty"`
	// 关键词
	Bidword string `json:"bidword,omitempty" xml:"bidword,omitempty"`
	// 点击率
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// 展现量
	Impression int64 `json:"impression,omitempty" xml:"impression,omitempty"`
	// 间接成交金额
	Indirecttransaction int64 `json:"indirecttransaction,omitempty" xml:"indirecttransaction,omitempty"`
	// 点击量
	Click int64 `json:"click,omitempty" xml:"click,omitempty"`
	// 花费,单位(分)
	Cost int64 `json:"cost,omitempty" xml:"cost,omitempty"`
	// 直接成交金额
	Directtransaction int64 `json:"directtransaction,omitempty" xml:"directtransaction,omitempty"`
	// 宝贝搜藏数
	Favitemtotal int64 `json:"favitemtotal,omitempty" xml:"favitemtotal,omitempty"`
	// 总的成交笔数
	Transactionshippingtotal int64 `json:"transactionshippingtotal,omitempty" xml:"transactionshippingtotal,omitempty"`
	// 总的收藏数,包括宝贝收藏和店铺收藏
	Favtotal int64 `json:"favtotal,omitempty" xml:"favtotal,omitempty"`
	// 成交总金额
	Transactiontotal int64 `json:"transactiontotal,omitempty" xml:"transactiontotal,omitempty"`
	// 间接成交笔数
	Indirecttransactionshipping int64 `json:"indirecttransactionshipping,omitempty" xml:"indirecttransactionshipping,omitempty"`
	// 直接成交笔数
	Directtransactionshipping int64 `json:"directtransactionshipping,omitempty" xml:"directtransactionshipping,omitempty"`
	// 店铺搜藏数
	Favshoptotal int64 `json:"favshoptotal,omitempty" xml:"favshoptotal,omitempty"`
	// 竞争度
	Competition int64 `json:"competition,omitempty" xml:"competition,omitempty"`
}

InsightWordDataDto 结构体

type InsightWordDataUnderCatDto

type InsightWordDataUnderCatDto struct {
	// 类目名称
	CatName string `json:"cat_name,omitempty" xml:"cat_name,omitempty"`
	// 点击转化率
	Coverage string `json:"coverage,omitempty" xml:"coverage,omitempty"`
	// 平均点击花费
	Cpc string `json:"cpc,omitempty" xml:"cpc,omitempty"`
	// 投入产出比
	Roi string `json:"roi,omitempty" xml:"roi,omitempty"`
	// 关键词
	Bidword string `json:"bidword,omitempty" xml:"bidword,omitempty"`
	// 点击率
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// 展现量
	Impression int64 `json:"impression,omitempty" xml:"impression,omitempty"`
	// 间接成交金额
	Indirecttransaction int64 `json:"indirecttransaction,omitempty" xml:"indirecttransaction,omitempty"`
	// 点击量
	Click int64 `json:"click,omitempty" xml:"click,omitempty"`
	// 花费,单位(分)
	Cost int64 `json:"cost,omitempty" xml:"cost,omitempty"`
	// 直接成交金额
	Directtransaction int64 `json:"directtransaction,omitempty" xml:"directtransaction,omitempty"`
	// 宝贝搜藏数
	Favitemtotal int64 `json:"favitemtotal,omitempty" xml:"favitemtotal,omitempty"`
	// 类目id
	CatId int64 `json:"cat_id,omitempty" xml:"cat_id,omitempty"`
	// 总的成交笔数
	Transactionshippingtotal int64 `json:"transactionshippingtotal,omitempty" xml:"transactionshippingtotal,omitempty"`
	// 总的收藏数,包括宝贝收藏和店铺收藏
	Favtotal int64 `json:"favtotal,omitempty" xml:"favtotal,omitempty"`
	// 成交总金额
	Transactiontotal int64 `json:"transactiontotal,omitempty" xml:"transactiontotal,omitempty"`
	// 间接成交笔数
	Indirecttransactionshipping int64 `json:"indirecttransactionshipping,omitempty" xml:"indirecttransactionshipping,omitempty"`
	// 直接成交笔数
	Directtransactionshipping int64 `json:"directtransactionshipping,omitempty" xml:"directtransactionshipping,omitempty"`
	// 店铺搜藏数
	Favshoptotal int64 `json:"favshoptotal,omitempty" xml:"favshoptotal,omitempty"`
	// 竞争度
	Competition int64 `json:"competition,omitempty" xml:"competition,omitempty"`
}

InsightWordDataUnderCatDto 结构体

type InsightWordPriceDistributeDataDto

type InsightWordPriceDistributeDataDto struct {
	// 点击转化率
	Coverage string `json:"coverage,omitempty" xml:"coverage,omitempty"`
	// 平均点击花费
	Cpc string `json:"cpc,omitempty" xml:"cpc,omitempty"`
	// 投入产出比
	Roi string `json:"roi,omitempty" xml:"roi,omitempty"`
	// 关键词
	Bidword string `json:"bidword,omitempty" xml:"bidword,omitempty"`
	// 点击率
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// 展现量
	Impression int64 `json:"impression,omitempty" xml:"impression,omitempty"`
	// 间接成交金额
	Indirecttransaction int64 `json:"indirecttransaction,omitempty" xml:"indirecttransaction,omitempty"`
	// 点击量
	Click int64 `json:"click,omitempty" xml:"click,omitempty"`
	// 花费,单位(分)
	Cost int64 `json:"cost,omitempty" xml:"cost,omitempty"`
	// 直接成交金额
	Directtransaction int64 `json:"directtransaction,omitempty" xml:"directtransaction,omitempty"`
	// 宝贝搜藏数
	Favitemtotal int64 `json:"favitemtotal,omitempty" xml:"favitemtotal,omitempty"`
	// 总的成交笔数
	Transactionshippingtotal int64 `json:"transactionshippingtotal,omitempty" xml:"transactionshippingtotal,omitempty"`
	// 总的收藏数,包括宝贝收藏和店铺收藏
	Favtotal int64 `json:"favtotal,omitempty" xml:"favtotal,omitempty"`
	// 成交总金额
	Transactiontotal int64 `json:"transactiontotal,omitempty" xml:"transactiontotal,omitempty"`
	// 间接成交笔数
	Indirecttransactionshipping int64 `json:"indirecttransactionshipping,omitempty" xml:"indirecttransactionshipping,omitempty"`
	// 竞价区间
	Price int64 `json:"price,omitempty" xml:"price,omitempty"`
	// 直接成交笔数
	Directtransactionshipping int64 `json:"directtransactionshipping,omitempty" xml:"directtransactionshipping,omitempty"`
	// 店铺搜藏数
	Favshoptotal int64 `json:"favshoptotal,omitempty" xml:"favshoptotal,omitempty"`
	// 竞争度
	Competition int64 `json:"competition,omitempty" xml:"competition,omitempty"`
}

InsightWordPriceDistributeDataDto 结构体

type InsightWordSubDataDto

type InsightWordSubDataDto struct {
	// 点击转化率
	Coverage string `json:"coverage,omitempty" xml:"coverage,omitempty"`
	// 平均点击花费
	Cpc string `json:"cpc,omitempty" xml:"cpc,omitempty"`
	// 投入产出比
	Roi string `json:"roi,omitempty" xml:"roi,omitempty"`
	// 关键词
	Bidword string `json:"bidword,omitempty" xml:"bidword,omitempty"`
	// 点击率
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// 展现量
	Impression int64 `json:"impression,omitempty" xml:"impression,omitempty"`
	// 间接成交金额
	Indirecttransaction int64 `json:"indirecttransaction,omitempty" xml:"indirecttransaction,omitempty"`
	// 投放机制:0:关键词推广 2:定向推广 3:通用定向
	Mechanism int64 `json:"mechanism,omitempty" xml:"mechanism,omitempty"`
	// 点击量
	Click int64 `json:"click,omitempty" xml:"click,omitempty"`
	// 花费,单位(分)
	Cost int64 `json:"cost,omitempty" xml:"cost,omitempty"`
	// 流量来源:1:PC站内,2:PC站外,4:无线站内 5:无线站外
	Network int64 `json:"network,omitempty" xml:"network,omitempty"`
	// 直接成交金额
	Directtransaction int64 `json:"directtransaction,omitempty" xml:"directtransaction,omitempty"`
	// 宝贝搜藏数
	Favitemtotal int64 `json:"favitemtotal,omitempty" xml:"favitemtotal,omitempty"`
	// 总的成交笔数
	Transactionshippingtotal int64 `json:"transactionshippingtotal,omitempty" xml:"transactionshippingtotal,omitempty"`
	// 总的收藏数,包括宝贝收藏和店铺收藏
	Favtotal int64 `json:"favtotal,omitempty" xml:"favtotal,omitempty"`
	// 成交总金额
	Transactiontotal int64 `json:"transactiontotal,omitempty" xml:"transactiontotal,omitempty"`
	// 间接成交笔数
	Indirecttransactionshipping int64 `json:"indirecttransactionshipping,omitempty" xml:"indirecttransactionshipping,omitempty"`
	// 直接成交笔数
	Directtransactionshipping int64 `json:"directtransactionshipping,omitempty" xml:"directtransactionshipping,omitempty"`
	// 店铺搜藏数
	Favshoptotal int64 `json:"favshoptotal,omitempty" xml:"favshoptotal,omitempty"`
	// 竞争度
	Competition int64 `json:"competition,omitempty" xml:"competition,omitempty"`
}

InsightWordSubDataDto 结构体

type InsightWordsAreaDistributeDataDto

type InsightWordsAreaDistributeDataDto struct {
	// 省名称
	Provincename string `json:"provincename,omitempty" xml:"provincename,omitempty"`
	// 点击转化率
	Coverage string `json:"coverage,omitempty" xml:"coverage,omitempty"`
	// 平均点击花费
	Cpc string `json:"cpc,omitempty" xml:"cpc,omitempty"`
	// 投入产出比
	Roi string `json:"roi,omitempty" xml:"roi,omitempty"`
	// 市名称
	Cityname string `json:"cityname,omitempty" xml:"cityname,omitempty"`
	// 关键词
	Bidword string `json:"bidword,omitempty" xml:"bidword,omitempty"`
	// 点击率
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// 展现量
	Impression int64 `json:"impression,omitempty" xml:"impression,omitempty"`
	// 间接成交金额
	Indirecttransaction int64 `json:"indirecttransaction,omitempty" xml:"indirecttransaction,omitempty"`
	// 点击量
	Click int64 `json:"click,omitempty" xml:"click,omitempty"`
	// 花费,单位(分)
	Cost int64 `json:"cost,omitempty" xml:"cost,omitempty"`
	// 直接成交金额
	Directtransaction int64 `json:"directtransaction,omitempty" xml:"directtransaction,omitempty"`
	// 宝贝搜藏数
	Favitemtotal int64 `json:"favitemtotal,omitempty" xml:"favitemtotal,omitempty"`
	// 总的成交笔数
	Transactionshippingtotal int64 `json:"transactionshippingtotal,omitempty" xml:"transactionshippingtotal,omitempty"`
	// 总的收藏数,包括宝贝收藏和店铺收藏
	Favtotal int64 `json:"favtotal,omitempty" xml:"favtotal,omitempty"`
	// 成交总金额
	Transactiontotal int64 `json:"transactiontotal,omitempty" xml:"transactiontotal,omitempty"`
	// 间接成交笔数
	Indirecttransactionshipping int64 `json:"indirecttransactionshipping,omitempty" xml:"indirecttransactionshipping,omitempty"`
	// 直接成交笔数
	Directtransactionshipping int64 `json:"directtransactionshipping,omitempty" xml:"directtransactionshipping,omitempty"`
	// 店铺搜藏数
	Favshoptotal int64 `json:"favshoptotal,omitempty" xml:"favshoptotal,omitempty"`
	// 竞争度
	Competition int64 `json:"competition,omitempty" xml:"competition,omitempty"`
}

InsightWordsAreaDistributeDataDto 结构体

type ItemWordPackageDto

type ItemWordPackageDto struct {
	// 词包名称(可选:流量智选词包、捡漏词包)
	WordPackageName string `json:"word_package_name,omitempty" xml:"word_package_name,omitempty"`
	// 词包id(1-流量智选,2-捡漏词包)
	WordPackageId int64 `json:"word_package_id,omitempty" xml:"word_package_id,omitempty"`
	// 开/关词包(0-关闭,1-开启)
	OnlineStatus int64 `json:"online_status,omitempty" xml:"online_status,omitempty"`
	// pc端出价(单位为分)
	PcBidPrice int64 `json:"pc_bid_price,omitempty" xml:"pc_bid_price,omitempty"`
	// 词包类型(1-流量智选, 19-捡漏词包)
	PackageType int64 `json:"package_type,omitempty" xml:"package_type,omitempty"`
	// 无线端出价(单位为分)
	WlBidPrice int64 `json:"wl_bid_price,omitempty" xml:"wl_bid_price,omitempty"`
}

ItemWordPackageDto 结构体

type Keyword

type Keyword struct {
	// 主人昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 最后修改时间
	ModifiedTime string `json:"modified_time,omitempty" xml:"modified_time,omitempty"`
	// 关键词
	Word string `json:"word,omitempty" xml:"word,omitempty"`
	// 审核状态: <br/>audit_wait-待审核;<br/>audit_pass-审核通过(上线);<br/>audit_reject-审核拒绝;<br/>audit_offline-审核直接下线;<br/>默认为 audit_pass。
	AuditStatus string `json:"audit_status,omitempty" xml:"audit_status,omitempty"`
	// 审核拒绝原因描述
	AuditDesc string `json:"audit_desc,omitempty" xml:"audit_desc,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 匹配模式
	MatchScope string `json:"match_scope,omitempty" xml:"match_scope,omitempty"`
	// 词质量得分
	Qscore string `json:"qscore,omitempty" xml:"qscore,omitempty"`
	// 关键词id
	KeywordId int64 `json:"keyword_id,omitempty" xml:"keyword_id,omitempty"`
	// 推广组id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 推广计划id
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 关键词出价,单位为分,不能小于5
	MaxPrice int64 `json:"max_price,omitempty" xml:"max_price,omitempty"`
	// 无线上是否采用PC*无线溢价的出价模式(1:是,0:否)
	MobileIsDefaultPrice int64 `json:"mobile_is_default_price,omitempty" xml:"mobile_is_default_price,omitempty"`
	// 无线独立出价(0:代表使用PC*无线溢价,如果不是0则代表无线出价的值)
	MaxMobilePrice int64 `json:"max_mobile_price,omitempty" xml:"max_mobile_price,omitempty"`
	// 是否使用推广组默认出价,true-是;false-否;
	IsDefaultPrice bool `json:"is_default_price,omitempty" xml:"is_default_price,omitempty"`
	// 是否是垃圾词,false-不是;true-是;垃圾词是近期无点击的词
	IsGarbage bool `json:"is_garbage,omitempty" xml:"is_garbage,omitempty"`
}

Keyword 结构体

type KeywordPage

type KeywordPage struct {
	// 关键词列表
	KeywordList []Keyword `json:"keyword_list,omitempty" xml:"keyword_list>keyword,omitempty"`
	// 每页数据大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 返回第几页的数据从1开始
	PageNo int64 `json:"page_no,omitempty" xml:"page_no,omitempty"`
	// 所查询的数据总数,只有当返回第一页数据时有值,当要求返回的数据非第一页时,此返回值无效
	TotalItem int64 `json:"total_item,omitempty" xml:"total_item,omitempty"`
}

KeywordPage 结构体

type KeywordQscore

type KeywordQscore struct {
	// 主人昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 关键词
	Word string `json:"word,omitempty" xml:"word,omitempty"`
	// 质量总分
	Qscore string `json:"qscore,omitempty" xml:"qscore,omitempty"`
	// 基础分
	CustScore string `json:"cust_score,omitempty" xml:"cust_score,omitempty"`
	// 创意得分
	CreativeScore string `json:"creative_score,omitempty" xml:"creative_score,omitempty"`
	// 相关性
	ReleScore string `json:"rele_score,omitempty" xml:"rele_score,omitempty"`
	// 买家体验分
	CvrScore string `json:"cvr_score,omitempty" xml:"cvr_score,omitempty"`
	// 推广计划id
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 推广组id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 关键词id
	KeywordId int64 `json:"keyword_id,omitempty" xml:"keyword_id,omitempty"`
}

KeywordQscore 结构体

type PriceSuggestionDto

type PriceSuggestionDto struct {
	// 关键词id
	Bidwordid string `json:"bidwordid,omitempty" xml:"bidwordid,omitempty"`
	// 关键词原词
	Word string `json:"word,omitempty" xml:"word,omitempty"`
	// 状态码
	Stat string `json:"stat,omitempty" xml:"stat,omitempty"`
	// 昨日信息
	YesterdayInfo *YesterdayInfo `json:"yesterday_info,omitempty" xml:"yesterday_info,omitempty"`
	// 出价建议
	GuidancePrice *GuidancePrice `json:"guidance_price,omitempty" xml:"guidance_price,omitempty"`
}

PriceSuggestionDto 结构体

type QScoreSplitDto

type QScoreSplitDto struct {
	// 关键词新质量得分列表,包含PC和移动的质量分
	WordScoreList []Wordscorelist `json:"word_score_list,omitempty" xml:"word_score_list>wordscorelist,omitempty"`
	// 类目质量得分
	CatMatchScore string `json:"cat_match_score,omitempty" xml:"cat_match_score,omitempty"`
	// 推广组id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
}

QScoreSplitDto 结构体

type Qscore

type Qscore struct {
	// 词质量得分列表
	KeywordQscoreList []KeywordQscore `json:"keyword_qscore_list,omitempty" xml:"keyword_qscore_list>keyword_qscore,omitempty"`
	// 类目出价质量得分
	CatmatchQscore string `json:"catmatch_qscore,omitempty" xml:"catmatch_qscore,omitempty"`
}

Qscore 结构体

type RankedItem

type RankedItem struct {
	// 客户昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 最高出价
	MaxPrice string `json:"max_price,omitempty" xml:"max_price,omitempty"`
	// 创意标题
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 商品链接
	LinkUrl string `json:"link_url,omitempty" xml:"link_url,omitempty"`
	// 排名
	Order int64 `json:"order,omitempty" xml:"order,omitempty"`
	// 原始质量评分
	RankScore int64 `json:"rank_score,omitempty" xml:"rank_score,omitempty"`
}

RankedItem 结构体

type RecommendWord

type RecommendWord struct {
	// 推荐的关键词
	Word string `json:"word,omitempty" xml:"word,omitempty"`
	// 搜索量
	Pv string `json:"pv,omitempty" xml:"pv,omitempty"`
	// 平均价格
	AveragePrice string `json:"average_price,omitempty" xml:"average_price,omitempty"`
	// 相关度
	Pertinence string `json:"pertinence,omitempty" xml:"pertinence,omitempty"`
}

RecommendWord 结构体

type RecommendWordPage

type RecommendWordPage struct {
	// 推荐词分页对象列表
	RecommendWordList []RecommendWord `json:"recommend_word_list,omitempty" xml:"recommend_word_list>recommend_word,omitempty"`
	// 每页数据大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 返回第几页的数据从1开始。<br/>如果输入的值大于可取得的最大页码值时,将返回<br/>最大的页码值并且recommend_word_list值将<br/>为空
	PageNo int64 `json:"page_no,omitempty" xml:"page_no,omitempty"`
	// 所查询的数据总数
	TotalItem int64 `json:"total_item,omitempty" xml:"total_item,omitempty"`
}

RecommendWordPage 结构体

type ReportResultTopDto added in v1.2.5

type ReportResultTopDto struct {
	// 时间
	Thedate string `json:"thedate,omitempty" xml:"thedate,omitempty"`
	// 点击率
	CtrStr string `json:"ctr_str,omitempty" xml:"ctr_str,omitempty"`
	// 平均点击花费
	CpcStr string `json:"cpc_str,omitempty" xml:"cpc_str,omitempty"`
	// 宝贝收藏率
	FavItemTotalCoverageStr string `json:"fav_item_total_coverage_str,omitempty" xml:"fav_item_total_coverage_str,omitempty"`
	// 加购率
	CartTotalCoverageStr string `json:"cart_total_coverage_str,omitempty" xml:"cart_total_coverage_str,omitempty"`
	// 投入产出比
	RoiStr string `json:"roi_str,omitempty" xml:"roi_str,omitempty"`
	// 点击转化率
	CoverageStr string `json:"coverage_str,omitempty" xml:"coverage_str,omitempty"`
	// 直接点击转化率
	DirectTransactionShippingCoverageStr string `json:"direct_transaction_shipping_coverage_str,omitempty" xml:"direct_transaction_shipping_coverage_str,omitempty"`
	// 总成交金额(单位元)
	TransactionTotalInYuanStr string `json:"transaction_total_in_yuan_str,omitempty" xml:"transaction_total_in_yuan_str,omitempty"`
	// 千次展现花费(单位元)
	CpmInYuanStr string `json:"cpm_in_yuan_str,omitempty" xml:"cpm_in_yuan_str,omitempty"`
	// 间接预售成交金额(单位元)
	IndirEprePayAmtInYuanStr string `json:"indir_epre_pay_amt_in_yuan_str,omitempty" xml:"indir_epre_pay_amt_in_yuan_str,omitempty"`
	// 平均点击花费(单位元)
	CpcInYuanStr string `json:"cpc_in_yuan_str,omitempty" xml:"cpc_in_yuan_str,omitempty"`
	// 直接预售成交金额(单位元)
	DirEprePayAmtInYuanStr string `json:"dir_epre_pay_amt_in_yuan_str,omitempty" xml:"dir_epre_pay_amt_in_yuan_str,omitempty"`
	// 购物金充值金额(单位元)
	ClickShoppingAmtInYuanStr string `json:"click_shopping_amt_in_yuan_str,omitempty" xml:"click_shopping_amt_in_yuan_str,omitempty"`
	// 尾款金额(单位元)
	HfhYsAmtInYuanStr string `json:"hfh_ys_amt_in_yuan_str,omitempty" xml:"hfh_ys_amt_in_yuan_str,omitempty"`
	// 加购成本(单位元)
	CartTotalCostInYuanStr string `json:"cart_total_cost_in_yuan_str,omitempty" xml:"cart_total_cost_in_yuan_str,omitempty"`
	// 直接成交金额(单位元)
	DirectTransactionInYuanStr string `json:"direct_transaction_in_yuan_str,omitempty" xml:"direct_transaction_in_yuan_str,omitempty"`
	// 间接成交金额(单位元)
	IndirectTransactionInYuanStr string `json:"indirect_transaction_in_yuan_str,omitempty" xml:"indirect_transaction_in_yuan_str,omitempty"`
	// 宝贝收藏成本(单位元)
	FavItemTotalCostInYuanStr string `json:"fav_item_total_cost_in_yuan_str,omitempty" xml:"fav_item_total_cost_in_yuan_str,omitempty"`
	// 总预售成交金额(单位元)
	EprePayAmtInYuanStr string `json:"epre_pay_amt_in_yuan_str,omitempty" xml:"epre_pay_amt_in_yuan_str,omitempty"`
	// 一口价金额(单位元)
	HfhYkjAmtInYuanStr string `json:"hfh_ykj_amt_in_yuan_str,omitempty" xml:"hfh_ykj_amt_in_yuan_str,omitempty"`
	// 花费(单位元)
	CostInYuanStr string `json:"cost_in_yuan_str,omitempty" xml:"cost_in_yuan_str,omitempty"`
	// 自然流量转化金额(单位元)
	SearchTransactionInYuanStr string `json:"search_transaction_in_yuan_str,omitempty" xml:"search_transaction_in_yuan_str,omitempty"`
	// 特权订金金额(单位元)
	HfhDjAmtInStr string `json:"hfh_dj_amt_in_str,omitempty" xml:"hfh_dj_amt_in_str,omitempty"`
	// 特权订金金额(单位元)
	HfhDjAmtInYuanStr string `json:"hfh_dj_amt_in_yuan_str,omitempty" xml:"hfh_dj_amt_in_yuan_str,omitempty"`
	// 平均展现排名
	AvgRankStr string `json:"avg_rank_str,omitempty" xml:"avg_rank_str,omitempty"`
	// 计划id
	CampaignId string `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 计划标题
	CampaignTitle string `json:"campaign_title,omitempty" xml:"campaign_title,omitempty"`
	// 计划类型名称
	CampaignTypeName string `json:"campaign_type_name,omitempty" xml:"campaign_type_name,omitempty"`
	// 单元标题
	AdgroupTitle string `json:"adgroup_title,omitempty" xml:"adgroup_title,omitempty"`
	// 跳转链接(商品详情页)
	Linkurl string `json:"linkurl,omitempty" xml:"linkurl,omitempty"`
	// 创意图片url
	ImgUrl string `json:"img_url,omitempty" xml:"img_url,omitempty"`
	// 人群名称
	CrowdName string `json:"crowd_name,omitempty" xml:"crowd_name,omitempty"`
	// 单元图片url
	AdgroupImgUrl string `json:"adgroup_img_url,omitempty" xml:"adgroup_img_url,omitempty"`
	// 创意标题
	CreativeTitle string `json:"creative_title,omitempty" xml:"creative_title,omitempty"`
	// 创意类型(1:静态创意,2:智能创意,3:PSD创意,4:动态文案创意,5:自动化创意,6:智能创意,7:综合静态创意,8:综合智能创意,9:自动直播创意,10:元素化创意,11:素材类创意,12:钻展多图创意)
	Creativetype string `json:"creativetype,omitempty" xml:"creativetype,omitempty"`
	// 关键词名称
	BidwordStr string `json:"bidword_str,omitempty" xml:"bidword_str,omitempty"`
	// 展现量
	Impression int64 `json:"impression,omitempty" xml:"impression,omitempty"`
	// 点击量
	Click int64 `json:"click,omitempty" xml:"click,omitempty"`
	// 花费
	Cost int64 `json:"cost,omitempty" xml:"cost,omitempty"`
	// 点击率
	Ctr int64 `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// 平均点击花费
	Cpc int64 `json:"cpc,omitempty" xml:"cpc,omitempty"`
	// 千次展现花费
	Cpm int64 `json:"cpm,omitempty" xml:"cpm,omitempty"`
	// 总收藏数
	FavTotal int64 `json:"fav_total,omitempty" xml:"fav_total,omitempty"`
	// 收藏宝贝数
	FavItemTotal int64 `json:"fav_item_total,omitempty" xml:"fav_item_total,omitempty"`
	// 收藏店铺数
	FavShopTotal int64 `json:"fav_shop_total,omitempty" xml:"fav_shop_total,omitempty"`
	// 总购物车数
	CartTotal int64 `json:"cart_total,omitempty" xml:"cart_total,omitempty"`
	// 直接购物车数
	DirectCartTotal int64 `json:"direct_cart_total,omitempty" xml:"direct_cart_total,omitempty"`
	// 间接购物车数
	IndirectCartTotal int64 `json:"indirect_cart_total,omitempty" xml:"indirect_cart_total,omitempty"`
	// 加购成本
	CartTotalCost int64 `json:"cart_total_cost,omitempty" xml:"cart_total_cost,omitempty"`
	// 宝贝收藏成本
	FavItemTotalCost int64 `json:"fav_item_total_cost,omitempty" xml:"fav_item_total_cost,omitempty"`
	// 宝贝收藏率
	FavItemTotalCoverage int64 `json:"fav_item_total_coverage,omitempty" xml:"fav_item_total_coverage,omitempty"`
	// 加购率
	CartTotalCoverage int64 `json:"cart_total_coverage,omitempty" xml:"cart_total_coverage,omitempty"`
	// 总预售成交金额
	EprePayAmt int64 `json:"epre_pay_amt,omitempty" xml:"epre_pay_amt,omitempty"`
	// 总预售成交笔数
	EprePayCnt int64 `json:"epre_pay_cnt,omitempty" xml:"epre_pay_cnt,omitempty"`
	// 直接预售成交金额
	DirEprePayAmt int64 `json:"dir_epre_pay_amt,omitempty" xml:"dir_epre_pay_amt,omitempty"`
	// 直接预售成交笔数
	DirEprePayCnt int64 `json:"dir_epre_pay_cnt,omitempty" xml:"dir_epre_pay_cnt,omitempty"`
	// 间接预售成交金额
	IndirEprePayAmt int64 `json:"indir_epre_pay_amt,omitempty" xml:"indir_epre_pay_amt,omitempty"`
	// 间接预售成交笔数
	IndirEprePayCnt int64 `json:"indir_epre_pay_cnt,omitempty" xml:"indir_epre_pay_cnt,omitempty"`
	// 总成交金额
	TransactionTotal int64 `json:"transaction_total,omitempty" xml:"transaction_total,omitempty"`
	// 直接成交金额
	DirectTransaction int64 `json:"direct_transaction,omitempty" xml:"direct_transaction,omitempty"`
	// 间接成交金额
	IndirectTransaction int64 `json:"indirect_transaction,omitempty" xml:"indirect_transaction,omitempty"`
	// 总成交笔数
	TransactionShippingTotal int64 `json:"transaction_shipping_total,omitempty" xml:"transaction_shipping_total,omitempty"`
	// 直接成交笔数
	DirectTransactionShipping int64 `json:"direct_transaction_shipping,omitempty" xml:"direct_transaction_shipping,omitempty"`
	// 间接成交笔数
	IndirectTransactionShipping int64 `json:"indirect_transaction_shipping,omitempty" xml:"indirect_transaction_shipping,omitempty"`
	// 投入产出比
	Roi int64 `json:"roi,omitempty" xml:"roi,omitempty"`
	// 点击转化率
	Coverage int64 `json:"coverage,omitempty" xml:"coverage,omitempty"`
	// 直接点击转化率
	DirectTransactionShippingCoverage int64 `json:"direct_transaction_shipping_coverage,omitempty" xml:"direct_transaction_shipping_coverage,omitempty"`
	// 购物金充值笔数
	ClickShoppingNum int64 `json:"click_shopping_num,omitempty" xml:"click_shopping_num,omitempty"`
	// 购物金充值金额
	ClickShoppingAmt int64 `json:"click_shopping_amt,omitempty" xml:"click_shopping_amt,omitempty"`
	// 自然流量曝光
	SearchImpression int64 `json:"search_impression,omitempty" xml:"search_impression,omitempty"`
	// 自然流量转化金额
	SearchTransaction int64 `json:"search_transaction,omitempty" xml:"search_transaction,omitempty"`
	// 旺旺咨询量
	WwCnt int64 `json:"ww_cnt,omitempty" xml:"ww_cnt,omitempty"`
	// 特权订金订单支付笔数
	HfhDjCnt int64 `json:"hfh_dj_cnt,omitempty" xml:"hfh_dj_cnt,omitempty"`
	// 特权订金金额
	HfhDjAmt int64 `json:"hfh_dj_amt,omitempty" xml:"hfh_dj_amt,omitempty"`
	// 尾款支付笔数
	HfhYsCnt int64 `json:"hfh_ys_cnt,omitempty" xml:"hfh_ys_cnt,omitempty"`
	// 尾款金额
	HfhYsAmt int64 `json:"hfh_ys_amt,omitempty" xml:"hfh_ys_amt,omitempty"`
	// 一口价支付笔数
	HfhYkjCnt int64 `json:"hfh_ykj_cnt,omitempty" xml:"hfh_ykj_cnt,omitempty"`
	// 一口价金额
	HfhYkjAmt int64 `json:"hfh_ykj_amt,omitempty" xml:"hfh_ykj_amt,omitempty"`
	// 入会量
	RhCnt int64 `json:"rh_cnt,omitempty" xml:"rh_cnt,omitempty"`
	// 留资量
	LzCnt int64 `json:"lz_cnt,omitempty" xml:"lz_cnt,omitempty"`
	// 总成交金额(单位元)
	TransactionTotalInYuan int64 `json:"transaction_total_in_yuan,omitempty" xml:"transaction_total_in_yuan,omitempty"`
	// 千次展现花费(单位元)
	CpmInYuan int64 `json:"cpm_in_yuan,omitempty" xml:"cpm_in_yuan,omitempty"`
	// 间接预售成交金额(单位元)
	IndirEprePayAmtInYuan int64 `json:"indir_epre_pay_amt_in_yuan,omitempty" xml:"indir_epre_pay_amt_in_yuan,omitempty"`
	// 平均点击花费(单位元)
	CpcInYuan int64 `json:"cpc_in_yuan,omitempty" xml:"cpc_in_yuan,omitempty"`
	// 直接预售成交金额(单位元)
	DirEprePayAmtInYuan int64 `json:"dir_epre_pay_amt_in_yuan,omitempty" xml:"dir_epre_pay_amt_in_yuan,omitempty"`
	// 购物金充值金额(单位元)
	ClickShoppingAmtInYuan int64 `json:"click_shopping_amt_in_yuan,omitempty" xml:"click_shopping_amt_in_yuan,omitempty"`
	// 尾款金额(单位元)
	HfhYsAmtInYuan int64 `json:"hfh_ys_amt_in_yuan,omitempty" xml:"hfh_ys_amt_in_yuan,omitempty"`
	// 加购成本(单位元)
	CartTotalCostInYuan int64 `json:"cart_total_cost_in_yuan,omitempty" xml:"cart_total_cost_in_yuan,omitempty"`
	// 直接成交金额(单位元)
	DirectTransactionInYuan int64 `json:"direct_transaction_in_yuan,omitempty" xml:"direct_transaction_in_yuan,omitempty"`
	// 间接成交金额(单位元)
	IndirectTransactionInYuan int64 `json:"indirect_transaction_in_yuan,omitempty" xml:"indirect_transaction_in_yuan,omitempty"`
	// 宝贝收藏成本(单位元)
	FavItemTotalCostInYuan int64 `json:"fav_item_total_cost_in_yuan,omitempty" xml:"fav_item_total_cost_in_yuan,omitempty"`
	// 总预售成交金额(单位元)
	EprePayAmtInYuan int64 `json:"epre_pay_amt_in_yuan,omitempty" xml:"epre_pay_amt_in_yuan,omitempty"`
	// 一口价金额(单位元)
	HfhYkjAmtInYuan int64 `json:"hfh_ykj_amt_in_yuan,omitempty" xml:"hfh_ykj_amt_in_yuan,omitempty"`
	// 花费(单位元)
	CostInYuan int64 `json:"cost_in_yuan,omitempty" xml:"cost_in_yuan,omitempty"`
	// 自然流量转化金额(单位元)
	SearchTransactionInYuan int64 `json:"search_transaction_in_yuan,omitempty" xml:"search_transaction_in_yuan,omitempty"`
	// 特权订金金额(单位元)
	HfhDjAmtInYuan int64 `json:"hfh_dj_amt_in_yuan,omitempty" xml:"hfh_dj_amt_in_yuan,omitempty"`
	// 计划类型(直通车搜索-无线/pc:0;智能推广计划:8;销量明星计划:16;口碑L店计划:17;新享一键推广计划-独立结算账户(策略中心):21;超级直播-一键推广计划(策略中心:订单模式、计划不复用:22;大快消一键推广计划(策略中心):23;超级直播-持续推广计划(策略中心:计划模式、可复用、类似单品):24;合约广告、流量卡计划:31;极速推计划:37;AI智投:38;)
	CampaignType int64 `json:"campaign_type,omitempty" xml:"campaign_type,omitempty"`
	// 单元id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 商品id
	ItemId int64 `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 特权订金金额(单位元)
	HfhDjAmtIn int64 `json:"hfh_dj_amt_in,omitempty" xml:"hfh_dj_amt_in,omitempty"`
	// 人群id
	CrowdId int64 `json:"crowd_id,omitempty" xml:"crowd_id,omitempty"`
	// 创意id
	Creativeid int64 `json:"creativeid,omitempty" xml:"creativeid,omitempty"`
	// 无线出价
	WirelessPrice int64 `json:"wireless_price,omitempty" xml:"wireless_price,omitempty"`
	// 平均展现排名
	AvgRank int64 `json:"avg_rank,omitempty" xml:"avg_rank,omitempty"`
	// pc出价
	PcPrice int64 `json:"pc_price,omitempty" xml:"pc_price,omitempty"`
	// 日限额
	CampaignBudget int64 `json:"campaign_budget,omitempty" xml:"campaign_budget,omitempty"`
	// 关键词ID
	BidwordId int64 `json:"bidword_id,omitempty" xml:"bidword_id,omitempty"`
}

ReportResultTopDto 结构体

type ResultMap

type ResultMap struct {
	// ctr
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// cpm
	Cpm string `json:"cpm,omitempty" xml:"cpm,omitempty"`
	// 消耗(分)
	Cost string `json:"cost,omitempty" xml:"cost,omitempty"`
	// 计划id
	Campaignid string `json:"campaignid,omitempty" xml:"campaignid,omitempty"`
	// 词包名称(汇总-流量包、汇总-自主买词)
	SubPackageName string `json:"sub_package_name,omitempty" xml:"sub_package_name,omitempty"`
	// 点击量
	Click string `json:"click,omitempty" xml:"click,omitempty"`
	// 词包类型(0:汇总-流量包,-1:汇总-自主买词)
	SubPackage string `json:"sub_package,omitempty" xml:"sub_package,omitempty"`
	// 报表数据日期
	Thedate string `json:"thedate,omitempty" xml:"thedate,omitempty"`
	// 推广组id
	Adgroupid string `json:"adgroupid,omitempty" xml:"adgroupid,omitempty"`
	// 展现量
	Impression string `json:"impression,omitempty" xml:"impression,omitempty"`
	// 点击转化率
	Coverage string `json:"coverage,omitempty" xml:"coverage,omitempty"`
	// roi
	Roi string `json:"roi,omitempty" xml:"roi,omitempty"`
}

ResultMap 结构体

type RptBaseEntityDto

type RptBaseEntityDto struct {
	// 日期
	Thedate string `json:"thedate,omitempty" xml:"thedate,omitempty"`
	// 计划id
	Campaignid string `json:"campaignid,omitempty" xml:"campaignid,omitempty"`
	// 推广组id
	Adgroupid string `json:"adgroupid,omitempty" xml:"adgroupid,omitempty"`
	// 花费
	Cost string `json:"cost,omitempty" xml:"cost,omitempty"`
	// 点击率
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// 每点击一次花费
	Cpc string `json:"cpc,omitempty" xml:"cpc,omitempty"`
	// 每千次展现花费
	Cpm string `json:"cpm,omitempty" xml:"cpm,omitempty"`
	// 人群名称
	Crowdname string `json:"crowdname,omitempty" xml:"crowdname,omitempty"`
	// 流量来源,设备和网络。值包含PC站内,PC站外,移动站内,移动站外
	Source string `json:"source,omitempty" xml:"source,omitempty"`
	// 人群id
	Crowdid string `json:"crowdid,omitempty" xml:"crowdid,omitempty"`
	// 展现量
	Impression int64 `json:"impression,omitempty" xml:"impression,omitempty"`
	// 点击量
	Click int64 `json:"click,omitempty" xml:"click,omitempty"`
}

RptBaseEntityDto 结构体

type RptEffectEntityDto

type RptEffectEntityDto struct {
	// 日期
	Thedate string `json:"thedate,omitempty" xml:"thedate,omitempty"`
	// 计划id
	Campaignid string `json:"campaignid,omitempty" xml:"campaignid,omitempty"`
	// 推广组id
	Adgroupid string `json:"adgroupid,omitempty" xml:"adgroupid,omitempty"`
	// 直接成交金额
	Directtransaction string `json:"directtransaction,omitempty" xml:"directtransaction,omitempty"`
	// 间接成交金额
	Indirecttransaction string `json:"indirecttransaction,omitempty" xml:"indirecttransaction,omitempty"`
	// 直接成交笔数
	Directtransactionshipping string `json:"directtransactionshipping,omitempty" xml:"directtransactionshipping,omitempty"`
	// 间接成交笔数
	Indirecttransactionshipping string `json:"indirecttransactionshipping,omitempty" xml:"indirecttransactionshipping,omitempty"`
	// 收藏宝贝数
	Favitemtotal string `json:"favitemtotal,omitempty" xml:"favitemtotal,omitempty"`
	// 收藏店铺数
	Favshoptotal string `json:"favshoptotal,omitempty" xml:"favshoptotal,omitempty"`
	// 投入产出比
	Roi string `json:"roi,omitempty" xml:"roi,omitempty"`
	// 点击转化率
	Coverage string `json:"coverage,omitempty" xml:"coverage,omitempty"`
	// 直接购物车数
	Directcarttotal string `json:"directcarttotal,omitempty" xml:"directcarttotal,omitempty"`
	// 间接购物车数
	Indirectcarttotal string `json:"indirectcarttotal,omitempty" xml:"indirectcarttotal,omitempty"`
	// 人群名称
	Crowdname string `json:"crowdname,omitempty" xml:"crowdname,omitempty"`
	// 流量来源,设备和网络,包含值:PC站内,PC站外,移动站内,移动站外
	Source string `json:"source,omitempty" xml:"source,omitempty"`
	// 人群id
	Crowdid string `json:"crowdid,omitempty" xml:"crowdid,omitempty"`
}

RptEffectEntityDto 结构体

type RptResult

type RptResult struct {
	// ctr
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// 消耗
	Cost string `json:"cost,omitempty" xml:"cost,omitempty"`
	// 词包类型
	IsAutomatch string `json:"is_automatch,omitempty" xml:"is_automatch,omitempty"`
	// cpc
	Cpc string `json:"cpc,omitempty" xml:"cpc,omitempty"`
	// 时段编号
	TimePeriod string `json:"time_period,omitempty" xml:"time_period,omitempty"`
	// 展现量
	Impression string `json:"impression,omitempty" xml:"impression,omitempty"`
	// 点击量
	Click string `json:"click,omitempty" xml:"click,omitempty"`
}

RptResult 结构体

type RtRptResultEntityDto

type RtRptResultEntityDto struct {
	// 日期
	Thedate string `json:"thedate,omitempty" xml:"thedate,omitempty"`
	// impression
	Impression string `json:"impression,omitempty" xml:"impression,omitempty"`
	// cost
	Cost string `json:"cost,omitempty" xml:"cost,omitempty"`
	// click
	Click string `json:"click,omitempty" xml:"click,omitempty"`
	// ctr
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// cpc
	Cpc string `json:"cpc,omitempty" xml:"cpc,omitempty"`
	// cpm
	Cpm string `json:"cpm,omitempty" xml:"cpm,omitempty"`
	// 投入产出比
	Roi string `json:"roi,omitempty" xml:"roi,omitempty"`
	// 点击转化率
	Coverage string `json:"coverage,omitempty" xml:"coverage,omitempty"`
	// 直接成交笔数
	Directtransactionshipping string `json:"directtransactionshipping,omitempty" xml:"directtransactionshipping,omitempty"`
	// 间接成交笔数
	Indirecttransactionshipping string `json:"indirecttransactionshipping,omitempty" xml:"indirecttransactionshipping,omitempty"`
	// 总成交笔数
	Transactionshippingtotal string `json:"transactionshippingtotal,omitempty" xml:"transactionshippingtotal,omitempty"`
	// 直接成交金额
	Directtransaction string `json:"directtransaction,omitempty" xml:"directtransaction,omitempty"`
	// 间接成交金额
	Indirecttransaction string `json:"indirecttransaction,omitempty" xml:"indirecttransaction,omitempty"`
	// 总成交金额
	Transactiontotal string `json:"transactiontotal,omitempty" xml:"transactiontotal,omitempty"`
	// 收藏店铺数
	Favshoptotal string `json:"favshoptotal,omitempty" xml:"favshoptotal,omitempty"`
	// 收藏宝贝数
	Favitemtotal string `json:"favitemtotal,omitempty" xml:"favitemtotal,omitempty"`
	// 总收藏数
	Favtotal string `json:"favtotal,omitempty" xml:"favtotal,omitempty"`
	// 直接购物车数
	Directcarttotal string `json:"directcarttotal,omitempty" xml:"directcarttotal,omitempty"`
	// 间接购物车数
	Indirectcarttotal string `json:"indirectcarttotal,omitempty" xml:"indirectcarttotal,omitempty"`
	// 购物车总数
	Carttotal string `json:"carttotal,omitempty" xml:"carttotal,omitempty"`
	// 计划id
	Campaignid string `json:"campaignid,omitempty" xml:"campaignid,omitempty"`
	// 推广组id
	Adgroupid string `json:"adgroupid,omitempty" xml:"adgroupid,omitempty"`
	// 人群id
	Crowdid string `json:"crowdid,omitempty" xml:"crowdid,omitempty"`
	// 流量来源( PC站内:1, PC站外:2 , 移动站内:4,移动站外:5)
	Source string `json:"source,omitempty" xml:"source,omitempty"`
	// 报表类型(搜索:0,类目出价:1, 单品定向:2, 店铺定向:3)
	SearchType string `json:"search_type,omitempty" xml:"search_type,omitempty"`
	// 人群名称
	Crowdtitle string `json:"crowdtitle,omitempty" xml:"crowdtitle,omitempty"`
	// 关键词id
	Bidwordid string `json:"bidwordid,omitempty" xml:"bidwordid,omitempty"`
	// 创意id
	Creativeid string `json:"creativeid,omitempty" xml:"creativeid,omitempty"`
}

RtRptResultEntityDto 结构体

type SidVo

type SidVo struct {
	// 当前用户是否有创意本地上传试用功能
	CreativeImgUpload bool `json:"creative_img_upload,omitempty" xml:"creative_img_upload,omitempty"`
	// 当前用户是否新版直通车用户
	IsNewBPUser bool `json:"is_new_b_p_user,omitempty" xml:"is_new_b_p_user,omitempty"`
}

SidVo 结构体

type SiriusBidwordDto

type SiriusBidwordDto struct {
	// 关键词
	Word string `json:"word,omitempty" xml:"word,omitempty"`
	// 关键词审核拒绝原因,当且仅当audit_status为审核拒绝时有效
	AuditReason string `json:"audit_reason,omitempty" xml:"audit_reason,omitempty"`
	// 关键词计划删除时间,仅当garbage_status=1时有效
	PlanDeleteTime string `json:"plan_delete_time,omitempty" xml:"plan_delete_time,omitempty"`
	// 关键词无线渠道出价
	MobileBidPrice int64 `json:"mobile_bid_price,omitempty" xml:"mobile_bid_price,omitempty"`
	// 关键词id
	Id int64 `json:"id,omitempty" xml:"id,omitempty"`
	// 推广单元id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 垃圾词状态1 为垃圾词,0 为正常词
	GarbageStatus int64 `json:"garbage_status,omitempty" xml:"garbage_status,omitempty"`
	// 匹配方式1 精准匹配,4广泛匹配
	MatchScope int64 `json:"match_scope,omitempty" xml:"match_scope,omitempty"`
	// 推广计划id
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 审核原因0 -1 待处理,1审核通过,其他审核拒绝
	AuditStatus int64 `json:"audit_status,omitempty" xml:"audit_status,omitempty"`
	// 关键词id
	BidwordId int64 `json:"bidword_id,omitempty" xml:"bidword_id,omitempty"`
}

SiriusBidwordDto 结构体

type SiriusItemWordPackageDto

type SiriusItemWordPackageDto struct {
	// 修改时间
	GmtModified string `json:"gmt_modified,omitempty" xml:"gmt_modified,omitempty"`
	// 词包名称
	WordPackageName string `json:"word_package_name,omitempty" xml:"word_package_name,omitempty"`
	// 词包id
	WordPackageId int64 `json:"word_package_id,omitempty" xml:"word_package_id,omitempty"`
	// 词包在线状态(0:关闭,1:开启)
	OnlineStatus int64 `json:"online_status,omitempty" xml:"online_status,omitempty"`
	// pc端出价
	PcBidPrice int64 `json:"pc_bid_price,omitempty" xml:"pc_bid_price,omitempty"`
	// 词包类型(1:流量智选,19:捡漏词包)
	PackageType int64 `json:"package_type,omitempty" xml:"package_type,omitempty"`
	// 无线端出价
	WlBidPrice int64 `json:"wl_bid_price,omitempty" xml:"wl_bid_price,omitempty"`
}

SiriusItemWordPackageDto 结构体

type SubwayItem

type SubwayItem struct {
	// 商品信息在外部系统(淘宝主站)的标题
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 商品信息在外部系统(淘宝主站)的价格
	Price string `json:"price,omitempty" xml:"price,omitempty"`
	// imgUrl
	ImgUrl string `json:"img_url,omitempty" xml:"img_url,omitempty"`
	// 商品信息在外部系统(淘宝主站)的数字id
	NumId int64 `json:"num_id,omitempty" xml:"num_id,omitempty"`
	// 扩展属性对象
	ExtraAttributes *ExtraAttributes `json:"extra_attributes,omitempty" xml:"extra_attributes,omitempty"`
}

SubwayItem 结构体

type SubwayItemPartition

type SubwayItemPartition struct {
	// 商品列表
	ItemList []SubwayItem `json:"item_list,omitempty" xml:"item_list>subway_item,omitempty"`
	// 排序字段
	OrderField string `json:"order_field,omitempty" xml:"order_field,omitempty"`
	// 每页数据大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 返回第几页的数据从1开始
	PageNo int64 `json:"page_no,omitempty" xml:"page_no,omitempty"`
	// 所查询的数据总数,只有当返回第一页数据时有值,当要求返回的数据非第一页时,此返回值无效
	TotalItem int64 `json:"total_item,omitempty" xml:"total_item,omitempty"`
	// 排序,<br/>True:升级False:降序
	OrderBy bool `json:"order_by,omitempty" xml:"order_by,omitempty"`
}

SubwayItemPartition 结构体

type TagOptions

type TagOptions struct {
	// 标签的名称,如男,女,10-20等
	TagName string `json:"tag_name,omitempty" xml:"tag_name,omitempty"`
	// 标签id
	TagId string `json:"tag_id,omitempty" xml:"tag_id,omitempty"`
	// 标签所属的分组id
	OptionGroupId int64 `json:"option_group_id,omitempty" xml:"option_group_id,omitempty"`
	// 标签所属的维度id
	DimId int64 `json:"dim_id,omitempty" xml:"dim_id,omitempty"`
}

TagOptions 结构体

type TaobaoSimbaAccountBalanceGetAPIRequest

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

TaobaoSimbaAccountBalanceGetAPIRequest 获取实时余额,”元”为单位 API请求 taobao.simba.account.balance.get

获取实时余额,”元”为单位

func NewTaobaoSimbaAccountBalanceGetRequest

func NewTaobaoSimbaAccountBalanceGetRequest() *TaobaoSimbaAccountBalanceGetAPIRequest

NewTaobaoSimbaAccountBalanceGetRequest 初始化TaobaoSimbaAccountBalanceGetAPIRequest对象

func (TaobaoSimbaAccountBalanceGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaAccountBalanceGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAccountBalanceGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAccountBalanceGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaAccountBalanceGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaAccountBalanceGetAPIResponse

type TaobaoSimbaAccountBalanceGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAccountBalanceGetAPIResponseModel
}

TaobaoSimbaAccountBalanceGetAPIResponse 获取实时余额,”元”为单位 API返回值 taobao.simba.account.balance.get

获取实时余额,”元”为单位

type TaobaoSimbaAccountBalanceGetAPIResponseModel

type TaobaoSimbaAccountBalanceGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_account_balance_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 实时余额,”元”为单位
	Balance string `json:"balance,omitempty" xml:"balance,omitempty"`
}

TaobaoSimbaAccountBalanceGetAPIResponseModel is 获取实时余额,”元”为单位 成功返回结果

type TaobaoSimbaAdgroupAddAPIRequest

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

TaobaoSimbaAdgroupAddAPIRequest 创建一个推广组 API请求 taobao.simba.adgroup.add

创建一个推广组

func NewTaobaoSimbaAdgroupAddRequest

func NewTaobaoSimbaAdgroupAddRequest() *TaobaoSimbaAdgroupAddAPIRequest

NewTaobaoSimbaAdgroupAddRequest 初始化TaobaoSimbaAdgroupAddAPIRequest对象

func (TaobaoSimbaAdgroupAddAPIRequest) GetApiMethodName

func (r TaobaoSimbaAdgroupAddAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupAddAPIRequest) GetApiParams

func (r TaobaoSimbaAdgroupAddAPIRequest) GetApiParams() url.Values

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupAddAPIRequest) GetCampaignId

func (r TaobaoSimbaAdgroupAddAPIRequest) GetCampaignId() int64

GetCampaignId CampaignId Getter

func (TaobaoSimbaAdgroupAddAPIRequest) GetDefaultPrice

func (r TaobaoSimbaAdgroupAddAPIRequest) GetDefaultPrice() int64

GetDefaultPrice DefaultPrice Getter

func (TaobaoSimbaAdgroupAddAPIRequest) GetImgUrl

GetImgUrl ImgUrl Getter

func (TaobaoSimbaAdgroupAddAPIRequest) GetItemId

func (r TaobaoSimbaAdgroupAddAPIRequest) GetItemId() int64

GetItemId ItemId Getter

func (TaobaoSimbaAdgroupAddAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupAddAPIRequest) GetTitle

GetTitle Title Getter

func (*TaobaoSimbaAdgroupAddAPIRequest) SetCampaignId

func (r *TaobaoSimbaAdgroupAddAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaAdgroupAddAPIRequest) SetDefaultPrice

func (r *TaobaoSimbaAdgroupAddAPIRequest) SetDefaultPrice(_defaultPrice int64) error

SetDefaultPrice is DefaultPrice Setter 推广组默认出价,单位为分,不能小于5 不能大于日最高限额

func (*TaobaoSimbaAdgroupAddAPIRequest) SetImgUrl

func (r *TaobaoSimbaAdgroupAddAPIRequest) SetImgUrl(_imgUrl string) error

SetImgUrl is ImgUrl Setter 创意图片地址,必须是商品的图片之一

func (*TaobaoSimbaAdgroupAddAPIRequest) SetItemId

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

SetItemId is ItemId Setter 商品Id

func (*TaobaoSimbaAdgroupAddAPIRequest) SetNick

func (r *TaobaoSimbaAdgroupAddAPIRequest) SetNick(_nick string) error

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaAdgroupAddAPIRequest) SetTitle

func (r *TaobaoSimbaAdgroupAddAPIRequest) SetTitle(_title string) error

SetTitle is Title Setter 创意标题,最多20个汉字

type TaobaoSimbaAdgroupAddAPIResponse

type TaobaoSimbaAdgroupAddAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupAddAPIResponseModel
}

TaobaoSimbaAdgroupAddAPIResponse 创建一个推广组 API返回值 taobao.simba.adgroup.add

创建一个推广组

type TaobaoSimbaAdgroupAddAPIResponseModel

type TaobaoSimbaAdgroupAddAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroup_add_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 新增加的推广组
	Adgroup *ADGroup `json:"adgroup,omitempty" xml:"adgroup,omitempty"`
}

TaobaoSimbaAdgroupAddAPIResponseModel is 创建一个推广组 成功返回结果

type TaobaoSimbaAdgroupDeleteAPIRequest

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

TaobaoSimbaAdgroupDeleteAPIRequest 删除一个推广组 API请求 taobao.simba.adgroup.delete

删除一个推广组

func NewTaobaoSimbaAdgroupDeleteRequest

func NewTaobaoSimbaAdgroupDeleteRequest() *TaobaoSimbaAdgroupDeleteAPIRequest

NewTaobaoSimbaAdgroupDeleteRequest 初始化TaobaoSimbaAdgroupDeleteAPIRequest对象

func (TaobaoSimbaAdgroupDeleteAPIRequest) GetAdgroupId

func (r TaobaoSimbaAdgroupDeleteAPIRequest) GetAdgroupId() int64

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaAdgroupDeleteAPIRequest) GetApiMethodName

func (r TaobaoSimbaAdgroupDeleteAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupDeleteAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupDeleteAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaAdgroupDeleteAPIRequest) SetAdgroupId

func (r *TaobaoSimbaAdgroupDeleteAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaAdgroupDeleteAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaAdgroupDeleteAPIResponse

type TaobaoSimbaAdgroupDeleteAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupDeleteAPIResponseModel
}

TaobaoSimbaAdgroupDeleteAPIResponse 删除一个推广组 API返回值 taobao.simba.adgroup.delete

删除一个推广组

type TaobaoSimbaAdgroupDeleteAPIResponseModel

type TaobaoSimbaAdgroupDeleteAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroup_delete_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 被删除的推广组
	Adgroup *ADGroup `json:"adgroup,omitempty" xml:"adgroup,omitempty"`
}

TaobaoSimbaAdgroupDeleteAPIResponseModel is 删除一个推广组 成功返回结果

type TaobaoSimbaAdgroupMobilediscountDeleteAPIRequest

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

TaobaoSimbaAdgroupMobilediscountDeleteAPIRequest 批量删除adgroup的移动溢价 API请求 taobao.simba.adgroup.mobilediscount.delete

批量删除adgroup的移动溢价

func NewTaobaoSimbaAdgroupMobilediscountDeleteRequest

func NewTaobaoSimbaAdgroupMobilediscountDeleteRequest() *TaobaoSimbaAdgroupMobilediscountDeleteAPIRequest

NewTaobaoSimbaAdgroupMobilediscountDeleteRequest 初始化TaobaoSimbaAdgroupMobilediscountDeleteAPIRequest对象

func (TaobaoSimbaAdgroupMobilediscountDeleteAPIRequest) GetAdgroupIds

GetAdgroupIds AdgroupIds Getter

func (TaobaoSimbaAdgroupMobilediscountDeleteAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupMobilediscountDeleteAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupMobilediscountDeleteAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaAdgroupMobilediscountDeleteAPIRequest) SetAdgroupIds

func (r *TaobaoSimbaAdgroupMobilediscountDeleteAPIRequest) SetAdgroupIds(_adgroupIds []string) error

SetAdgroupIds is AdgroupIds Setter adgroup主键数组(批量最多支持200个)

func (*TaobaoSimbaAdgroupMobilediscountDeleteAPIRequest) SetNick

SetNick is Nick Setter 昵称

type TaobaoSimbaAdgroupMobilediscountDeleteAPIResponse

type TaobaoSimbaAdgroupMobilediscountDeleteAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupMobilediscountDeleteAPIResponseModel
}

TaobaoSimbaAdgroupMobilediscountDeleteAPIResponse 批量删除adgroup的移动溢价 API返回值 taobao.simba.adgroup.mobilediscount.delete

批量删除adgroup的移动溢价

type TaobaoSimbaAdgroupMobilediscountDeleteAPIResponseModel

type TaobaoSimbaAdgroupMobilediscountDeleteAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroup_mobilediscount_delete_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回码
	Key string `json:"key,omitempty" xml:"key,omitempty"`
	// 返回信息
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 返回成功个数
	Result int64 `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoSimbaAdgroupMobilediscountDeleteAPIResponseModel is 批量删除adgroup的移动溢价 成功返回结果

type TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest

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

TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest 对推广组进行单独移动溢价 API请求 taobao.simba.adgroup.mobilediscount.update

对推广组进行单独移动溢价

func NewTaobaoSimbaAdgroupMobilediscountUpdateRequest

func NewTaobaoSimbaAdgroupMobilediscountUpdateRequest() *TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest

NewTaobaoSimbaAdgroupMobilediscountUpdateRequest 初始化TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest对象

func (TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest) GetAdgroupIds

GetAdgroupIds AdgroupIds Getter

func (TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest) GetMobileDiscount

GetMobileDiscount MobileDiscount Getter

func (TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest) SetAdgroupIds

func (r *TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest) SetAdgroupIds(_adgroupIds []string) error

SetAdgroupIds is AdgroupIds Setter 推广组id数组(推广组id集合元素个数在1-200个之间,推广组id需要在同一个推广计划中)

func (*TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest) SetMobileDiscount

func (r *TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest) SetMobileDiscount(_mobileDiscount int64) error

SetMobileDiscount is MobileDiscount Setter 折扣(折扣值在1-400之间)

func (*TaobaoSimbaAdgroupMobilediscountUpdateAPIRequest) SetNick

SetNick is Nick Setter 昵称

type TaobaoSimbaAdgroupMobilediscountUpdateAPIResponse

type TaobaoSimbaAdgroupMobilediscountUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupMobilediscountUpdateAPIResponseModel
}

TaobaoSimbaAdgroupMobilediscountUpdateAPIResponse 对推广组进行单独移动溢价 API返回值 taobao.simba.adgroup.mobilediscount.update

对推广组进行单独移动溢价

type TaobaoSimbaAdgroupMobilediscountUpdateAPIResponseModel

type TaobaoSimbaAdgroupMobilediscountUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroup_mobilediscount_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回信息
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 错误码
	Key string `json:"key,omitempty" xml:"key,omitempty"`
	// 更新成功的个数
	Result int64 `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoSimbaAdgroupMobilediscountUpdateAPIResponseModel is 对推广组进行单独移动溢价 成功返回结果

type TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest

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

TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest 获取用户上架在线销售的全部宝贝 API请求 taobao.simba.adgroup.onlineitemsvon.get

获取用户上架在线销售的全部宝贝

func NewTaobaoSimbaAdgroupOnlineitemsvonGetRequest

func NewTaobaoSimbaAdgroupOnlineitemsvonGetRequest() *TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest

NewTaobaoSimbaAdgroupOnlineitemsvonGetRequest 初始化TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest对象

func (TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) GetOrderBy

GetOrderBy OrderBy Getter

func (TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) GetOrderField

GetOrderField OrderField Getter

func (TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) GetProductId

GetProductId ProductId Getter

func (*TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) SetOrderBy

SetOrderBy is OrderBy Setter 排序,true:降序, false:升序

func (*TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) SetOrderField

func (r *TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) SetOrderField(_orderField string) error

SetOrderField is OrderField Setter 排序字段,starts:按开始时间排序bidCount:按销量排序

func (*TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码,从1开始,最大50。最大只能获取1W个宝贝

func (*TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) SetPageSize

func (r *TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 页尺寸,最大200

func (*TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) SetProductId

func (r *TaobaoSimbaAdgroupOnlineitemsvonGetAPIRequest) SetProductId(_productId int64) error

SetProductId is ProductId Setter 推广单元类型 101001005代表标准推广,101001014代表销量明星推广

type TaobaoSimbaAdgroupOnlineitemsvonGetAPIResponse

type TaobaoSimbaAdgroupOnlineitemsvonGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupOnlineitemsvonGetAPIResponseModel
}

TaobaoSimbaAdgroupOnlineitemsvonGetAPIResponse 获取用户上架在线销售的全部宝贝 API返回值 taobao.simba.adgroup.onlineitemsvon.get

获取用户上架在线销售的全部宝贝

type TaobaoSimbaAdgroupOnlineitemsvonGetAPIResponseModel

type TaobaoSimbaAdgroupOnlineitemsvonGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroup_onlineitemsvon_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 带分页的淘宝商品
	PageItem *SubwayItemPartition `json:"page_item,omitempty" xml:"page_item,omitempty"`
}

TaobaoSimbaAdgroupOnlineitemsvonGetAPIResponseModel is 获取用户上架在线销售的全部宝贝 成功返回结果

type TaobaoSimbaAdgroupUpdateAPIRequest

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

TaobaoSimbaAdgroupUpdateAPIRequest 更新一个推广组的信息 API请求 taobao.simba.adgroup.update

更新一个推广组的信息,可以设置默认出价、是否上线、非搜索出价、非搜索是否使用默认出价

func NewTaobaoSimbaAdgroupUpdateRequest

func NewTaobaoSimbaAdgroupUpdateRequest() *TaobaoSimbaAdgroupUpdateAPIRequest

NewTaobaoSimbaAdgroupUpdateRequest 初始化TaobaoSimbaAdgroupUpdateAPIRequest对象

func (TaobaoSimbaAdgroupUpdateAPIRequest) GetAdgroupId

func (r TaobaoSimbaAdgroupUpdateAPIRequest) GetAdgroupId() int64

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaAdgroupUpdateAPIRequest) GetApiMethodName

func (r TaobaoSimbaAdgroupUpdateAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupUpdateAPIRequest) GetDefaultPrice

func (r TaobaoSimbaAdgroupUpdateAPIRequest) GetDefaultPrice() int64

GetDefaultPrice DefaultPrice Getter

func (TaobaoSimbaAdgroupUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupUpdateAPIRequest) GetNonsearchMaxPrice

func (r TaobaoSimbaAdgroupUpdateAPIRequest) GetNonsearchMaxPrice() int64

GetNonsearchMaxPrice NonsearchMaxPrice Getter

func (TaobaoSimbaAdgroupUpdateAPIRequest) GetOnlineStatus

func (r TaobaoSimbaAdgroupUpdateAPIRequest) GetOnlineStatus() string

GetOnlineStatus OnlineStatus Getter

func (TaobaoSimbaAdgroupUpdateAPIRequest) GetUseNonsearchDefaultPrice

func (r TaobaoSimbaAdgroupUpdateAPIRequest) GetUseNonsearchDefaultPrice() string

GetUseNonsearchDefaultPrice UseNonsearchDefaultPrice Getter

func (*TaobaoSimbaAdgroupUpdateAPIRequest) SetAdgroupId

func (r *TaobaoSimbaAdgroupUpdateAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaAdgroupUpdateAPIRequest) SetDefaultPrice

func (r *TaobaoSimbaAdgroupUpdateAPIRequest) SetDefaultPrice(_defaultPrice int64) error

SetDefaultPrice is DefaultPrice Setter 默认出价,单位是分,不能小于5

func (*TaobaoSimbaAdgroupUpdateAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaAdgroupUpdateAPIRequest) SetNonsearchMaxPrice

func (r *TaobaoSimbaAdgroupUpdateAPIRequest) SetNonsearchMaxPrice(_nonsearchMaxPrice int64) error

SetNonsearchMaxPrice is NonsearchMaxPrice Setter 非搜索出价,单位是分,不能小于5,如果use_nonseatch_default_price为使用默认出价,则此nonsearch_max_price字段传入的数据不起作用,商品将使用默认非搜索出价

func (*TaobaoSimbaAdgroupUpdateAPIRequest) SetOnlineStatus

func (r *TaobaoSimbaAdgroupUpdateAPIRequest) SetOnlineStatus(_onlineStatus string) error

SetOnlineStatus is OnlineStatus Setter 用户设置的上下线状态 offline-下线(暂停竞价); online-上线;默认为online

func (*TaobaoSimbaAdgroupUpdateAPIRequest) SetUseNonsearchDefaultPrice

func (r *TaobaoSimbaAdgroupUpdateAPIRequest) SetUseNonsearchDefaultPrice(_useNonsearchDefaultPrice string) error

SetUseNonsearchDefaultPrice is UseNonsearchDefaultPrice Setter 非搜索是否使用默认出价,false-不用;true-使用;默认为true;

type TaobaoSimbaAdgroupUpdateAPIResponse

type TaobaoSimbaAdgroupUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupUpdateAPIResponseModel
}

TaobaoSimbaAdgroupUpdateAPIResponse 更新一个推广组的信息 API返回值 taobao.simba.adgroup.update

更新一个推广组的信息,可以设置默认出价、是否上线、非搜索出价、非搜索是否使用默认出价

type TaobaoSimbaAdgroupUpdateAPIResponseModel

type TaobaoSimbaAdgroupUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroup_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 被修改的推广组
	Adgroup *ADGroup `json:"adgroup,omitempty" xml:"adgroup,omitempty"`
}

TaobaoSimbaAdgroupUpdateAPIResponseModel is 更新一个推广组的信息 成功返回结果

type TaobaoSimbaAdgroupidsChangedGetAPIRequest

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

TaobaoSimbaAdgroupidsChangedGetAPIRequest 获取修改的推广组ID API请求 taobao.simba.adgroupids.changed.get

获取修改的推广组ID

func NewTaobaoSimbaAdgroupidsChangedGetRequest

func NewTaobaoSimbaAdgroupidsChangedGetRequest() *TaobaoSimbaAdgroupidsChangedGetAPIRequest

NewTaobaoSimbaAdgroupidsChangedGetRequest 初始化TaobaoSimbaAdgroupidsChangedGetAPIRequest对象

func (TaobaoSimbaAdgroupidsChangedGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupidsChangedGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupidsChangedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupidsChangedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaAdgroupidsChangedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaAdgroupidsChangedGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (*TaobaoSimbaAdgroupidsChangedGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaAdgroupidsChangedGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 返回的第几页数据,默认为1

func (*TaobaoSimbaAdgroupidsChangedGetAPIRequest) SetPageSize

func (r *TaobaoSimbaAdgroupidsChangedGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 返回的每页数据量大小,默认200最大1000

func (*TaobaoSimbaAdgroupidsChangedGetAPIRequest) SetStartTime

func (r *TaobaoSimbaAdgroupidsChangedGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 得到此时间点之后的数据,不能大于一个月

type TaobaoSimbaAdgroupidsChangedGetAPIResponse

type TaobaoSimbaAdgroupidsChangedGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupidsChangedGetAPIResponseModel
}

TaobaoSimbaAdgroupidsChangedGetAPIResponse 获取修改的推广组ID API返回值 taobao.simba.adgroupids.changed.get

获取修改的推广组ID

type TaobaoSimbaAdgroupidsChangedGetAPIResponseModel

type TaobaoSimbaAdgroupidsChangedGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroupids_changed_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广组ID列表
	ChangedAdgroupids []int64 `json:"changed_adgroupids,omitempty" xml:"changed_adgroupids>int64,omitempty"`
}

TaobaoSimbaAdgroupidsChangedGetAPIResponseModel is 获取修改的推广组ID 成功返回结果

type TaobaoSimbaAdgroupidsDeletedGetAPIRequest

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

TaobaoSimbaAdgroupidsDeletedGetAPIRequest 获取删除的推广组ID API请求 taobao.simba.adgroupids.deleted.get

获取删除的推广组ID

func NewTaobaoSimbaAdgroupidsDeletedGetRequest

func NewTaobaoSimbaAdgroupidsDeletedGetRequest() *TaobaoSimbaAdgroupidsDeletedGetAPIRequest

NewTaobaoSimbaAdgroupidsDeletedGetRequest 初始化TaobaoSimbaAdgroupidsDeletedGetAPIRequest对象

func (TaobaoSimbaAdgroupidsDeletedGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupidsDeletedGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupidsDeletedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupidsDeletedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaAdgroupidsDeletedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaAdgroupidsDeletedGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (*TaobaoSimbaAdgroupidsDeletedGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaAdgroupidsDeletedGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 返回的第几页数据,默认为1

func (*TaobaoSimbaAdgroupidsDeletedGetAPIRequest) SetPageSize

func (r *TaobaoSimbaAdgroupidsDeletedGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 返回的每页数据量大小,默认200最大1000

func (*TaobaoSimbaAdgroupidsDeletedGetAPIRequest) SetStartTime

func (r *TaobaoSimbaAdgroupidsDeletedGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 得到此时间点之后的数据,不能大于一个月

type TaobaoSimbaAdgroupidsDeletedGetAPIResponse

type TaobaoSimbaAdgroupidsDeletedGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupidsDeletedGetAPIResponseModel
}

TaobaoSimbaAdgroupidsDeletedGetAPIResponse 获取删除的推广组ID API返回值 taobao.simba.adgroupids.deleted.get

获取删除的推广组ID

type TaobaoSimbaAdgroupidsDeletedGetAPIResponseModel

type TaobaoSimbaAdgroupidsDeletedGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroupids_deleted_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广组ID列表
	DeletedAdgroupIds []int64 `json:"deleted_adgroup_ids,omitempty" xml:"deleted_adgroup_ids>int64,omitempty"`
}

TaobaoSimbaAdgroupidsDeletedGetAPIResponseModel is 获取删除的推广组ID 成功返回结果

type TaobaoSimbaAdgroupsChangedGetAPIRequest

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

TaobaoSimbaAdgroupsChangedGetAPIRequest 分页获取修改的推广组ID和修改时间 API请求 taobao.simba.adgroups.changed.get

分页获取修改的推广组ID和修改时间

func NewTaobaoSimbaAdgroupsChangedGetRequest

func NewTaobaoSimbaAdgroupsChangedGetRequest() *TaobaoSimbaAdgroupsChangedGetAPIRequest

NewTaobaoSimbaAdgroupsChangedGetRequest 初始化TaobaoSimbaAdgroupsChangedGetAPIRequest对象

func (TaobaoSimbaAdgroupsChangedGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaAdgroupsChangedGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupsChangedGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupsChangedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupsChangedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaAdgroupsChangedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaAdgroupsChangedGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (*TaobaoSimbaAdgroupsChangedGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaAdgroupsChangedGetAPIRequest) SetPageNo

func (r *TaobaoSimbaAdgroupsChangedGetAPIRequest) SetPageNo(_pageNo int64) error

SetPageNo is PageNo Setter 返回的第几页数据,默认为1

func (*TaobaoSimbaAdgroupsChangedGetAPIRequest) SetPageSize

func (r *TaobaoSimbaAdgroupsChangedGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 返回的每页数据量大小,默认200最大1000

func (*TaobaoSimbaAdgroupsChangedGetAPIRequest) SetStartTime

func (r *TaobaoSimbaAdgroupsChangedGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 得到此时间点之后的数据,不能大于一个月

type TaobaoSimbaAdgroupsChangedGetAPIResponse

type TaobaoSimbaAdgroupsChangedGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupsChangedGetAPIResponseModel
}

TaobaoSimbaAdgroupsChangedGetAPIResponse 分页获取修改的推广组ID和修改时间 API返回值 taobao.simba.adgroups.changed.get

分页获取修改的推广组ID和修改时间

type TaobaoSimbaAdgroupsChangedGetAPIResponseModel

type TaobaoSimbaAdgroupsChangedGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroups_changed_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广组分页对象
	Adgroups *ADGroupPage `json:"adgroups,omitempty" xml:"adgroups,omitempty"`
}

TaobaoSimbaAdgroupsChangedGetAPIResponseModel is 分页获取修改的推广组ID和修改时间 成功返回结果

type TaobaoSimbaAdgroupsItemExistAPIRequest

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

TaobaoSimbaAdgroupsItemExistAPIRequest 商品是否推广 API请求 taobao.simba.adgroups.item.exist

判断在一个推广计划中是否已经推广了一个商品

func NewTaobaoSimbaAdgroupsItemExistRequest

func NewTaobaoSimbaAdgroupsItemExistRequest() *TaobaoSimbaAdgroupsItemExistAPIRequest

NewTaobaoSimbaAdgroupsItemExistRequest 初始化TaobaoSimbaAdgroupsItemExistAPIRequest对象

func (TaobaoSimbaAdgroupsItemExistAPIRequest) GetApiMethodName

func (r TaobaoSimbaAdgroupsItemExistAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupsItemExistAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupsItemExistAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaAdgroupsItemExistAPIRequest) GetItemId

GetItemId ItemId Getter

func (TaobaoSimbaAdgroupsItemExistAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupsItemExistAPIRequest) GetProductId

GetProductId ProductId Getter

func (*TaobaoSimbaAdgroupsItemExistAPIRequest) SetCampaignId

func (r *TaobaoSimbaAdgroupsItemExistAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaAdgroupsItemExistAPIRequest) SetItemId

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

SetItemId is ItemId Setter 商品Id

func (*TaobaoSimbaAdgroupsItemExistAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaAdgroupsItemExistAPIRequest) SetProductId

func (r *TaobaoSimbaAdgroupsItemExistAPIRequest) SetProductId(_productId int64) error

SetProductId is ProductId Setter 产品类型 101001005 代表普通推广,101001014代表销量明星

type TaobaoSimbaAdgroupsItemExistAPIResponse

type TaobaoSimbaAdgroupsItemExistAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupsItemExistAPIResponseModel
}

TaobaoSimbaAdgroupsItemExistAPIResponse 商品是否推广 API返回值 taobao.simba.adgroups.item.exist

判断在一个推广计划中是否已经推广了一个商品

type TaobaoSimbaAdgroupsItemExistAPIResponseModel

type TaobaoSimbaAdgroupsItemExistAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroups_item_exist_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// true表示已经被推广,false表示没有被推广
	Exist bool `json:"exist,omitempty" xml:"exist,omitempty"`
}

TaobaoSimbaAdgroupsItemExistAPIResponseModel is 商品是否推广 成功返回结果

type TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest

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

TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest 批量得到推广组 API请求 taobao.simba.adgroupsbyadgroupids.get

批量得到推广组

func NewTaobaoSimbaAdgroupsbyadgroupidsGetRequest

func NewTaobaoSimbaAdgroupsbyadgroupidsGetRequest() *TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest

NewTaobaoSimbaAdgroupsbyadgroupidsGetRequest 初始化TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest对象

func (TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) GetAdgroupIds

GetAdgroupIds AdgroupIds Getter

func (TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (*TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) SetAdgroupIds

func (r *TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) SetAdgroupIds(_adgroupIds []int64) error

SetAdgroupIds is AdgroupIds Setter 推广组Id列表

func (*TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码,从1开始

func (*TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) SetPageSize

func (r *TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 页尺寸,最大200,如果入参adgroup_ids有传入值,则page_size和page_no值不起作用。如果adgrpup_ids为空而campaign_id有值,此时page_size和page_no值才是返回的页数据大小和页码

type TaobaoSimbaAdgroupsbyadgroupidsGetAPIResponse

type TaobaoSimbaAdgroupsbyadgroupidsGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupsbyadgroupidsGetAPIResponseModel
}

TaobaoSimbaAdgroupsbyadgroupidsGetAPIResponse 批量得到推广组 API返回值 taobao.simba.adgroupsbyadgroupids.get

批量得到推广组

type TaobaoSimbaAdgroupsbyadgroupidsGetAPIResponseModel

type TaobaoSimbaAdgroupsbyadgroupidsGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroupsbyadgroupids_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回的推广组分页对象
	Adgroups *ADGroupPage `json:"adgroups,omitempty" xml:"adgroups,omitempty"`
}

TaobaoSimbaAdgroupsbyadgroupidsGetAPIResponseModel is 批量得到推广组 成功返回结果

type TaobaoSimbaAdgroupsbycampaignidGetAPIRequest

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

TaobaoSimbaAdgroupsbycampaignidGetAPIRequest 批量得到推广计划下的推广单元 API请求 taobao.simba.adgroupsbycampaignid.get

根据推广计划ID分页获取推广计划下的推广单元信息

func NewTaobaoSimbaAdgroupsbycampaignidGetRequest

func NewTaobaoSimbaAdgroupsbycampaignidGetRequest() *TaobaoSimbaAdgroupsbycampaignidGetAPIRequest

NewTaobaoSimbaAdgroupsbycampaignidGetRequest 初始化TaobaoSimbaAdgroupsbycampaignidGetAPIRequest对象

func (TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (*TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码,从1开始

func (*TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) SetPageSize

func (r *TaobaoSimbaAdgroupsbycampaignidGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 页尺寸,最大200,如果入参adgroup_ids有传入值,则page_size和page_no值不起作用。如果adgrpup_ids为空而campaign_id有值,此时page_size和page_no值才是返回的页数据大小和页码

type TaobaoSimbaAdgroupsbycampaignidGetAPIResponse

type TaobaoSimbaAdgroupsbycampaignidGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaAdgroupsbycampaignidGetAPIResponseModel
}

TaobaoSimbaAdgroupsbycampaignidGetAPIResponse 批量得到推广计划下的推广单元 API返回值 taobao.simba.adgroupsbycampaignid.get

根据推广计划ID分页获取推广计划下的推广单元信息

type TaobaoSimbaAdgroupsbycampaignidGetAPIResponseModel

type TaobaoSimbaAdgroupsbycampaignidGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_adgroupsbycampaignid_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回的推广组分页对象
	Adgroups *ADGroupPage `json:"adgroups,omitempty" xml:"adgroups,omitempty"`
}

TaobaoSimbaAdgroupsbycampaignidGetAPIResponseModel is 批量得到推广计划下的推广单元 成功返回结果

type TaobaoSimbaBidwordPricetoolsAPIRequest

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

TaobaoSimbaBidwordPricetoolsAPIRequest 关键词出价指导工具(新) API请求 taobao.simba.bidword.pricetools

关键词出价指导工具(新)

func NewTaobaoSimbaBidwordPricetoolsRequest

func NewTaobaoSimbaBidwordPricetoolsRequest() *TaobaoSimbaBidwordPricetoolsAPIRequest

NewTaobaoSimbaBidwordPricetoolsRequest 初始化TaobaoSimbaBidwordPricetoolsAPIRequest对象

func (TaobaoSimbaBidwordPricetoolsAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaBidwordPricetoolsAPIRequest) GetApiMethodName

func (r TaobaoSimbaBidwordPricetoolsAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaBidwordPricetoolsAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaBidwordPricetoolsAPIRequest) GetBidwordId

GetBidwordId BidwordId Getter

func (TaobaoSimbaBidwordPricetoolsAPIRequest) GetTrafficType

GetTrafficType TrafficType Getter

func (TaobaoSimbaBidwordPricetoolsAPIRequest) GetType

GetType Type Getter

func (*TaobaoSimbaBidwordPricetoolsAPIRequest) SetAdgroupId

func (r *TaobaoSimbaBidwordPricetoolsAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广单元id

func (*TaobaoSimbaBidwordPricetoolsAPIRequest) SetBidwordId

func (r *TaobaoSimbaBidwordPricetoolsAPIRequest) SetBidwordId(_bidwordId int64) error

SetBidwordId is BidwordId Setter 关键词id

func (*TaobaoSimbaBidwordPricetoolsAPIRequest) SetTrafficType

func (r *TaobaoSimbaBidwordPricetoolsAPIRequest) SetTrafficType(_trafficType string) error

SetTrafficType is TrafficType Setter 区分渠道 ,计算机:PC,无线 :WL

func (*TaobaoSimbaBidwordPricetoolsAPIRequest) SetType

SetType is Type Setter 出价目标 ,1:争取排名;2:提升展现;3:提示点击;4:提升转化

type TaobaoSimbaBidwordPricetoolsAPIResponse

type TaobaoSimbaBidwordPricetoolsAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaBidwordPricetoolsAPIResponseModel
}

TaobaoSimbaBidwordPricetoolsAPIResponse 关键词出价指导工具(新) API返回值 taobao.simba.bidword.pricetools

关键词出价指导工具(新)

type TaobaoSimbaBidwordPricetoolsAPIResponseModel

type TaobaoSimbaBidwordPricetoolsAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_bidword_pricetools_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// true 表示符合准入,false不符合
	ResultList *PriceSuggestionDto `json:"result_list,omitempty" xml:"result_list,omitempty"`
}

TaobaoSimbaBidwordPricetoolsAPIResponseModel is 关键词出价指导工具(新) 成功返回结果

type TaobaoSimbaCampaignAddAPIRequest

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

TaobaoSimbaCampaignAddAPIRequest 创建一个推广计划 API请求 taobao.simba.campaign.add

创建一个推广计划

func NewTaobaoSimbaCampaignAddRequest

func NewTaobaoSimbaCampaignAddRequest() *TaobaoSimbaCampaignAddAPIRequest

NewTaobaoSimbaCampaignAddRequest 初始化TaobaoSimbaCampaignAddAPIRequest对象

func (TaobaoSimbaCampaignAddAPIRequest) GetApiMethodName

func (r TaobaoSimbaCampaignAddAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignAddAPIRequest) GetApiParams

func (r TaobaoSimbaCampaignAddAPIRequest) GetApiParams() url.Values

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignAddAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignAddAPIRequest) GetTitle

GetTitle Title Getter

func (TaobaoSimbaCampaignAddAPIRequest) GetType

GetType Type Getter

func (*TaobaoSimbaCampaignAddAPIRequest) SetNick

func (r *TaobaoSimbaCampaignAddAPIRequest) SetNick(_nick string) error

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaCampaignAddAPIRequest) SetTitle

func (r *TaobaoSimbaCampaignAddAPIRequest) SetTitle(_title string) error

SetTitle is Title Setter 推广计划名称,不能多余20个汉字,不能和客户其他推广计划同名。

func (*TaobaoSimbaCampaignAddAPIRequest) SetType

func (r *TaobaoSimbaCampaignAddAPIRequest) SetType(_type int64) error

SetType is Type Setter 计划类型,当前仅支持两种标准推广0,销量明星16,默认为0

type TaobaoSimbaCampaignAddAPIResponse

type TaobaoSimbaCampaignAddAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignAddAPIResponseModel
}

TaobaoSimbaCampaignAddAPIResponse 创建一个推广计划 API返回值 taobao.simba.campaign.add

创建一个推广计划

type TaobaoSimbaCampaignAddAPIResponseModel

type TaobaoSimbaCampaignAddAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_add_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 创建的推广计划
	Campaign *Campaign `json:"campaign,omitempty" xml:"campaign,omitempty"`
}

TaobaoSimbaCampaignAddAPIResponseModel is 创建一个推广计划 成功返回结果

type TaobaoSimbaCampaignAreaGetAPIRequest

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

TaobaoSimbaCampaignAreaGetAPIRequest 取得一个推广计划的投放地域设置 API请求 taobao.simba.campaign.area.get

取得一个推广计划的投放地域设置

func NewTaobaoSimbaCampaignAreaGetRequest

func NewTaobaoSimbaCampaignAreaGetRequest() *TaobaoSimbaCampaignAreaGetAPIRequest

NewTaobaoSimbaCampaignAreaGetRequest 初始化TaobaoSimbaCampaignAreaGetAPIRequest对象

func (TaobaoSimbaCampaignAreaGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaCampaignAreaGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignAreaGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignAreaGetAPIRequest) GetCampaignId

func (r TaobaoSimbaCampaignAreaGetAPIRequest) GetCampaignId() int64

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignAreaGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaCampaignAreaGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaCampaignAreaGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaCampaignAreaGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaCampaignAreaGetAPIResponse

type TaobaoSimbaCampaignAreaGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignAreaGetAPIResponseModel
}

TaobaoSimbaCampaignAreaGetAPIResponse 取得一个推广计划的投放地域设置 API返回值 taobao.simba.campaign.area.get

取得一个推广计划的投放地域设置

type TaobaoSimbaCampaignAreaGetAPIResponseModel

type TaobaoSimbaCampaignAreaGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_area_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广计划的投放地域配置
	CampaignArea *CampaignArea `json:"campaign_area,omitempty" xml:"campaign_area,omitempty"`
}

TaobaoSimbaCampaignAreaGetAPIResponseModel is 取得一个推广计划的投放地域设置 成功返回结果

type TaobaoSimbaCampaignAreaUpdateAPIRequest

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

TaobaoSimbaCampaignAreaUpdateAPIRequest 更新一个推广计划的投放地域 API请求 taobao.simba.campaign.area.update

更新一个推广计划的投放地域

func NewTaobaoSimbaCampaignAreaUpdateRequest

func NewTaobaoSimbaCampaignAreaUpdateRequest() *TaobaoSimbaCampaignAreaUpdateAPIRequest

NewTaobaoSimbaCampaignAreaUpdateRequest 初始化TaobaoSimbaCampaignAreaUpdateAPIRequest对象

func (TaobaoSimbaCampaignAreaUpdateAPIRequest) GetApiMethodName

func (r TaobaoSimbaCampaignAreaUpdateAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignAreaUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignAreaUpdateAPIRequest) GetArea

GetArea Area Getter

func (TaobaoSimbaCampaignAreaUpdateAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignAreaUpdateAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaCampaignAreaUpdateAPIRequest) SetArea

SetArea is Area Setter 值为:“all”;或者用“,”分割的数字,数字必须是直通车全国省市列表的AreaID;

func (*TaobaoSimbaCampaignAreaUpdateAPIRequest) SetCampaignId

func (r *TaobaoSimbaCampaignAreaUpdateAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaCampaignAreaUpdateAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaCampaignAreaUpdateAPIResponse

type TaobaoSimbaCampaignAreaUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignAreaUpdateAPIResponseModel
}

TaobaoSimbaCampaignAreaUpdateAPIResponse 更新一个推广计划的投放地域 API返回值 taobao.simba.campaign.area.update

更新一个推广计划的投放地域

type TaobaoSimbaCampaignAreaUpdateAPIResponseModel

type TaobaoSimbaCampaignAreaUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_area_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 修改后的推广计划投放地域
	CampaignArea *CampaignArea `json:"campaign_area,omitempty" xml:"campaign_area,omitempty"`
}

TaobaoSimbaCampaignAreaUpdateAPIResponseModel is 更新一个推广计划的投放地域 成功返回结果

type TaobaoSimbaCampaignAreaoptionsGetAPIRequest

type TaobaoSimbaCampaignAreaoptionsGetAPIRequest struct {
	model.Params
}

TaobaoSimbaCampaignAreaoptionsGetAPIRequest 取得推广计划的可设置投放地域列表 API请求 taobao.simba.campaign.areaoptions.get

取得推广计划的可设置投放地域列表

func NewTaobaoSimbaCampaignAreaoptionsGetRequest

func NewTaobaoSimbaCampaignAreaoptionsGetRequest() *TaobaoSimbaCampaignAreaoptionsGetAPIRequest

NewTaobaoSimbaCampaignAreaoptionsGetRequest 初始化TaobaoSimbaCampaignAreaoptionsGetAPIRequest对象

func (TaobaoSimbaCampaignAreaoptionsGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignAreaoptionsGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

type TaobaoSimbaCampaignAreaoptionsGetAPIResponse

type TaobaoSimbaCampaignAreaoptionsGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignAreaoptionsGetAPIResponseModel
}

TaobaoSimbaCampaignAreaoptionsGetAPIResponse 取得推广计划的可设置投放地域列表 API返回值 taobao.simba.campaign.areaoptions.get

取得推广计划的可设置投放地域列表

type TaobaoSimbaCampaignAreaoptionsGetAPIResponseModel

type TaobaoSimbaCampaignAreaoptionsGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_areaoptions_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广计划所有可设置的投放地域
	AreaOptions []AreaOption `json:"area_options,omitempty" xml:"area_options>area_option,omitempty"`
}

TaobaoSimbaCampaignAreaoptionsGetAPIResponseModel is 取得推广计划的可设置投放地域列表 成功返回结果

type TaobaoSimbaCampaignBudgetGetAPIRequest

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

TaobaoSimbaCampaignBudgetGetAPIRequest 取得一个推广计划的日限额 API请求 taobao.simba.campaign.budget.get

取得一个推广计划的日限额

func NewTaobaoSimbaCampaignBudgetGetRequest

func NewTaobaoSimbaCampaignBudgetGetRequest() *TaobaoSimbaCampaignBudgetGetAPIRequest

NewTaobaoSimbaCampaignBudgetGetRequest 初始化TaobaoSimbaCampaignBudgetGetAPIRequest对象

func (TaobaoSimbaCampaignBudgetGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaCampaignBudgetGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignBudgetGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignBudgetGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignBudgetGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaCampaignBudgetGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaCampaignBudgetGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaCampaignBudgetGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaCampaignBudgetGetAPIResponse

type TaobaoSimbaCampaignBudgetGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignBudgetGetAPIResponseModel
}

TaobaoSimbaCampaignBudgetGetAPIResponse 取得一个推广计划的日限额 API返回值 taobao.simba.campaign.budget.get

取得一个推广计划的日限额

type TaobaoSimbaCampaignBudgetGetAPIResponseModel

type TaobaoSimbaCampaignBudgetGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_budget_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广计划日限额
	CampaignBudget *CampaignBudget `json:"campaign_budget,omitempty" xml:"campaign_budget,omitempty"`
}

TaobaoSimbaCampaignBudgetGetAPIResponseModel is 取得一个推广计划的日限额 成功返回结果

type TaobaoSimbaCampaignBudgetUpdateAPIRequest

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

TaobaoSimbaCampaignBudgetUpdateAPIRequest 更新一个推广计划的日限额 API请求 taobao.simba.campaign.budget.update

更新一个推广计划的日限额

func NewTaobaoSimbaCampaignBudgetUpdateRequest

func NewTaobaoSimbaCampaignBudgetUpdateRequest() *TaobaoSimbaCampaignBudgetUpdateAPIRequest

NewTaobaoSimbaCampaignBudgetUpdateRequest 初始化TaobaoSimbaCampaignBudgetUpdateAPIRequest对象

func (TaobaoSimbaCampaignBudgetUpdateAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignBudgetUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignBudgetUpdateAPIRequest) GetBudget

GetBudget Budget Getter

func (TaobaoSimbaCampaignBudgetUpdateAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignBudgetUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignBudgetUpdateAPIRequest) GetUseSmooth

GetUseSmooth UseSmooth Getter

func (*TaobaoSimbaCampaignBudgetUpdateAPIRequest) SetBudget

SetBudget is Budget Setter 如果为空则取消限额;否则必须为整数,单位是元,不得小于30;

func (*TaobaoSimbaCampaignBudgetUpdateAPIRequest) SetCampaignId

func (r *TaobaoSimbaCampaignBudgetUpdateAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaCampaignBudgetUpdateAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaCampaignBudgetUpdateAPIRequest) SetUseSmooth

func (r *TaobaoSimbaCampaignBudgetUpdateAPIRequest) SetUseSmooth(_useSmooth bool) error

SetUseSmooth is UseSmooth Setter 是否平滑消耗:false-否,true-是

type TaobaoSimbaCampaignBudgetUpdateAPIResponse

type TaobaoSimbaCampaignBudgetUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignBudgetUpdateAPIResponseModel
}

TaobaoSimbaCampaignBudgetUpdateAPIResponse 更新一个推广计划的日限额 API返回值 taobao.simba.campaign.budget.update

更新一个推广计划的日限额

type TaobaoSimbaCampaignBudgetUpdateAPIResponseModel

type TaobaoSimbaCampaignBudgetUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_budget_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 修改后的推广计划日限额
	CampaignBudget *CampaignBudget `json:"campaign_budget,omitempty" xml:"campaign_budget,omitempty"`
}

TaobaoSimbaCampaignBudgetUpdateAPIResponseModel is 更新一个推广计划的日限额 成功返回结果

type TaobaoSimbaCampaignPlatformGetAPIRequest

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

TaobaoSimbaCampaignPlatformGetAPIRequest 取得一个推广计划的投放平台设置 API请求 taobao.simba.campaign.platform.get

获得一个推广计划的投放平台设置

func NewTaobaoSimbaCampaignPlatformGetRequest

func NewTaobaoSimbaCampaignPlatformGetRequest() *TaobaoSimbaCampaignPlatformGetAPIRequest

NewTaobaoSimbaCampaignPlatformGetRequest 初始化TaobaoSimbaCampaignPlatformGetAPIRequest对象

func (TaobaoSimbaCampaignPlatformGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaCampaignPlatformGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignPlatformGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignPlatformGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignPlatformGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaCampaignPlatformGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaCampaignPlatformGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaCampaignPlatformGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaCampaignPlatformGetAPIResponse

type TaobaoSimbaCampaignPlatformGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignPlatformGetAPIResponseModel
}

TaobaoSimbaCampaignPlatformGetAPIResponse 取得一个推广计划的投放平台设置 API返回值 taobao.simba.campaign.platform.get

获得一个推广计划的投放平台设置

type TaobaoSimbaCampaignPlatformGetAPIResponseModel

type TaobaoSimbaCampaignPlatformGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_platform_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 取得的推广计划的投放平台设置
	CampaignPlatform *CampaignPlatform `json:"campaign_platform,omitempty" xml:"campaign_platform,omitempty"`
}

TaobaoSimbaCampaignPlatformGetAPIResponseModel is 取得一个推广计划的投放平台设置 成功返回结果

type TaobaoSimbaCampaignPlatformUpdateAPIRequest

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

TaobaoSimbaCampaignPlatformUpdateAPIRequest 更新一个推广计划的平台设置 API请求 taobao.simba.campaign.platform.update

更新一个推广计划的平台设置

func NewTaobaoSimbaCampaignPlatformUpdateRequest

func NewTaobaoSimbaCampaignPlatformUpdateRequest() *TaobaoSimbaCampaignPlatformUpdateAPIRequest

NewTaobaoSimbaCampaignPlatformUpdateRequest 初始化TaobaoSimbaCampaignPlatformUpdateAPIRequest对象

func (TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetMobileDiscount

func (r TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetMobileDiscount() int64

GetMobileDiscount MobileDiscount Getter

func (TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetNonsearchChannels

func (r TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetNonsearchChannels() []int64

GetNonsearchChannels NonsearchChannels Getter

func (TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetOutsideDiscount

func (r TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetOutsideDiscount() int64

GetOutsideDiscount OutsideDiscount Getter

func (TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetSearchChannels

func (r TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetSearchChannels() []int64

GetSearchChannels SearchChannels Getter

func (*TaobaoSimbaCampaignPlatformUpdateAPIRequest) SetCampaignId

func (r *TaobaoSimbaCampaignPlatformUpdateAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaCampaignPlatformUpdateAPIRequest) SetMobileDiscount

func (r *TaobaoSimbaCampaignPlatformUpdateAPIRequest) SetMobileDiscount(_mobileDiscount int64) error

SetMobileDiscount is MobileDiscount Setter 已经废弃

func (*TaobaoSimbaCampaignPlatformUpdateAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaCampaignPlatformUpdateAPIRequest) SetNonsearchChannels

func (r *TaobaoSimbaCampaignPlatformUpdateAPIRequest) SetNonsearchChannels(_nonsearchChannels []int64) error

SetNonsearchChannels is NonsearchChannels Setter 非搜索投放频道代码数组,频道代码必须是直通车非搜索类频道列表中的值。1、淘宝站内定向;2、站外定向;8、无线站内定向;16、无线站外定向

func (*TaobaoSimbaCampaignPlatformUpdateAPIRequest) SetOutsideDiscount

func (r *TaobaoSimbaCampaignPlatformUpdateAPIRequest) SetOutsideDiscount(_outsideDiscount int64) error

SetOutsideDiscount is OutsideDiscount Setter 已经废弃

func (*TaobaoSimbaCampaignPlatformUpdateAPIRequest) SetSearchChannels

func (r *TaobaoSimbaCampaignPlatformUpdateAPIRequest) SetSearchChannels(_searchChannels []int64) error

SetSearchChannels is SearchChannels Setter 搜索投放频道代码数组,频道代码必须是直通车搜索类频道列表中的值。1:淘宝站内搜索,8、无线站内搜索;16:无线站外搜索

type TaobaoSimbaCampaignPlatformUpdateAPIResponse

type TaobaoSimbaCampaignPlatformUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignPlatformUpdateAPIResponseModel
}

TaobaoSimbaCampaignPlatformUpdateAPIResponse 更新一个推广计划的平台设置 API返回值 taobao.simba.campaign.platform.update

更新一个推广计划的平台设置

type TaobaoSimbaCampaignPlatformUpdateAPIResponseModel

type TaobaoSimbaCampaignPlatformUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_platform_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 修改后的推广计划投放平台设置
	CampaignPlatform *CampaignPlatform `json:"campaign_platform,omitempty" xml:"campaign_platform,omitempty"`
}

TaobaoSimbaCampaignPlatformUpdateAPIResponseModel is 更新一个推广计划的平台设置 成功返回结果

type TaobaoSimbaCampaignScheduleGetAPIRequest

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

TaobaoSimbaCampaignScheduleGetAPIRequest 取得一个推广计划的分时折扣设置 API请求 taobao.simba.campaign.schedule.get

取得一个推广计划的分时折扣设置

func NewTaobaoSimbaCampaignScheduleGetRequest

func NewTaobaoSimbaCampaignScheduleGetRequest() *TaobaoSimbaCampaignScheduleGetAPIRequest

NewTaobaoSimbaCampaignScheduleGetRequest 初始化TaobaoSimbaCampaignScheduleGetAPIRequest对象

func (TaobaoSimbaCampaignScheduleGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaCampaignScheduleGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignScheduleGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignScheduleGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignScheduleGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaCampaignScheduleGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaCampaignScheduleGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaCampaignScheduleGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaCampaignScheduleGetAPIResponse

type TaobaoSimbaCampaignScheduleGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignScheduleGetAPIResponseModel
}

TaobaoSimbaCampaignScheduleGetAPIResponse 取得一个推广计划的分时折扣设置 API返回值 taobao.simba.campaign.schedule.get

取得一个推广计划的分时折扣设置

type TaobaoSimbaCampaignScheduleGetAPIResponseModel

type TaobaoSimbaCampaignScheduleGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_schedule_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 修改后的推广计划分时折扣
	CampaignSchedule *CampaignSchedule `json:"campaign_schedule,omitempty" xml:"campaign_schedule,omitempty"`
}

TaobaoSimbaCampaignScheduleGetAPIResponseModel is 取得一个推广计划的分时折扣设置 成功返回结果

type TaobaoSimbaCampaignScheduleUpdateAPIRequest

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

TaobaoSimbaCampaignScheduleUpdateAPIRequest 更新一个推广计划的分时折扣设置 API请求 taobao.simba.campaign.schedule.update

更新一个推广计划的分时折扣设置

func NewTaobaoSimbaCampaignScheduleUpdateRequest

func NewTaobaoSimbaCampaignScheduleUpdateRequest() *TaobaoSimbaCampaignScheduleUpdateAPIRequest

NewTaobaoSimbaCampaignScheduleUpdateRequest 初始化TaobaoSimbaCampaignScheduleUpdateAPIRequest对象

func (TaobaoSimbaCampaignScheduleUpdateAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignScheduleUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignScheduleUpdateAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignScheduleUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignScheduleUpdateAPIRequest) GetSchedule

GetSchedule Schedule Getter

func (*TaobaoSimbaCampaignScheduleUpdateAPIRequest) SetCampaignId

func (r *TaobaoSimbaCampaignScheduleUpdateAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaCampaignScheduleUpdateAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaCampaignScheduleUpdateAPIRequest) SetSchedule

func (r *TaobaoSimbaCampaignScheduleUpdateAPIRequest) SetSchedule(_schedule string) error

SetSchedule is Schedule Setter 值为:“all”;或者用“;”分割的每天的设置字符串,该字符串为用“,”分割的时段折扣字符串,格式为:起始时间-结束时间:折扣,其中时间是24小时格式记录,折扣是1-150整数,表示折扣百分比;

type TaobaoSimbaCampaignScheduleUpdateAPIResponse

type TaobaoSimbaCampaignScheduleUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignScheduleUpdateAPIResponseModel
}

TaobaoSimbaCampaignScheduleUpdateAPIResponse 更新一个推广计划的分时折扣设置 API返回值 taobao.simba.campaign.schedule.update

更新一个推广计划的分时折扣设置

type TaobaoSimbaCampaignScheduleUpdateAPIResponseModel

type TaobaoSimbaCampaignScheduleUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_schedule_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 修改后的推广计划分时折扣
	CampaignSchedule *CampaignSchedule `json:"campaign_schedule,omitempty" xml:"campaign_schedule,omitempty"`
}

TaobaoSimbaCampaignScheduleUpdateAPIResponseModel is 更新一个推广计划的分时折扣设置 成功返回结果

type TaobaoSimbaCampaignTimetemplateFindAPIRequest

type TaobaoSimbaCampaignTimetemplateFindAPIRequest struct {
	model.Params
}

TaobaoSimbaCampaignTimetemplateFindAPIRequest 获取分时折扣模板 API请求 taobao.simba.campaign.timetemplate.find

批量得到智能推广推广计划下的推广组

func NewTaobaoSimbaCampaignTimetemplateFindRequest

func NewTaobaoSimbaCampaignTimetemplateFindRequest() *TaobaoSimbaCampaignTimetemplateFindAPIRequest

NewTaobaoSimbaCampaignTimetemplateFindRequest 初始化TaobaoSimbaCampaignTimetemplateFindAPIRequest对象

func (TaobaoSimbaCampaignTimetemplateFindAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignTimetemplateFindAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

type TaobaoSimbaCampaignTimetemplateFindAPIResponse

type TaobaoSimbaCampaignTimetemplateFindAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignTimetemplateFindAPIResponseModel
}

TaobaoSimbaCampaignTimetemplateFindAPIResponse 获取分时折扣模板 API返回值 taobao.simba.campaign.timetemplate.find

批量得到智能推广推广计划下的推广组

type TaobaoSimbaCampaignTimetemplateFindAPIResponseModel

type TaobaoSimbaCampaignTimetemplateFindAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_timetemplate_find_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回的推广组分页对象
	Templates []ADGroupPage `json:"templates,omitempty" xml:"templates>ad_group_page,omitempty"`
}

TaobaoSimbaCampaignTimetemplateFindAPIResponseModel is 获取分时折扣模板 成功返回结果

type TaobaoSimbaCampaignUpdateAPIRequest

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

TaobaoSimbaCampaignUpdateAPIRequest 更新一个推广计划 API请求 taobao.simba.campaign.update

更新一个推广计划,可以设置推广计划名字,修改推广计划上下线状态。

func NewTaobaoSimbaCampaignUpdateRequest

func NewTaobaoSimbaCampaignUpdateRequest() *TaobaoSimbaCampaignUpdateAPIRequest

NewTaobaoSimbaCampaignUpdateRequest 初始化TaobaoSimbaCampaignUpdateAPIRequest对象

func (TaobaoSimbaCampaignUpdateAPIRequest) GetApiMethodName

func (r TaobaoSimbaCampaignUpdateAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignUpdateAPIRequest) GetCampaignId

func (r TaobaoSimbaCampaignUpdateAPIRequest) GetCampaignId() int64

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignUpdateAPIRequest) GetOnlineStatus

func (r TaobaoSimbaCampaignUpdateAPIRequest) GetOnlineStatus() string

GetOnlineStatus OnlineStatus Getter

func (TaobaoSimbaCampaignUpdateAPIRequest) GetTitle

GetTitle Title Getter

func (*TaobaoSimbaCampaignUpdateAPIRequest) SetCampaignId

func (r *TaobaoSimbaCampaignUpdateAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaCampaignUpdateAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaCampaignUpdateAPIRequest) SetOnlineStatus

func (r *TaobaoSimbaCampaignUpdateAPIRequest) SetOnlineStatus(_onlineStatus string) error

SetOnlineStatus is OnlineStatus Setter 用户设置的上下限状态;offline-下线;online-上线;

func (*TaobaoSimbaCampaignUpdateAPIRequest) SetTitle

func (r *TaobaoSimbaCampaignUpdateAPIRequest) SetTitle(_title string) error

SetTitle is Title Setter 推广计划名称,不能多余40个字符,不能和客户其他推广计划同名。

type TaobaoSimbaCampaignUpdateAPIResponse

type TaobaoSimbaCampaignUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignUpdateAPIResponseModel
}

TaobaoSimbaCampaignUpdateAPIResponse 更新一个推广计划 API返回值 taobao.simba.campaign.update

更新一个推广计划,可以设置推广计划名字,修改推广计划上下线状态。

type TaobaoSimbaCampaignUpdateAPIResponseModel

type TaobaoSimbaCampaignUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaign_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 修改后的推广计划
	Campaign *Campaign `json:"campaign,omitempty" xml:"campaign,omitempty"`
}

TaobaoSimbaCampaignUpdateAPIResponseModel is 更新一个推广计划 成功返回结果

type TaobaoSimbaCampaignsGetAPIRequest

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

TaobaoSimbaCampaignsGetAPIRequest 取得一组推广计划 API请求 taobao.simba.campaigns.get

取得一个客户的推广计划;

func NewTaobaoSimbaCampaignsGetRequest

func NewTaobaoSimbaCampaignsGetRequest() *TaobaoSimbaCampaignsGetAPIRequest

NewTaobaoSimbaCampaignsGetRequest 初始化TaobaoSimbaCampaignsGetAPIRequest对象

func (TaobaoSimbaCampaignsGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaCampaignsGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCampaignsGetAPIRequest) GetApiParams

func (r TaobaoSimbaCampaignsGetAPIRequest) GetApiParams() url.Values

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignsGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignsGetAPIRequest) GetType

GetType Type Getter

func (*TaobaoSimbaCampaignsGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaCampaignsGetAPIRequest) SetType

func (r *TaobaoSimbaCampaignsGetAPIRequest) SetType(_type int64) error

SetType is Type Setter 计划类型0位标准计划,16位销量明星计划

type TaobaoSimbaCampaignsGetAPIResponse

type TaobaoSimbaCampaignsGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCampaignsGetAPIResponseModel
}

TaobaoSimbaCampaignsGetAPIResponse 取得一组推广计划 API返回值 taobao.simba.campaigns.get

取得一个客户的推广计划;

type TaobaoSimbaCampaignsGetAPIResponseModel

type TaobaoSimbaCampaignsGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_campaigns_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广计划列表
	Campaigns []Campaign `json:"campaigns,omitempty" xml:"campaigns>campaign,omitempty"`
}

TaobaoSimbaCampaignsGetAPIResponseModel is 取得一组推广计划 成功返回结果

type TaobaoSimbaCreativeAddAPIRequest

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

TaobaoSimbaCreativeAddAPIRequest 增加创意 API请求 taobao.simba.creative.add

创建一个创意

func NewTaobaoSimbaCreativeAddRequest

func NewTaobaoSimbaCreativeAddRequest() *TaobaoSimbaCreativeAddAPIRequest

NewTaobaoSimbaCreativeAddRequest 初始化TaobaoSimbaCreativeAddAPIRequest对象

func (TaobaoSimbaCreativeAddAPIRequest) GetAdExaminationCode added in v1.2.5

func (r TaobaoSimbaCreativeAddAPIRequest) GetAdExaminationCode() string

GetAdExaminationCode AdExaminationCode Getter

func (TaobaoSimbaCreativeAddAPIRequest) GetAdgroupId

func (r TaobaoSimbaCreativeAddAPIRequest) GetAdgroupId() int64

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaCreativeAddAPIRequest) GetApiMethodName

func (r TaobaoSimbaCreativeAddAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCreativeAddAPIRequest) GetApiParams

func (r TaobaoSimbaCreativeAddAPIRequest) GetApiParams() url.Values

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCreativeAddAPIRequest) GetImgUrl

GetImgUrl ImgUrl Getter

func (TaobaoSimbaCreativeAddAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCreativeAddAPIRequest) GetTitle

GetTitle Title Getter

func (*TaobaoSimbaCreativeAddAPIRequest) SetAdExaminationCode added in v1.2.5

func (r *TaobaoSimbaCreativeAddAPIRequest) SetAdExaminationCode(_adExaminationCode string) error

SetAdExaminationCode is AdExaminationCode Setter 广审批准文号

func (*TaobaoSimbaCreativeAddAPIRequest) SetAdgroupId

func (r *TaobaoSimbaCreativeAddAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaCreativeAddAPIRequest) SetImgUrl

func (r *TaobaoSimbaCreativeAddAPIRequest) SetImgUrl(_imgUrl string) error

SetImgUrl is ImgUrl Setter 创意图片地址,必须是推广组对应商品的图片之一

func (*TaobaoSimbaCreativeAddAPIRequest) SetNick

func (r *TaobaoSimbaCreativeAddAPIRequest) SetNick(_nick string) error

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaCreativeAddAPIRequest) SetTitle

func (r *TaobaoSimbaCreativeAddAPIRequest) SetTitle(_title string) error

SetTitle is Title Setter 创意标题,最多30个汉字

type TaobaoSimbaCreativeAddAPIResponse

type TaobaoSimbaCreativeAddAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCreativeAddAPIResponseModel
}

TaobaoSimbaCreativeAddAPIResponse 增加创意 API返回值 taobao.simba.creative.add

创建一个创意

type TaobaoSimbaCreativeAddAPIResponseModel

type TaobaoSimbaCreativeAddAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_creative_add_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 新增加的创意对象
	Creative *Creative `json:"creative,omitempty" xml:"creative,omitempty"`
}

TaobaoSimbaCreativeAddAPIResponseModel is 增加创意 成功返回结果

type TaobaoSimbaCreativeDeleteAPIRequest

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

TaobaoSimbaCreativeDeleteAPIRequest 删除创意 API请求 taobao.simba.creative.delete

删除一个创意

func NewTaobaoSimbaCreativeDeleteRequest

func NewTaobaoSimbaCreativeDeleteRequest() *TaobaoSimbaCreativeDeleteAPIRequest

NewTaobaoSimbaCreativeDeleteRequest 初始化TaobaoSimbaCreativeDeleteAPIRequest对象

func (TaobaoSimbaCreativeDeleteAPIRequest) GetApiMethodName

func (r TaobaoSimbaCreativeDeleteAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCreativeDeleteAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCreativeDeleteAPIRequest) GetCreativeId

func (r TaobaoSimbaCreativeDeleteAPIRequest) GetCreativeId() int64

GetCreativeId CreativeId Getter

func (TaobaoSimbaCreativeDeleteAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaCreativeDeleteAPIRequest) SetCreativeId

func (r *TaobaoSimbaCreativeDeleteAPIRequest) SetCreativeId(_creativeId int64) error

SetCreativeId is CreativeId Setter 创意Id

func (*TaobaoSimbaCreativeDeleteAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaCreativeDeleteAPIResponse

type TaobaoSimbaCreativeDeleteAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCreativeDeleteAPIResponseModel
}

TaobaoSimbaCreativeDeleteAPIResponse 删除创意 API返回值 taobao.simba.creative.delete

删除一个创意

type TaobaoSimbaCreativeDeleteAPIResponseModel

type TaobaoSimbaCreativeDeleteAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_creative_delete_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 被删除的创意对象
	Creative *Creative `json:"creative,omitempty" xml:"creative,omitempty"`
}

TaobaoSimbaCreativeDeleteAPIResponseModel is 删除创意 成功返回结果

type TaobaoSimbaCreativeUpdateAPIRequest

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

TaobaoSimbaCreativeUpdateAPIRequest 修改创意 API请求 taobao.simba.creative.update

更新一个创意的信息,可以设置创意标题、创意图片

func NewTaobaoSimbaCreativeUpdateRequest

func NewTaobaoSimbaCreativeUpdateRequest() *TaobaoSimbaCreativeUpdateAPIRequest

NewTaobaoSimbaCreativeUpdateRequest 初始化TaobaoSimbaCreativeUpdateAPIRequest对象

func (TaobaoSimbaCreativeUpdateAPIRequest) GetAdExaminationCode added in v1.2.5

func (r TaobaoSimbaCreativeUpdateAPIRequest) GetAdExaminationCode() string

GetAdExaminationCode AdExaminationCode Getter

func (TaobaoSimbaCreativeUpdateAPIRequest) GetAdgroupId

func (r TaobaoSimbaCreativeUpdateAPIRequest) GetAdgroupId() int64

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaCreativeUpdateAPIRequest) GetApiMethodName

func (r TaobaoSimbaCreativeUpdateAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCreativeUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCreativeUpdateAPIRequest) GetCreativeId

func (r TaobaoSimbaCreativeUpdateAPIRequest) GetCreativeId() int64

GetCreativeId CreativeId Getter

func (TaobaoSimbaCreativeUpdateAPIRequest) GetImgUrl

GetImgUrl ImgUrl Getter

func (TaobaoSimbaCreativeUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCreativeUpdateAPIRequest) GetPictureId

func (r TaobaoSimbaCreativeUpdateAPIRequest) GetPictureId() int64

GetPictureId PictureId Getter

func (TaobaoSimbaCreativeUpdateAPIRequest) GetTitle

GetTitle Title Getter

func (*TaobaoSimbaCreativeUpdateAPIRequest) SetAdExaminationCode added in v1.2.5

func (r *TaobaoSimbaCreativeUpdateAPIRequest) SetAdExaminationCode(_adExaminationCode string) error

SetAdExaminationCode is AdExaminationCode Setter 广审批准文号

func (*TaobaoSimbaCreativeUpdateAPIRequest) SetAdgroupId

func (r *TaobaoSimbaCreativeUpdateAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaCreativeUpdateAPIRequest) SetCreativeId

func (r *TaobaoSimbaCreativeUpdateAPIRequest) SetCreativeId(_creativeId int64) error

SetCreativeId is CreativeId Setter 创意Id

func (*TaobaoSimbaCreativeUpdateAPIRequest) SetImgUrl

func (r *TaobaoSimbaCreativeUpdateAPIRequest) SetImgUrl(_imgUrl string) error

SetImgUrl is ImgUrl Setter 创意图片地址,必须是推广组对应商品的图片之一

func (*TaobaoSimbaCreativeUpdateAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaCreativeUpdateAPIRequest) SetPictureId

func (r *TaobaoSimbaCreativeUpdateAPIRequest) SetPictureId(_pictureId int64) error

SetPictureId is PictureId Setter 如果用户开通了创意本地上传图片功能的,可以使用该用户图片空间的图片来修改创意,pictureId为图片空间中图片的pictureId,img_url为图片空间中图片链接地址,如果是使用的主图或副图修改创意,则pictureId必须为空

func (*TaobaoSimbaCreativeUpdateAPIRequest) SetTitle

func (r *TaobaoSimbaCreativeUpdateAPIRequest) SetTitle(_title string) error

SetTitle is Title Setter 创意标题,最多30个汉字

type TaobaoSimbaCreativeUpdateAPIResponse

type TaobaoSimbaCreativeUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCreativeUpdateAPIResponseModel
}

TaobaoSimbaCreativeUpdateAPIResponse 修改创意 API返回值 taobao.simba.creative.update

更新一个创意的信息,可以设置创意标题、创意图片

type TaobaoSimbaCreativeUpdateAPIResponseModel

type TaobaoSimbaCreativeUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_creative_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 创意修改记录对象
	Creativerecord *CreativeRecord `json:"creativerecord,omitempty" xml:"creativerecord,omitempty"`
}

TaobaoSimbaCreativeUpdateAPIResponseModel is 修改创意 成功返回结果

type TaobaoSimbaCreativeidsDeletedGetAPIRequest

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

TaobaoSimbaCreativeidsDeletedGetAPIRequest 获取删除的创意ID API请求 taobao.simba.creativeids.deleted.get

获取删除的创意ID

func NewTaobaoSimbaCreativeidsDeletedGetRequest

func NewTaobaoSimbaCreativeidsDeletedGetRequest() *TaobaoSimbaCreativeidsDeletedGetAPIRequest

NewTaobaoSimbaCreativeidsDeletedGetRequest 初始化TaobaoSimbaCreativeidsDeletedGetAPIRequest对象

func (TaobaoSimbaCreativeidsDeletedGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCreativeidsDeletedGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCreativeidsDeletedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCreativeidsDeletedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaCreativeidsDeletedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaCreativeidsDeletedGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (*TaobaoSimbaCreativeidsDeletedGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaCreativeidsDeletedGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 返回的第几页数据,默认为1

func (*TaobaoSimbaCreativeidsDeletedGetAPIRequest) SetPageSize

func (r *TaobaoSimbaCreativeidsDeletedGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 返回的每页数据量大小,默认200最大1000

func (*TaobaoSimbaCreativeidsDeletedGetAPIRequest) SetStartTime

func (r *TaobaoSimbaCreativeidsDeletedGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 得到这个时间点之后的数据,不能大于一个月

type TaobaoSimbaCreativeidsDeletedGetAPIResponse

type TaobaoSimbaCreativeidsDeletedGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCreativeidsDeletedGetAPIResponseModel
}

TaobaoSimbaCreativeidsDeletedGetAPIResponse 获取删除的创意ID API返回值 taobao.simba.creativeids.deleted.get

获取删除的创意ID

type TaobaoSimbaCreativeidsDeletedGetAPIResponseModel

type TaobaoSimbaCreativeidsDeletedGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_creativeids_deleted_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 创意ID列表
	DeletedCreativeIds []int64 `json:"deleted_creative_ids,omitempty" xml:"deleted_creative_ids>int64,omitempty"`
}

TaobaoSimbaCreativeidsDeletedGetAPIResponseModel is 获取删除的创意ID 成功返回结果

type TaobaoSimbaCreativesChangedGetAPIRequest

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

TaobaoSimbaCreativesChangedGetAPIRequest 分页获取修改过的广告创意ID和修改时间 API请求 taobao.simba.creatives.changed.get

分页获取修改过的广告创意ID和修改时间

func NewTaobaoSimbaCreativesChangedGetRequest

func NewTaobaoSimbaCreativesChangedGetRequest() *TaobaoSimbaCreativesChangedGetAPIRequest

NewTaobaoSimbaCreativesChangedGetRequest 初始化TaobaoSimbaCreativesChangedGetAPIRequest对象

func (TaobaoSimbaCreativesChangedGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaCreativesChangedGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCreativesChangedGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCreativesChangedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCreativesChangedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaCreativesChangedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaCreativesChangedGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (*TaobaoSimbaCreativesChangedGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaCreativesChangedGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 返回的第几页数据,默认为1

func (*TaobaoSimbaCreativesChangedGetAPIRequest) SetPageSize

func (r *TaobaoSimbaCreativesChangedGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 返回的每页数据量大小,默认200最大1000

func (*TaobaoSimbaCreativesChangedGetAPIRequest) SetStartTime

func (r *TaobaoSimbaCreativesChangedGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 得到此时间点之后的数据,不能大于一个月

type TaobaoSimbaCreativesChangedGetAPIResponse

type TaobaoSimbaCreativesChangedGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCreativesChangedGetAPIResponseModel
}

TaobaoSimbaCreativesChangedGetAPIResponse 分页获取修改过的广告创意ID和修改时间 API返回值 taobao.simba.creatives.changed.get

分页获取修改过的广告创意ID和修改时间

type TaobaoSimbaCreativesChangedGetAPIResponseModel

type TaobaoSimbaCreativesChangedGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_creatives_changed_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 广告创意分页对象
	Creatives *CreativePage `json:"creatives,omitempty" xml:"creatives,omitempty"`
}

TaobaoSimbaCreativesChangedGetAPIResponseModel is 分页获取修改过的广告创意ID和修改时间 成功返回结果

type TaobaoSimbaCreativesGetAPIRequest

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

TaobaoSimbaCreativesGetAPIRequest 批量获得创意 API请求 taobao.simba.creatives.get

取得一个推广组的所有创意或者根据一个创意Id列表取得一组创意;<br/>如果同时提供了推广组Id和创意id列表,则优先使用推广组Id;

func NewTaobaoSimbaCreativesGetRequest

func NewTaobaoSimbaCreativesGetRequest() *TaobaoSimbaCreativesGetAPIRequest

NewTaobaoSimbaCreativesGetRequest 初始化TaobaoSimbaCreativesGetAPIRequest对象

func (TaobaoSimbaCreativesGetAPIRequest) GetAdgroupId

func (r TaobaoSimbaCreativesGetAPIRequest) GetAdgroupId() int64

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaCreativesGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaCreativesGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCreativesGetAPIRequest) GetApiParams

func (r TaobaoSimbaCreativesGetAPIRequest) GetApiParams() url.Values

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCreativesGetAPIRequest) GetCreativeIds

func (r TaobaoSimbaCreativesGetAPIRequest) GetCreativeIds() []int64

GetCreativeIds CreativeIds Getter

func (TaobaoSimbaCreativesGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaCreativesGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaCreativesGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaCreativesGetAPIRequest) SetCreativeIds

func (r *TaobaoSimbaCreativesGetAPIRequest) SetCreativeIds(_creativeIds []int64) error

SetCreativeIds is CreativeIds Setter 创意Id数组,最多200个

func (*TaobaoSimbaCreativesGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaCreativesGetAPIResponse

type TaobaoSimbaCreativesGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCreativesGetAPIResponseModel
}

TaobaoSimbaCreativesGetAPIResponse 批量获得创意 API返回值 taobao.simba.creatives.get

取得一个推广组的所有创意或者根据一个创意Id列表取得一组创意;<br/>如果同时提供了推广组Id和创意id列表,则优先使用推广组Id;

type TaobaoSimbaCreativesGetAPIResponseModel

type TaobaoSimbaCreativesGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_creatives_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 创意对象列表
	Creatives []Creative `json:"creatives,omitempty" xml:"creatives>creative,omitempty"`
}

TaobaoSimbaCreativesGetAPIResponseModel is 批量获得创意 成功返回结果

type TaobaoSimbaCustomersAuthorizedGetAPIRequest

type TaobaoSimbaCustomersAuthorizedGetAPIRequest struct {
	model.Params
}

TaobaoSimbaCustomersAuthorizedGetAPIRequest 取得当前登录用户的授权账户列表 API请求 taobao.simba.customers.authorized.get

取得当前登录用户的授权账户列表

func NewTaobaoSimbaCustomersAuthorizedGetRequest

func NewTaobaoSimbaCustomersAuthorizedGetRequest() *TaobaoSimbaCustomersAuthorizedGetAPIRequest

NewTaobaoSimbaCustomersAuthorizedGetRequest 初始化TaobaoSimbaCustomersAuthorizedGetAPIRequest对象

func (TaobaoSimbaCustomersAuthorizedGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCustomersAuthorizedGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

type TaobaoSimbaCustomersAuthorizedGetAPIResponse

type TaobaoSimbaCustomersAuthorizedGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCustomersAuthorizedGetAPIResponseModel
}

TaobaoSimbaCustomersAuthorizedGetAPIResponse 取得当前登录用户的授权账户列表 API返回值 taobao.simba.customers.authorized.get

取得当前登录用户的授权账户列表

type TaobaoSimbaCustomersAuthorizedGetAPIResponseModel

type TaobaoSimbaCustomersAuthorizedGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_customers_authorized_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 授权当前登录账户为代理账户的昵称列表
	Nicks []string `json:"nicks,omitempty" xml:"nicks>string,omitempty"`
}

TaobaoSimbaCustomersAuthorizedGetAPIResponseModel is 取得当前登录用户的授权账户列表 成功返回结果

type TaobaoSimbaCustomersSidGetAPIRequest

type TaobaoSimbaCustomersSidGetAPIRequest struct {
	model.Params
}

TaobaoSimbaCustomersSidGetAPIRequest 查看功能权限 API请求 taobao.simba.customers.sid.get

查询用户是否拥有某个功能权限

func NewTaobaoSimbaCustomersSidGetRequest

func NewTaobaoSimbaCustomersSidGetRequest() *TaobaoSimbaCustomersSidGetAPIRequest

NewTaobaoSimbaCustomersSidGetRequest 初始化TaobaoSimbaCustomersSidGetAPIRequest对象

func (TaobaoSimbaCustomersSidGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaCustomersSidGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaCustomersSidGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

type TaobaoSimbaCustomersSidGetAPIResponse

type TaobaoSimbaCustomersSidGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaCustomersSidGetAPIResponseModel
}

TaobaoSimbaCustomersSidGetAPIResponse 查看功能权限 API返回值 taobao.simba.customers.sid.get

查询用户是否拥有某个功能权限

type TaobaoSimbaCustomersSidGetAPIResponseModel

type TaobaoSimbaCustomersSidGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_customers_sid_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 权限列表及是否有权限
	Result *SidVo `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoSimbaCustomersSidGetAPIResponseModel is 查看功能权限 成功返回结果

type TaobaoSimbaHourReportAccountGetAPIRequest

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

TaobaoSimbaHourReportAccountGetAPIRequest 账户级别小时报表获取 API请求 taobao.simba.hour.report.account.get

获取账户小时实时报表数据

func NewTaobaoSimbaHourReportAccountGetRequest

func NewTaobaoSimbaHourReportAccountGetRequest() *TaobaoSimbaHourReportAccountGetAPIRequest

NewTaobaoSimbaHourReportAccountGetRequest 初始化TaobaoSimbaHourReportAccountGetAPIRequest对象

func (TaobaoSimbaHourReportAccountGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaHourReportAccountGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaHourReportAccountGetAPIRequest) GetHour

GetHour Hour Getter

func (TaobaoSimbaHourReportAccountGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaHourReportAccountGetAPIRequest) GetTheDate

GetTheDate TheDate Getter

func (*TaobaoSimbaHourReportAccountGetAPIRequest) SetHour

SetHour is Hour Setter 当前小时

func (*TaobaoSimbaHourReportAccountGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaHourReportAccountGetAPIRequest) SetTheDate

func (r *TaobaoSimbaHourReportAccountGetAPIRequest) SetTheDate(_theDate string) error

SetTheDate is TheDate Setter 时间

type TaobaoSimbaHourReportAccountGetAPIResponse

type TaobaoSimbaHourReportAccountGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaHourReportAccountGetAPIResponseModel
}

TaobaoSimbaHourReportAccountGetAPIResponse 账户级别小时报表获取 API返回值 taobao.simba.hour.report.account.get

获取账户小时实时报表数据

type TaobaoSimbaHourReportAccountGetAPIResponseModel

type TaobaoSimbaHourReportAccountGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_hour_report_account_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 11
	Results []RtRptResultEntityDto `json:"results,omitempty" xml:"results>rt_rpt_result_entity_dto,omitempty"`
}

TaobaoSimbaHourReportAccountGetAPIResponseModel is 账户级别小时报表获取 成功返回结果

type TaobaoSimbaHourReportAdgroupGetAPIRequest

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

TaobaoSimbaHourReportAdgroupGetAPIRequest 推广单元小时级别实时报表查询 API请求 taobao.simba.hour.report.adgroup.get

推广单元小时级别实时报表查询

func NewTaobaoSimbaHourReportAdgroupGetRequest

func NewTaobaoSimbaHourReportAdgroupGetRequest() *TaobaoSimbaHourReportAdgroupGetAPIRequest

NewTaobaoSimbaHourReportAdgroupGetRequest 初始化TaobaoSimbaHourReportAdgroupGetAPIRequest对象

func (TaobaoSimbaHourReportAdgroupGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaHourReportAdgroupGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaHourReportAdgroupGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaHourReportAdgroupGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaHourReportAdgroupGetAPIRequest) GetHour

GetHour Hour Getter

func (TaobaoSimbaHourReportAdgroupGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaHourReportAdgroupGetAPIRequest) GetTheDate

GetTheDate TheDate Getter

func (*TaobaoSimbaHourReportAdgroupGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaHourReportAdgroupGetAPIRequest) SetAdgroupId(_adgroupId string) error

SetAdgroupId is AdgroupId Setter 推广单元id

func (*TaobaoSimbaHourReportAdgroupGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaHourReportAdgroupGetAPIRequest) SetCampaignId(_campaignId string) error

SetCampaignId is CampaignId Setter 计划id

func (*TaobaoSimbaHourReportAdgroupGetAPIRequest) SetHour

SetHour is Hour Setter 当前小时

func (*TaobaoSimbaHourReportAdgroupGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaHourReportAdgroupGetAPIRequest) SetTheDate

func (r *TaobaoSimbaHourReportAdgroupGetAPIRequest) SetTheDate(_theDate string) error

SetTheDate is TheDate Setter 时间

type TaobaoSimbaHourReportAdgroupGetAPIResponse

type TaobaoSimbaHourReportAdgroupGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaHourReportAdgroupGetAPIResponseModel
}

TaobaoSimbaHourReportAdgroupGetAPIResponse 推广单元小时级别实时报表查询 API返回值 taobao.simba.hour.report.adgroup.get

推广单元小时级别实时报表查询

type TaobaoSimbaHourReportAdgroupGetAPIResponseModel

type TaobaoSimbaHourReportAdgroupGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_hour_report_adgroup_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 11
	Results *RtRptResultEntityDto `json:"results,omitempty" xml:"results,omitempty"`
}

TaobaoSimbaHourReportAdgroupGetAPIResponseModel is 推广单元小时级别实时报表查询 成功返回结果

type TaobaoSimbaHourReportCampaignGetAPIRequest

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

TaobaoSimbaHourReportCampaignGetAPIRequest 计划维度小时报表获取 API请求 taobao.simba.hour.report.campaign.get

计划维度小时报表获取

func NewTaobaoSimbaHourReportCampaignGetRequest

func NewTaobaoSimbaHourReportCampaignGetRequest() *TaobaoSimbaHourReportCampaignGetAPIRequest

NewTaobaoSimbaHourReportCampaignGetRequest 初始化TaobaoSimbaHourReportCampaignGetAPIRequest对象

func (TaobaoSimbaHourReportCampaignGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaHourReportCampaignGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaHourReportCampaignGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaHourReportCampaignGetAPIRequest) GetHour

GetHour Hour Getter

func (TaobaoSimbaHourReportCampaignGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaHourReportCampaignGetAPIRequest) GetTheDate

GetTheDate TheDate Getter

func (*TaobaoSimbaHourReportCampaignGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaHourReportCampaignGetAPIRequest) SetCampaignId(_campaignId string) error

SetCampaignId is CampaignId Setter 计划id

func (*TaobaoSimbaHourReportCampaignGetAPIRequest) SetHour

SetHour is Hour Setter 当前小时

func (*TaobaoSimbaHourReportCampaignGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaHourReportCampaignGetAPIRequest) SetTheDate

SetTheDate is TheDate Setter 时间

type TaobaoSimbaHourReportCampaignGetAPIResponse

type TaobaoSimbaHourReportCampaignGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaHourReportCampaignGetAPIResponseModel
}

TaobaoSimbaHourReportCampaignGetAPIResponse 计划维度小时报表获取 API返回值 taobao.simba.hour.report.campaign.get

计划维度小时报表获取

type TaobaoSimbaHourReportCampaignGetAPIResponseModel

type TaobaoSimbaHourReportCampaignGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_hour_report_campaign_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 11
	Results *RtRptResultEntityDto `json:"results,omitempty" xml:"results,omitempty"`
}

TaobaoSimbaHourReportCampaignGetAPIResponseModel is 计划维度小时报表获取 成功返回结果

type TaobaoSimbaInsightCatsdataGetAPIRequest

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

TaobaoSimbaInsightCatsdataGetAPIRequest 获取类目的大盘数据 API请求 taobao.simba.insight.catsdata.get

根据类目id获取类目的大盘数据,包括展现指数,点击指数,点击率,本次提供的insight相关的其它接口的都是这种情况。

func NewTaobaoSimbaInsightCatsdataGetRequest

func NewTaobaoSimbaInsightCatsdataGetRequest() *TaobaoSimbaInsightCatsdataGetAPIRequest

NewTaobaoSimbaInsightCatsdataGetRequest 初始化TaobaoSimbaInsightCatsdataGetAPIRequest对象

func (TaobaoSimbaInsightCatsdataGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaInsightCatsdataGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaInsightCatsdataGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightCatsdataGetAPIRequest) GetCategoryIdList

func (r TaobaoSimbaInsightCatsdataGetAPIRequest) GetCategoryIdList() []string

GetCategoryIdList CategoryIdList Getter

func (TaobaoSimbaInsightCatsdataGetAPIRequest) GetEndDate

GetEndDate EndDate Getter

func (TaobaoSimbaInsightCatsdataGetAPIRequest) GetStartDate

GetStartDate StartDate Getter

func (*TaobaoSimbaInsightCatsdataGetAPIRequest) SetCategoryIdList

func (r *TaobaoSimbaInsightCatsdataGetAPIRequest) SetCategoryIdList(_categoryIdList []string) error

SetCategoryIdList is CategoryIdList Setter 表示要查询的类目id

func (*TaobaoSimbaInsightCatsdataGetAPIRequest) SetEndDate

func (r *TaobaoSimbaInsightCatsdataGetAPIRequest) SetEndDate(_endDate string) error

SetEndDate is EndDate Setter 查询截止时间,格式:yyyy-MM-dd

func (*TaobaoSimbaInsightCatsdataGetAPIRequest) SetStartDate

func (r *TaobaoSimbaInsightCatsdataGetAPIRequest) SetStartDate(_startDate string) error

SetStartDate is StartDate Setter 开始时间,格式:yyyy-MM-dd

type TaobaoSimbaInsightCatsdataGetAPIResponse

type TaobaoSimbaInsightCatsdataGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaInsightCatsdataGetAPIResponseModel
}

TaobaoSimbaInsightCatsdataGetAPIResponse 获取类目的大盘数据 API返回值 taobao.simba.insight.catsdata.get

根据类目id获取类目的大盘数据,包括展现指数,点击指数,点击率,本次提供的insight相关的其它接口的都是这种情况。

type TaobaoSimbaInsightCatsdataGetAPIResponseModel

type TaobaoSimbaInsightCatsdataGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_insight_catsdata_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 类目详细数据列表
	CatDataList []InsightCategoryDataDto `json:"cat_data_list,omitempty" xml:"cat_data_list>insight_category_data_dto,omitempty"`
}

TaobaoSimbaInsightCatsdataGetAPIResponseModel is 获取类目的大盘数据 成功返回结果

type TaobaoSimbaInsightCatsforecastnewGetAPIRequest

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

TaobaoSimbaInsightCatsforecastnewGetAPIRequest 获取词的相关类目预测数据 API请求 taobao.simba.insight.catsforecastnew.get

根据给定的词,预测这些词的相关类目

func NewTaobaoSimbaInsightCatsforecastnewGetRequest

func NewTaobaoSimbaInsightCatsforecastnewGetRequest() *TaobaoSimbaInsightCatsforecastnewGetAPIRequest

NewTaobaoSimbaInsightCatsforecastnewGetRequest 初始化TaobaoSimbaInsightCatsforecastnewGetAPIRequest对象

func (TaobaoSimbaInsightCatsforecastnewGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaInsightCatsforecastnewGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightCatsforecastnewGetAPIRequest) GetBidwordList

GetBidwordList BidwordList Getter

func (*TaobaoSimbaInsightCatsforecastnewGetAPIRequest) SetBidwordList

func (r *TaobaoSimbaInsightCatsforecastnewGetAPIRequest) SetBidwordList(_bidwordList []string) error

SetBidwordList is BidwordList Setter 需要查询的词列表

type TaobaoSimbaInsightCatsforecastnewGetAPIResponse

type TaobaoSimbaInsightCatsforecastnewGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaInsightCatsforecastnewGetAPIResponseModel
}

TaobaoSimbaInsightCatsforecastnewGetAPIResponse 获取词的相关类目预测数据 API返回值 taobao.simba.insight.catsforecastnew.get

根据给定的词,预测这些词的相关类目

type TaobaoSimbaInsightCatsforecastnewGetAPIResponseModel

type TaobaoSimbaInsightCatsforecastnewGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_insight_catsforecastnew_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 词的相关类目列表
	CategoryForecastList []InsightCategoryForcastDto `json:"category_forecast_list,omitempty" xml:"category_forecast_list>insight_category_forcast_dto,omitempty"`
}

TaobaoSimbaInsightCatsforecastnewGetAPIResponseModel is 获取词的相关类目预测数据 成功返回结果

type TaobaoSimbaInsightCatsinfoGetAPIRequest

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

TaobaoSimbaInsightCatsinfoGetAPIRequest 类目信息获取 API请求 taobao.simba.insight.catsinfo.get

获取类目信息,此接口既提供所有顶级类目的查询,又提供给定类目id自身信息和子类目信息的查询,所以可以根据此接口逐层获取所有的类目信息

func NewTaobaoSimbaInsightCatsinfoGetRequest

func NewTaobaoSimbaInsightCatsinfoGetRequest() *TaobaoSimbaInsightCatsinfoGetAPIRequest

NewTaobaoSimbaInsightCatsinfoGetRequest 初始化TaobaoSimbaInsightCatsinfoGetAPIRequest对象

func (TaobaoSimbaInsightCatsinfoGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaInsightCatsinfoGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaInsightCatsinfoGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightCatsinfoGetAPIRequest) GetCategoryIdList

func (r TaobaoSimbaInsightCatsinfoGetAPIRequest) GetCategoryIdList() []string

GetCategoryIdList CategoryIdList Getter

func (TaobaoSimbaInsightCatsinfoGetAPIRequest) GetType

GetType Type Getter

func (*TaobaoSimbaInsightCatsinfoGetAPIRequest) SetCategoryIdList

func (r *TaobaoSimbaInsightCatsinfoGetAPIRequest) SetCategoryIdList(_categoryIdList []string) error

SetCategoryIdList is CategoryIdList Setter 需要查询的类目id

func (*TaobaoSimbaInsightCatsinfoGetAPIRequest) SetType

SetType is Type Setter 表示请求的类型:0表示请求所有顶级类目的信息,这时可以忽略第二个参数,1表示获取给定的类目id的详细信息,2表示获取给定类目id的所有子类目的详细信息

type TaobaoSimbaInsightCatsinfoGetAPIResponse

type TaobaoSimbaInsightCatsinfoGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaInsightCatsinfoGetAPIResponseModel
}

TaobaoSimbaInsightCatsinfoGetAPIResponse 类目信息获取 API返回值 taobao.simba.insight.catsinfo.get

获取类目信息,此接口既提供所有顶级类目的查询,又提供给定类目id自身信息和子类目信息的查询,所以可以根据此接口逐层获取所有的类目信息

type TaobaoSimbaInsightCatsinfoGetAPIResponseModel

type TaobaoSimbaInsightCatsinfoGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_insight_catsinfo_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 类目详细信息
	CategoryInfoList []InsightCategoryInfoDto `json:"category_info_list,omitempty" xml:"category_info_list>insight_category_info_dto,omitempty"`
}

TaobaoSimbaInsightCatsinfoGetAPIResponseModel is 类目信息获取 成功返回结果

type TaobaoSimbaInsightCatstopwordnewGetAPIRequest

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

TaobaoSimbaInsightCatstopwordnewGetAPIRequest 获取类目下最热门的词 API请求 taobao.simba.insight.catstopwordnew.get

按照某个维度,查询某个类目下最热门的词,维度有点击,展现,花费,点击率等,具体可以按哪些字段进行排序,参考参数说明,比如选择了impression,则返回该类目下展现量最高那几个词。

func NewTaobaoSimbaInsightCatstopwordnewGetRequest

func NewTaobaoSimbaInsightCatstopwordnewGetRequest() *TaobaoSimbaInsightCatstopwordnewGetAPIRequest

NewTaobaoSimbaInsightCatstopwordnewGetRequest 初始化TaobaoSimbaInsightCatstopwordnewGetAPIRequest对象

func (TaobaoSimbaInsightCatstopwordnewGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaInsightCatstopwordnewGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightCatstopwordnewGetAPIRequest) GetCatId

GetCatId CatId Getter

func (TaobaoSimbaInsightCatstopwordnewGetAPIRequest) GetDimension

GetDimension Dimension Getter

func (TaobaoSimbaInsightCatstopwordnewGetAPIRequest) GetEndDate

GetEndDate EndDate Getter

func (TaobaoSimbaInsightCatstopwordnewGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaInsightCatstopwordnewGetAPIRequest) GetStartDate

GetStartDate StartDate Getter

func (*TaobaoSimbaInsightCatstopwordnewGetAPIRequest) SetCatId

SetCatId is CatId Setter 类目id

func (*TaobaoSimbaInsightCatstopwordnewGetAPIRequest) SetDimension

func (r *TaobaoSimbaInsightCatstopwordnewGetAPIRequest) SetDimension(_dimension string) error

SetDimension is Dimension Setter 表示查询的维度,比如选择click,则查询该类目下点击量最大的词,可供选择的值有:impression, click, cost, ctr, cpc, coverage, transactiontotal, transactionshippingtotal, favtotal, roi

func (*TaobaoSimbaInsightCatstopwordnewGetAPIRequest) SetEndDate

SetEndDate is EndDate Setter 查询截止时间,格式只能是:yyyy-MM-dd

func (*TaobaoSimbaInsightCatstopwordnewGetAPIRequest) SetPageSize

func (r *TaobaoSimbaInsightCatstopwordnewGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 返回前多少条数据

func (*TaobaoSimbaInsightCatstopwordnewGetAPIRequest) SetStartDate

func (r *TaobaoSimbaInsightCatstopwordnewGetAPIRequest) SetStartDate(_startDate string) error

SetStartDate is StartDate Setter 查询开始时间,格式必须为:yyyy-MM-dd

type TaobaoSimbaInsightCatstopwordnewGetAPIResponse

type TaobaoSimbaInsightCatstopwordnewGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaInsightCatstopwordnewGetAPIResponseModel
}

TaobaoSimbaInsightCatstopwordnewGetAPIResponse 获取类目下最热门的词 API返回值 taobao.simba.insight.catstopwordnew.get

按照某个维度,查询某个类目下最热门的词,维度有点击,展现,花费,点击率等,具体可以按哪些字段进行排序,参考参数说明,比如选择了impression,则返回该类目下展现量最高那几个词。

type TaobaoSimbaInsightCatstopwordnewGetAPIResponseModel

type TaobaoSimbaInsightCatstopwordnewGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_insight_catstopwordnew_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 类目下热门词详细数据
	TopwordDataList []InsightWordDataUnderCatDto `json:"topword_data_list,omitempty" xml:"topword_data_list>insight_word_data_under_cat_dto,omitempty"`
}

TaobaoSimbaInsightCatstopwordnewGetAPIResponseModel is 获取类目下最热门的词 成功返回结果

type TaobaoSimbaInsightCatsworddataGetAPIRequest

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

TaobaoSimbaInsightCatsworddataGetAPIRequest 获取类目下关键词的数据 API请求 taobao.simba.insight.catsworddata.get

获取给定词在给定类目下的详细数据

func NewTaobaoSimbaInsightCatsworddataGetRequest

func NewTaobaoSimbaInsightCatsworddataGetRequest() *TaobaoSimbaInsightCatsworddataGetAPIRequest

NewTaobaoSimbaInsightCatsworddataGetRequest 初始化TaobaoSimbaInsightCatsworddataGetAPIRequest对象

func (TaobaoSimbaInsightCatsworddataGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaInsightCatsworddataGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightCatsworddataGetAPIRequest) GetBidwordList

GetBidwordList BidwordList Getter

func (TaobaoSimbaInsightCatsworddataGetAPIRequest) GetCatId

GetCatId CatId Getter

func (TaobaoSimbaInsightCatsworddataGetAPIRequest) GetEndDate

GetEndDate EndDate Getter

func (TaobaoSimbaInsightCatsworddataGetAPIRequest) GetStartDate

GetStartDate StartDate Getter

func (*TaobaoSimbaInsightCatsworddataGetAPIRequest) SetBidwordList

func (r *TaobaoSimbaInsightCatsworddataGetAPIRequest) SetBidwordList(_bidwordList []string) error

SetBidwordList is BidwordList Setter 需要查询的关键词列表,最大长度100。

func (*TaobaoSimbaInsightCatsworddataGetAPIRequest) SetCatId

SetCatId is CatId Setter 类目id

func (*TaobaoSimbaInsightCatsworddataGetAPIRequest) SetEndDate

SetEndDate is EndDate Setter 结束时间,格式只能为:yyyy-MM-dd

func (*TaobaoSimbaInsightCatsworddataGetAPIRequest) SetStartDate

func (r *TaobaoSimbaInsightCatsworddataGetAPIRequest) SetStartDate(_startDate string) error

SetStartDate is StartDate Setter 开始时间,格式只能为:yyyy-MM-dd

type TaobaoSimbaInsightCatsworddataGetAPIResponse

type TaobaoSimbaInsightCatsworddataGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaInsightCatsworddataGetAPIResponseModel
}

TaobaoSimbaInsightCatsworddataGetAPIResponse 获取类目下关键词的数据 API返回值 taobao.simba.insight.catsworddata.get

获取给定词在给定类目下的详细数据

type TaobaoSimbaInsightCatsworddataGetAPIResponseModel

type TaobaoSimbaInsightCatsworddataGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_insight_catsworddata_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 关键词在类目下的数据
	CatwordDataList []InsightWordDataUnderCatDto `json:"catword_data_list,omitempty" xml:"catword_data_list>insight_word_data_under_cat_dto,omitempty"`
}

TaobaoSimbaInsightCatsworddataGetAPIResponseModel is 获取类目下关键词的数据 成功返回结果

type TaobaoSimbaInsightRelatedwordsGetAPIRequest

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

TaobaoSimbaInsightRelatedwordsGetAPIRequest 获取词的相关词 API请求 taobao.simba.insight.relatedwords.get

获取给定词的若干相关词,返回结果中越相关的权重越大,排在越前面,根据number参数对返回结果进行截断。

func NewTaobaoSimbaInsightRelatedwordsGetRequest

func NewTaobaoSimbaInsightRelatedwordsGetRequest() *TaobaoSimbaInsightRelatedwordsGetAPIRequest

NewTaobaoSimbaInsightRelatedwordsGetRequest 初始化TaobaoSimbaInsightRelatedwordsGetAPIRequest对象

func (TaobaoSimbaInsightRelatedwordsGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaInsightRelatedwordsGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightRelatedwordsGetAPIRequest) GetBidwordList

GetBidwordList BidwordList Getter

func (TaobaoSimbaInsightRelatedwordsGetAPIRequest) GetNumber

GetNumber Number Getter

func (*TaobaoSimbaInsightRelatedwordsGetAPIRequest) SetBidwordList

func (r *TaobaoSimbaInsightRelatedwordsGetAPIRequest) SetBidwordList(_bidwordList []string) error

SetBidwordList is BidwordList Setter 要查询的词列表

func (*TaobaoSimbaInsightRelatedwordsGetAPIRequest) SetNumber

SetNumber is Number Setter 表示返回数据的条数

type TaobaoSimbaInsightRelatedwordsGetAPIResponse

type TaobaoSimbaInsightRelatedwordsGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaInsightRelatedwordsGetAPIResponseModel
}

TaobaoSimbaInsightRelatedwordsGetAPIResponse 获取词的相关词 API返回值 taobao.simba.insight.relatedwords.get

获取给定词的若干相关词,返回结果中越相关的权重越大,排在越前面,根据number参数对返回结果进行截断。

type TaobaoSimbaInsightRelatedwordsGetAPIResponseModel

type TaobaoSimbaInsightRelatedwordsGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_insight_relatedwords_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 相关词列表,最多可传100个。
	RelatedWordsResultList []InsightRelatedWords `json:"related_words_result_list,omitempty" xml:"related_words_result_list>insight_related_words,omitempty"`
}

TaobaoSimbaInsightRelatedwordsGetAPIResponseModel is 获取词的相关词 成功返回结果

type TaobaoSimbaInsightWordsareadataGetAPIRequest

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

TaobaoSimbaInsightWordsareadataGetAPIRequest 获取关键词按地域进行细分的数据 API请求 taobao.simba.insight.wordsareadata.get

获取关键词按地域细分的详细数据,目前地域只能细化到省级别,返回的结果中包括市,是为了方便以后扩展,目前结果中市的值等于省。

func NewTaobaoSimbaInsightWordsareadataGetRequest

func NewTaobaoSimbaInsightWordsareadataGetRequest() *TaobaoSimbaInsightWordsareadataGetAPIRequest

NewTaobaoSimbaInsightWordsareadataGetRequest 初始化TaobaoSimbaInsightWordsareadataGetAPIRequest对象

func (TaobaoSimbaInsightWordsareadataGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaInsightWordsareadataGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightWordsareadataGetAPIRequest) GetBidword

GetBidword Bidword Getter

func (TaobaoSimbaInsightWordsareadataGetAPIRequest) GetEndDate

GetEndDate EndDate Getter

func (TaobaoSimbaInsightWordsareadataGetAPIRequest) GetStartDate

GetStartDate StartDate Getter

func (*TaobaoSimbaInsightWordsareadataGetAPIRequest) SetBidword

SetBidword is Bidword Setter 关键词

func (*TaobaoSimbaInsightWordsareadataGetAPIRequest) SetEndDate

SetEndDate is EndDate Setter 结束时间,格式:yyyy-MM-dd

func (*TaobaoSimbaInsightWordsareadataGetAPIRequest) SetStartDate

func (r *TaobaoSimbaInsightWordsareadataGetAPIRequest) SetStartDate(_startDate string) error

SetStartDate is StartDate Setter 开始时间,格式:yyyy-MM-dd

type TaobaoSimbaInsightWordsareadataGetAPIResponse

type TaobaoSimbaInsightWordsareadataGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaInsightWordsareadataGetAPIResponseModel
}

TaobaoSimbaInsightWordsareadataGetAPIResponse 获取关键词按地域进行细分的数据 API返回值 taobao.simba.insight.wordsareadata.get

获取关键词按地域细分的详细数据,目前地域只能细化到省级别,返回的结果中包括市,是为了方便以后扩展,目前结果中市的值等于省。

type TaobaoSimbaInsightWordsareadataGetAPIResponseModel

type TaobaoSimbaInsightWordsareadataGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_insight_wordsareadata_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 地域细分数据
	WordAreadataList []InsightWordsAreaDistributeDataDto `json:"word_areadata_list,omitempty" xml:"word_areadata_list>insight_words_area_distribute_data_dto,omitempty"`
}

TaobaoSimbaInsightWordsareadataGetAPIResponseModel is 获取关键词按地域进行细分的数据 成功返回结果

type TaobaoSimbaInsightWordsdataGetAPIRequest

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

TaobaoSimbaInsightWordsdataGetAPIRequest 获取关键词的大盘数据 API请求 taobao.simba.insight.wordsdata.get

获取关键词的详细数据

func NewTaobaoSimbaInsightWordsdataGetRequest

func NewTaobaoSimbaInsightWordsdataGetRequest() *TaobaoSimbaInsightWordsdataGetAPIRequest

NewTaobaoSimbaInsightWordsdataGetRequest 初始化TaobaoSimbaInsightWordsdataGetAPIRequest对象

func (TaobaoSimbaInsightWordsdataGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaInsightWordsdataGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaInsightWordsdataGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightWordsdataGetAPIRequest) GetBidwordList

func (r TaobaoSimbaInsightWordsdataGetAPIRequest) GetBidwordList() []string

GetBidwordList BidwordList Getter

func (TaobaoSimbaInsightWordsdataGetAPIRequest) GetEndDate

GetEndDate EndDate Getter

func (TaobaoSimbaInsightWordsdataGetAPIRequest) GetStartDate

GetStartDate StartDate Getter

func (*TaobaoSimbaInsightWordsdataGetAPIRequest) SetBidwordList

func (r *TaobaoSimbaInsightWordsdataGetAPIRequest) SetBidwordList(_bidwordList []string) error

SetBidwordList is BidwordList Setter 关键词列表,最多可传100个。

func (*TaobaoSimbaInsightWordsdataGetAPIRequest) SetEndDate

func (r *TaobaoSimbaInsightWordsdataGetAPIRequest) SetEndDate(_endDate string) error

SetEndDate is EndDate Setter 结束时间

func (*TaobaoSimbaInsightWordsdataGetAPIRequest) SetStartDate

func (r *TaobaoSimbaInsightWordsdataGetAPIRequest) SetStartDate(_startDate string) error

SetStartDate is StartDate Setter 开始时间

type TaobaoSimbaInsightWordsdataGetAPIResponse

type TaobaoSimbaInsightWordsdataGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaInsightWordsdataGetAPIResponseModel
}

TaobaoSimbaInsightWordsdataGetAPIResponse 获取关键词的大盘数据 API返回值 taobao.simba.insight.wordsdata.get

获取关键词的详细数据

type TaobaoSimbaInsightWordsdataGetAPIResponseModel

type TaobaoSimbaInsightWordsdataGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_insight_wordsdata_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 关键词大盘数据列表
	WordDataList []InsightWordDataDto `json:"word_data_list,omitempty" xml:"word_data_list>insight_word_data_dto,omitempty"`
}

TaobaoSimbaInsightWordsdataGetAPIResponseModel is 获取关键词的大盘数据 成功返回结果

type TaobaoSimbaInsightWordspricedataGetAPIRequest

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

TaobaoSimbaInsightWordspricedataGetAPIRequest 关键词按竞价区间的分布数据 API请求 taobao.simba.insight.wordspricedata.get

获取关键词按竞价区间进行细分的数据

func NewTaobaoSimbaInsightWordspricedataGetRequest

func NewTaobaoSimbaInsightWordspricedataGetRequest() *TaobaoSimbaInsightWordspricedataGetAPIRequest

NewTaobaoSimbaInsightWordspricedataGetRequest 初始化TaobaoSimbaInsightWordspricedataGetAPIRequest对象

func (TaobaoSimbaInsightWordspricedataGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaInsightWordspricedataGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightWordspricedataGetAPIRequest) GetBidword

GetBidword Bidword Getter

func (TaobaoSimbaInsightWordspricedataGetAPIRequest) GetEndDate

GetEndDate EndDate Getter

func (TaobaoSimbaInsightWordspricedataGetAPIRequest) GetStartDate

GetStartDate StartDate Getter

func (*TaobaoSimbaInsightWordspricedataGetAPIRequest) SetBidword

SetBidword is Bidword Setter 关键词

func (*TaobaoSimbaInsightWordspricedataGetAPIRequest) SetEndDate

SetEndDate is EndDate Setter 结束时间,格式:yyyy-MM-dd

func (*TaobaoSimbaInsightWordspricedataGetAPIRequest) SetStartDate

func (r *TaobaoSimbaInsightWordspricedataGetAPIRequest) SetStartDate(_startDate string) error

SetStartDate is StartDate Setter 开始时间,格式:yyyy-MM-dd

type TaobaoSimbaInsightWordspricedataGetAPIResponse

type TaobaoSimbaInsightWordspricedataGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaInsightWordspricedataGetAPIResponseModel
}

TaobaoSimbaInsightWordspricedataGetAPIResponse 关键词按竞价区间的分布数据 API返回值 taobao.simba.insight.wordspricedata.get

获取关键词按竞价区间进行细分的数据

type TaobaoSimbaInsightWordspricedataGetAPIResponseModel

type TaobaoSimbaInsightWordspricedataGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_insight_wordspricedata_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 竞价区间分布数据
	WordPricedataList []InsightWordPriceDistributeDataDto `json:"word_pricedata_list,omitempty" xml:"word_pricedata_list>insight_word_price_distribute_data_dto,omitempty"`
}

TaobaoSimbaInsightWordspricedataGetAPIResponseModel is 关键词按竞价区间的分布数据 成功返回结果

type TaobaoSimbaInsightWordssubdataGetAPIRequest

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

TaobaoSimbaInsightWordssubdataGetAPIRequest 获取关键词按流量细分的数据 API请求 taobao.simba.insight.wordssubdata.get

获取关键词按流量进行细分的数据,返回结果中network表示流量的来源,意义如下:1->PC站内,2->PC站外,4->无线站内 5->无线站外

func NewTaobaoSimbaInsightWordssubdataGetRequest

func NewTaobaoSimbaInsightWordssubdataGetRequest() *TaobaoSimbaInsightWordssubdataGetAPIRequest

NewTaobaoSimbaInsightWordssubdataGetRequest 初始化TaobaoSimbaInsightWordssubdataGetAPIRequest对象

func (TaobaoSimbaInsightWordssubdataGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaInsightWordssubdataGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightWordssubdataGetAPIRequest) GetBidwordList

GetBidwordList BidwordList Getter

func (TaobaoSimbaInsightWordssubdataGetAPIRequest) GetEndDate

GetEndDate EndDate Getter

func (TaobaoSimbaInsightWordssubdataGetAPIRequest) GetStartDate

GetStartDate StartDate Getter

func (*TaobaoSimbaInsightWordssubdataGetAPIRequest) SetBidwordList

func (r *TaobaoSimbaInsightWordssubdataGetAPIRequest) SetBidwordList(_bidwordList []string) error

SetBidwordList is BidwordList Setter 关键词列表

func (*TaobaoSimbaInsightWordssubdataGetAPIRequest) SetEndDate

SetEndDate is EndDate Setter 结束时间

func (*TaobaoSimbaInsightWordssubdataGetAPIRequest) SetStartDate

func (r *TaobaoSimbaInsightWordssubdataGetAPIRequest) SetStartDate(_startDate string) error

SetStartDate is StartDate Setter 开始时间

type TaobaoSimbaInsightWordssubdataGetAPIResponse

type TaobaoSimbaInsightWordssubdataGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaInsightWordssubdataGetAPIResponseModel
}

TaobaoSimbaInsightWordssubdataGetAPIResponse 获取关键词按流量细分的数据 API返回值 taobao.simba.insight.wordssubdata.get

获取关键词按流量进行细分的数据,返回结果中network表示流量的来源,意义如下:1->PC站内,2->PC站外,4->无线站内 5->无线站外

type TaobaoSimbaInsightWordssubdataGetAPIResponseModel

type TaobaoSimbaInsightWordssubdataGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_insight_wordssubdata_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 关键词按流量细分的数据
	WordSubdataList []InsightWordSubDataDto `json:"word_subdata_list,omitempty" xml:"word_subdata_list>insight_word_sub_data_dto,omitempty"`
}

TaobaoSimbaInsightWordssubdataGetAPIResponseModel is 获取关键词按流量细分的数据 成功返回结果

type TaobaoSimbaKeywordAddAPIRequest

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

TaobaoSimbaKeywordAddAPIRequest (新)关键词新增接口 API请求 taobao.simba.keyword.add

(新)关键词更新相关接口

func NewTaobaoSimbaKeywordAddRequest

func NewTaobaoSimbaKeywordAddRequest() *TaobaoSimbaKeywordAddAPIRequest

NewTaobaoSimbaKeywordAddRequest 初始化TaobaoSimbaKeywordAddAPIRequest对象

func (TaobaoSimbaKeywordAddAPIRequest) GetAdgroupId

func (r TaobaoSimbaKeywordAddAPIRequest) GetAdgroupId() int64

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaKeywordAddAPIRequest) GetApiMethodName

func (r TaobaoSimbaKeywordAddAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordAddAPIRequest) GetApiParams

func (r TaobaoSimbaKeywordAddAPIRequest) GetApiParams() url.Values

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordAddAPIRequest) GetBidwords

GetBidwords Bidwords Getter

func (*TaobaoSimbaKeywordAddAPIRequest) SetAdgroupId

func (r *TaobaoSimbaKeywordAddAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广单元id

func (*TaobaoSimbaKeywordAddAPIRequest) SetBidwords

func (r *TaobaoSimbaKeywordAddAPIRequest) SetBidwords(_bidwords []SiriusBidwordDto) error

SetBidwords is Bidwords Setter 关键词相关信息

type TaobaoSimbaKeywordAddAPIResponse

type TaobaoSimbaKeywordAddAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordAddAPIResponseModel
}

TaobaoSimbaKeywordAddAPIResponse (新)关键词新增接口 API返回值 taobao.simba.keyword.add

(新)关键词更新相关接口

type TaobaoSimbaKeywordAddAPIResponseModel

type TaobaoSimbaKeywordAddAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keyword_add_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 整体的返回值
	Results []SiriusBidwordDto `json:"results,omitempty" xml:"results>sirius_bidword_dto,omitempty"`
	// 错误原因
	ErrorMsg string `json:"error_msg,omitempty" xml:"error_msg,omitempty"`
}

TaobaoSimbaKeywordAddAPIResponseModel is (新)关键词新增接口 成功返回结果

type TaobaoSimbaKeywordFindbyadgroupidAPIRequest

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

TaobaoSimbaKeywordFindbyadgroupidAPIRequest 根据推广单元id获取关键词 API请求 taobao.simba.keyword.findbyadgroupid

根据一个关键词Id列表取得一组关键词

func NewTaobaoSimbaKeywordFindbyadgroupidRequest

func NewTaobaoSimbaKeywordFindbyadgroupidRequest() *TaobaoSimbaKeywordFindbyadgroupidAPIRequest

NewTaobaoSimbaKeywordFindbyadgroupidRequest 初始化TaobaoSimbaKeywordFindbyadgroupidAPIRequest对象

func (TaobaoSimbaKeywordFindbyadgroupidAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaKeywordFindbyadgroupidAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordFindbyadgroupidAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (*TaobaoSimbaKeywordFindbyadgroupidAPIRequest) SetAdgroupId

func (r *TaobaoSimbaKeywordFindbyadgroupidAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广单元id

type TaobaoSimbaKeywordFindbyadgroupidAPIResponse

type TaobaoSimbaKeywordFindbyadgroupidAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordFindbyadgroupidAPIResponseModel
}

TaobaoSimbaKeywordFindbyadgroupidAPIResponse 根据推广单元id获取关键词 API返回值 taobao.simba.keyword.findbyadgroupid

根据一个关键词Id列表取得一组关键词

type TaobaoSimbaKeywordFindbyadgroupidAPIResponseModel

type TaobaoSimbaKeywordFindbyadgroupidAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keyword_findbyadgroupid_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 整体的返回值
	Results []SiriusBidwordDto `json:"results,omitempty" xml:"results>sirius_bidword_dto,omitempty"`
	// 错误原因
	ErrorMsg string `json:"error_msg,omitempty" xml:"error_msg,omitempty"`
}

TaobaoSimbaKeywordFindbyadgroupidAPIResponseModel is 根据推广单元id获取关键词 成功返回结果

type TaobaoSimbaKeywordFindbyidsAPIRequest

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

TaobaoSimbaKeywordFindbyidsAPIRequest (新)根据一堆关键词ids获取关键词 API请求 taobao.simba.keyword.findbyids

根据一个关键词Id列表取得一组关键词

func NewTaobaoSimbaKeywordFindbyidsRequest

func NewTaobaoSimbaKeywordFindbyidsRequest() *TaobaoSimbaKeywordFindbyidsAPIRequest

NewTaobaoSimbaKeywordFindbyidsRequest 初始化TaobaoSimbaKeywordFindbyidsAPIRequest对象

func (TaobaoSimbaKeywordFindbyidsAPIRequest) GetApiMethodName

func (r TaobaoSimbaKeywordFindbyidsAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordFindbyidsAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordFindbyidsAPIRequest) GetBidwordIds

func (r TaobaoSimbaKeywordFindbyidsAPIRequest) GetBidwordIds() []string

GetBidwordIds BidwordIds Getter

func (*TaobaoSimbaKeywordFindbyidsAPIRequest) SetBidwordIds

func (r *TaobaoSimbaKeywordFindbyidsAPIRequest) SetBidwordIds(_bidwordIds []string) error

SetBidwordIds is BidwordIds Setter 关键词ids

type TaobaoSimbaKeywordFindbyidsAPIResponse

type TaobaoSimbaKeywordFindbyidsAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordFindbyidsAPIResponseModel
}

TaobaoSimbaKeywordFindbyidsAPIResponse (新)根据一堆关键词ids获取关键词 API返回值 taobao.simba.keyword.findbyids

根据一个关键词Id列表取得一组关键词

type TaobaoSimbaKeywordFindbyidsAPIResponseModel

type TaobaoSimbaKeywordFindbyidsAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keyword_findbyids_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 整体的返回值
	Results []SiriusBidwordDto `json:"results,omitempty" xml:"results>sirius_bidword_dto,omitempty"`
	// 错误原因
	ErrorMsg string `json:"error_msg,omitempty" xml:"error_msg,omitempty"`
}

TaobaoSimbaKeywordFindbyidsAPIResponseModel is (新)根据一堆关键词ids获取关键词 成功返回结果

type TaobaoSimbaKeywordUpdateAPIRequest

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

TaobaoSimbaKeywordUpdateAPIRequest (新)关键词更新相关接口 API请求 taobao.simba.keyword.update

(新)关键词更新相关接口

func NewTaobaoSimbaKeywordUpdateRequest

func NewTaobaoSimbaKeywordUpdateRequest() *TaobaoSimbaKeywordUpdateAPIRequest

NewTaobaoSimbaKeywordUpdateRequest 初始化TaobaoSimbaKeywordUpdateAPIRequest对象

func (TaobaoSimbaKeywordUpdateAPIRequest) GetApiMethodName

func (r TaobaoSimbaKeywordUpdateAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordUpdateAPIRequest) GetBidwords

GetBidwords Bidwords Getter

func (*TaobaoSimbaKeywordUpdateAPIRequest) SetBidwords

func (r *TaobaoSimbaKeywordUpdateAPIRequest) SetBidwords(_bidwords []SiriusBidwordDto) error

SetBidwords is Bidwords Setter 关键词相关信息

type TaobaoSimbaKeywordUpdateAPIResponse

type TaobaoSimbaKeywordUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordUpdateAPIResponseModel
}

TaobaoSimbaKeywordUpdateAPIResponse (新)关键词更新相关接口 API返回值 taobao.simba.keyword.update

(新)关键词更新相关接口

type TaobaoSimbaKeywordUpdateAPIResponseModel

type TaobaoSimbaKeywordUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keyword_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 整体的返回值
	Results []SiriusBidwordDto `json:"results,omitempty" xml:"results>sirius_bidword_dto,omitempty"`
	// 错误原因
	ErrorMsg string `json:"error_msg,omitempty" xml:"error_msg,omitempty"`
}

TaobaoSimbaKeywordUpdateAPIResponseModel is (新)关键词更新相关接口 成功返回结果

type TaobaoSimbaKeywordidsChangedGetAPIRequest

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

TaobaoSimbaKeywordidsChangedGetAPIRequest 获取修改的词ID API请求 taobao.simba.keywordids.changed.get

获取修改的词ID

func NewTaobaoSimbaKeywordidsChangedGetRequest

func NewTaobaoSimbaKeywordidsChangedGetRequest() *TaobaoSimbaKeywordidsChangedGetAPIRequest

NewTaobaoSimbaKeywordidsChangedGetRequest 初始化TaobaoSimbaKeywordidsChangedGetAPIRequest对象

func (TaobaoSimbaKeywordidsChangedGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordidsChangedGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordidsChangedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaKeywordidsChangedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaKeywordidsChangedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaKeywordidsChangedGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (*TaobaoSimbaKeywordidsChangedGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaKeywordidsChangedGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 返回的第几页数据,默认为1

func (*TaobaoSimbaKeywordidsChangedGetAPIRequest) SetPageSize

func (r *TaobaoSimbaKeywordidsChangedGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 返回的每页数据量大小,默认200最大1000

func (*TaobaoSimbaKeywordidsChangedGetAPIRequest) SetStartTime

func (r *TaobaoSimbaKeywordidsChangedGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 得到此时间点之后的数据,不能大于一个月

type TaobaoSimbaKeywordidsChangedGetAPIResponse

type TaobaoSimbaKeywordidsChangedGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordidsChangedGetAPIResponseModel
}

TaobaoSimbaKeywordidsChangedGetAPIResponse 获取修改的词ID API返回值 taobao.simba.keywordids.changed.get

获取修改的词ID

type TaobaoSimbaKeywordidsChangedGetAPIResponseModel

type TaobaoSimbaKeywordidsChangedGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keywordids_changed_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 词的ID列表
	ChangedKeywordIds []int64 `json:"changed_keyword_ids,omitempty" xml:"changed_keyword_ids>int64,omitempty"`
}

TaobaoSimbaKeywordidsChangedGetAPIResponseModel is 获取修改的词ID 成功返回结果

type TaobaoSimbaKeywordidsDeletedGetAPIRequest

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

TaobaoSimbaKeywordidsDeletedGetAPIRequest 获取删除的词ID API请求 taobao.simba.keywordids.deleted.get

获取删除的词ID

func NewTaobaoSimbaKeywordidsDeletedGetRequest

func NewTaobaoSimbaKeywordidsDeletedGetRequest() *TaobaoSimbaKeywordidsDeletedGetAPIRequest

NewTaobaoSimbaKeywordidsDeletedGetRequest 初始化TaobaoSimbaKeywordidsDeletedGetAPIRequest对象

func (TaobaoSimbaKeywordidsDeletedGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordidsDeletedGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordidsDeletedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaKeywordidsDeletedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaKeywordidsDeletedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaKeywordidsDeletedGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (*TaobaoSimbaKeywordidsDeletedGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaKeywordidsDeletedGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 返回的第几页数据,默认为1

func (*TaobaoSimbaKeywordidsDeletedGetAPIRequest) SetPageSize

func (r *TaobaoSimbaKeywordidsDeletedGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 返回的每页数据量大小,默认200最大1000

func (*TaobaoSimbaKeywordidsDeletedGetAPIRequest) SetStartTime

func (r *TaobaoSimbaKeywordidsDeletedGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 得到此时间点之后的数据,不能大于一个月

type TaobaoSimbaKeywordidsDeletedGetAPIResponse

type TaobaoSimbaKeywordidsDeletedGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordidsDeletedGetAPIResponseModel
}

TaobaoSimbaKeywordidsDeletedGetAPIResponse 获取删除的词ID API返回值 taobao.simba.keywordids.deleted.get

获取删除的词ID

type TaobaoSimbaKeywordidsDeletedGetAPIResponseModel

type TaobaoSimbaKeywordidsDeletedGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keywordids_deleted_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 词ID列表
	DeletedKeywordIds []int64 `json:"deleted_keyword_ids,omitempty" xml:"deleted_keyword_ids>int64,omitempty"`
}

TaobaoSimbaKeywordidsDeletedGetAPIResponseModel is 获取删除的词ID 成功返回结果

type TaobaoSimbaKeywordsChangedGetAPIRequest

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

TaobaoSimbaKeywordsChangedGetAPIRequest 分页获取修改过的关键词ID、宝贝id、修改时间 API请求 taobao.simba.keywords.changed.get

分页获取修改过的关键词ID、宝贝id、修改时间

func NewTaobaoSimbaKeywordsChangedGetRequest

func NewTaobaoSimbaKeywordsChangedGetRequest() *TaobaoSimbaKeywordsChangedGetAPIRequest

NewTaobaoSimbaKeywordsChangedGetRequest 初始化TaobaoSimbaKeywordsChangedGetAPIRequest对象

func (TaobaoSimbaKeywordsChangedGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaKeywordsChangedGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordsChangedGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsChangedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaKeywordsChangedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaKeywordsChangedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaKeywordsChangedGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (*TaobaoSimbaKeywordsChangedGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaKeywordsChangedGetAPIRequest) SetPageNo

func (r *TaobaoSimbaKeywordsChangedGetAPIRequest) SetPageNo(_pageNo int64) error

SetPageNo is PageNo Setter 返回的第几页数据,默认为1

func (*TaobaoSimbaKeywordsChangedGetAPIRequest) SetPageSize

func (r *TaobaoSimbaKeywordsChangedGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 返回的每页数据量大小,默认200最大1000

func (*TaobaoSimbaKeywordsChangedGetAPIRequest) SetStartTime

func (r *TaobaoSimbaKeywordsChangedGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 得到此时间点之后的数据,不能大于一个月

type TaobaoSimbaKeywordsChangedGetAPIResponse

type TaobaoSimbaKeywordsChangedGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordsChangedGetAPIResponseModel
}

TaobaoSimbaKeywordsChangedGetAPIResponse 分页获取修改过的关键词ID、宝贝id、修改时间 API返回值 taobao.simba.keywords.changed.get

分页获取修改过的关键词ID、宝贝id、修改时间

type TaobaoSimbaKeywordsChangedGetAPIResponseModel

type TaobaoSimbaKeywordsChangedGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keywords_changed_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 关键词分页对象
	Keywords *KeywordPage `json:"keywords,omitempty" xml:"keywords,omitempty"`
}

TaobaoSimbaKeywordsChangedGetAPIResponseModel is 分页获取修改过的关键词ID、宝贝id、修改时间 成功返回结果

type TaobaoSimbaKeywordsDeleteAPIRequest

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

TaobaoSimbaKeywordsDeleteAPIRequest 删除一批关键词 API请求 taobao.simba.keywords.delete

删除一批关键词

func NewTaobaoSimbaKeywordsDeleteRequest

func NewTaobaoSimbaKeywordsDeleteRequest() *TaobaoSimbaKeywordsDeleteAPIRequest

NewTaobaoSimbaKeywordsDeleteRequest 初始化TaobaoSimbaKeywordsDeleteAPIRequest对象

func (TaobaoSimbaKeywordsDeleteAPIRequest) GetApiMethodName

func (r TaobaoSimbaKeywordsDeleteAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordsDeleteAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsDeleteAPIRequest) GetCampaignId

func (r TaobaoSimbaKeywordsDeleteAPIRequest) GetCampaignId() int64

GetCampaignId CampaignId Getter

func (TaobaoSimbaKeywordsDeleteAPIRequest) GetKeywordIds

func (r TaobaoSimbaKeywordsDeleteAPIRequest) GetKeywordIds() []string

GetKeywordIds KeywordIds Getter

func (TaobaoSimbaKeywordsDeleteAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaKeywordsDeleteAPIRequest) SetCampaignId

func (r *TaobaoSimbaKeywordsDeleteAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaKeywordsDeleteAPIRequest) SetKeywordIds

func (r *TaobaoSimbaKeywordsDeleteAPIRequest) SetKeywordIds(_keywordIds []string) error

SetKeywordIds is KeywordIds Setter 关键词Id数组,最多100个

func (*TaobaoSimbaKeywordsDeleteAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaKeywordsDeleteAPIResponse

type TaobaoSimbaKeywordsDeleteAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordsDeleteAPIResponseModel
}

TaobaoSimbaKeywordsDeleteAPIResponse 删除一批关键词 API返回值 taobao.simba.keywords.delete

删除一批关键词

type TaobaoSimbaKeywordsDeleteAPIResponseModel

type TaobaoSimbaKeywordsDeleteAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keywords_delete_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 成功删除的关键词列表
	Keywords []Keyword `json:"keywords,omitempty" xml:"keywords>keyword,omitempty"`
}

TaobaoSimbaKeywordsDeleteAPIResponseModel is 删除一批关键词 成功返回结果

type TaobaoSimbaKeywordsPricevonSetAPIRequest

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

TaobaoSimbaKeywordsPricevonSetAPIRequest 设置一批关键词的信息 API请求 taobao.simba.keywords.pricevon.set

设置一批关键词的信息,包含无线出价、计算机出价和关键词匹配方式

func NewTaobaoSimbaKeywordsPricevonSetRequest

func NewTaobaoSimbaKeywordsPricevonSetRequest() *TaobaoSimbaKeywordsPricevonSetAPIRequest

NewTaobaoSimbaKeywordsPricevonSetRequest 初始化TaobaoSimbaKeywordsPricevonSetAPIRequest对象

func (TaobaoSimbaKeywordsPricevonSetAPIRequest) GetApiMethodName

func (r TaobaoSimbaKeywordsPricevonSetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordsPricevonSetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsPricevonSetAPIRequest) GetKeywordidPrices

func (r TaobaoSimbaKeywordsPricevonSetAPIRequest) GetKeywordidPrices() string

GetKeywordidPrices KeywordidPrices Getter

func (TaobaoSimbaKeywordsPricevonSetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaKeywordsPricevonSetAPIRequest) SetKeywordidPrices

func (r *TaobaoSimbaKeywordsPricevonSetAPIRequest) SetKeywordidPrices(_keywordidPrices string) error

SetKeywordidPrices is KeywordidPrices Setter 关键词ID,出价和匹配方式json字符串,keywordId:词ID,整数。maxPrice:价格,是整数,以“分”为单位,不能小于5,不能大于日限额,也不能大于99.99元,当使用默认出价时必须将这个值设置为0。; isDefaultPrice:是否使用默认出价,只能是0。matchscope只能是1,4(1代表精确匹配,4代表广泛匹配),maxMobilePrice:代表无线出价(如果是0,则代表无线出价=PC*无线溢价),mobileIsDefaultPrice代表无线出价是否采用pc*无线溢价,只能传0

func (*TaobaoSimbaKeywordsPricevonSetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaKeywordsPricevonSetAPIResponse

type TaobaoSimbaKeywordsPricevonSetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordsPricevonSetAPIResponseModel
}

TaobaoSimbaKeywordsPricevonSetAPIResponse 设置一批关键词的信息 API返回值 taobao.simba.keywords.pricevon.set

设置一批关键词的信息,包含无线出价、计算机出价和关键词匹配方式

type TaobaoSimbaKeywordsPricevonSetAPIResponseModel

type TaobaoSimbaKeywordsPricevonSetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keywords_pricevon_set_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 成功设置关键词价格的关键词列表
	Keywords []Keyword `json:"keywords,omitempty" xml:"keywords>keyword,omitempty"`
}

TaobaoSimbaKeywordsPricevonSetAPIResponseModel is 设置一批关键词的信息 成功返回结果

type TaobaoSimbaKeywordsQscoreGetAPIRequest

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

TaobaoSimbaKeywordsQscoreGetAPIRequest 取得一个推广组的所有关键词的质量得分或者根据关键词Id列表取得一组关键词的质量得分 API请求 taobao.simba.keywords.qscore.get

取得一个推广组的所有关键词的质量得分列表

func NewTaobaoSimbaKeywordsQscoreGetRequest

func NewTaobaoSimbaKeywordsQscoreGetRequest() *TaobaoSimbaKeywordsQscoreGetAPIRequest

NewTaobaoSimbaKeywordsQscoreGetRequest 初始化TaobaoSimbaKeywordsQscoreGetAPIRequest对象

func (TaobaoSimbaKeywordsQscoreGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaKeywordsQscoreGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaKeywordsQscoreGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordsQscoreGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsQscoreGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaKeywordsQscoreGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaKeywordsQscoreGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaKeywordsQscoreGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaKeywordsQscoreGetAPIResponse

type TaobaoSimbaKeywordsQscoreGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordsQscoreGetAPIResponseModel
}

TaobaoSimbaKeywordsQscoreGetAPIResponse 取得一个推广组的所有关键词的质量得分或者根据关键词Id列表取得一组关键词的质量得分 API返回值 taobao.simba.keywords.qscore.get

取得一个推广组的所有关键词的质量得分列表

type TaobaoSimbaKeywordsQscoreGetAPIResponseModel

type TaobaoSimbaKeywordsQscoreGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keywords_qscore_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 取得的关键词质量得分列表
	KeywordQscoreList []KeywordQscore `json:"keyword_qscore_list,omitempty" xml:"keyword_qscore_list>keyword_qscore,omitempty"`
}

TaobaoSimbaKeywordsQscoreGetAPIResponseModel is 取得一个推广组的所有关键词的质量得分或者根据关键词Id列表取得一组关键词的质量得分 成功返回结果

type TaobaoSimbaKeywordsQscoreSplitGetAPIRequest

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

TaobaoSimbaKeywordsQscoreSplitGetAPIRequest 新质量分服务 API请求 taobao.simba.keywords.qscore.split.get

获取关键词新的质量分

func NewTaobaoSimbaKeywordsQscoreSplitGetRequest

func NewTaobaoSimbaKeywordsQscoreSplitGetRequest() *TaobaoSimbaKeywordsQscoreSplitGetAPIRequest

NewTaobaoSimbaKeywordsQscoreSplitGetRequest 初始化TaobaoSimbaKeywordsQscoreSplitGetAPIRequest对象

func (TaobaoSimbaKeywordsQscoreSplitGetAPIRequest) GetAdGroupId

GetAdGroupId AdGroupId Getter

func (TaobaoSimbaKeywordsQscoreSplitGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordsQscoreSplitGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsQscoreSplitGetAPIRequest) GetBidwordIds

GetBidwordIds BidwordIds Getter

func (TaobaoSimbaKeywordsQscoreSplitGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaKeywordsQscoreSplitGetAPIRequest) SetAdGroupId

func (r *TaobaoSimbaKeywordsQscoreSplitGetAPIRequest) SetAdGroupId(_adGroupId int64) error

SetAdGroupId is AdGroupId Setter 推广组id

func (*TaobaoSimbaKeywordsQscoreSplitGetAPIRequest) SetBidwordIds

func (r *TaobaoSimbaKeywordsQscoreSplitGetAPIRequest) SetBidwordIds(_bidwordIds []string) error

SetBidwordIds is BidwordIds Setter 词id数组(最多批量获取20个)

func (*TaobaoSimbaKeywordsQscoreSplitGetAPIRequest) SetNick

SetNick is Nick Setter 账号昵称

type TaobaoSimbaKeywordsQscoreSplitGetAPIResponse

type TaobaoSimbaKeywordsQscoreSplitGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordsQscoreSplitGetAPIResponseModel
}

TaobaoSimbaKeywordsQscoreSplitGetAPIResponse 新质量分服务 API返回值 taobao.simba.keywords.qscore.split.get

获取关键词新的质量分

type TaobaoSimbaKeywordsQscoreSplitGetAPIResponseModel

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

TaobaoSimbaKeywordsQscoreSplitGetAPIResponseModel is 新质量分服务 成功返回结果

type TaobaoSimbaKeywordsQscoreSplitGetResultDto

type TaobaoSimbaKeywordsQscoreSplitGetResultDto struct {
	// 返回成功/错误码
	Key string `json:"key,omitempty" xml:"key,omitempty"`
	// 返回信息
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 返回新质量分实体信息
	Result *QScoreSplitDto `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoSimbaKeywordsQscoreSplitGetResultDto 结构体

type TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest

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

TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest 获取关键词的新版实时排名 API请求 taobao.simba.keywords.realtime.ranking.batch.get

根据关键词ID获取关键词的新版实时排名

func NewTaobaoSimbaKeywordsRealtimeRankingBatchGetRequest

func NewTaobaoSimbaKeywordsRealtimeRankingBatchGetRequest() *TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest

NewTaobaoSimbaKeywordsRealtimeRankingBatchGetRequest 初始化TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest对象

func (TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest) GetAdGroupId

GetAdGroupId AdGroupId Getter

func (TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest) GetBidwordIds

GetBidwordIds BidwordIds Getter

func (TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest) SetAdGroupId

SetAdGroupId is AdGroupId Setter adgroupId

func (*TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest) SetBidwordIds

func (r *TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest) SetBidwordIds(_bidwordIds []string) error

SetBidwordIds is BidwordIds Setter 关键词列表集合,id用半角逗号分割,一次最多20个

func (*TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIRequest) SetNick

SetNick is Nick Setter 旺旺名称

type TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIResponse

type TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIResponseModel
}

TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIResponse 获取关键词的新版实时排名 API返回值 taobao.simba.keywords.realtime.ranking.batch.get

根据关键词ID获取关键词的新版实时排名

type TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIResponseModel

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

TaobaoSimbaKeywordsRealtimeRankingBatchGetAPIResponseModel is 获取关键词的新版实时排名 成功返回结果

type TaobaoSimbaKeywordsRealtimeRankingBatchGetResult

type TaobaoSimbaKeywordsRealtimeRankingBatchGetResult struct {
	// 关键词id
	Bidwordid string `json:"bidwordid,omitempty" xml:"bidwordid,omitempty"`
	// 状态码stat(0:正常;1:非正常)
	Stat string `json:"stat,omitempty" xml:"stat,omitempty"`
	// PC的排名:(0:首页左侧位置;1:首页右侧第1;2:首页右侧第2,3:首页右侧第3,4:首页非前三,5:第2页,6:第3页,7:第4页,8:第5页,9:5页以后)
	PcRank string `json:"pc_rank,omitempty" xml:"pc_rank,omitempty"`
	// 移动的排名(0:移动首条,1:移动前三,3:移动4~6条,6:移动7~10条,10:移动11~15条,11:移动16~20条,12:20条以后)
	MobileRank string `json:"mobile_rank,omitempty" xml:"mobile_rank,omitempty"`
}

TaobaoSimbaKeywordsRealtimeRankingBatchGetResult 结构体

type TaobaoSimbaKeywordsRealtimeRankingBatchGetResultDto

type TaobaoSimbaKeywordsRealtimeRankingBatchGetResultDto struct {
	// 返回结果,结果是json结构,说明: pc_rank=-2:创意未投放,-1:计划未投放,0:首页左侧位置,1:首页右侧第1,2:首页右侧第2,3:首页右侧第3,4:首页(非前三),5:第2页,6:第3页,7:第4页,8:第5页,9:5页以后 mobile_rank=-2:创意未投放,-1:计划未投放,0:移动首条,1:移动前三,3:移动4~6条,6:移动7~10条,10:移动11~15条,11=移动16~20条,12=20条以后
	RealtimeRankList []TaobaoSimbaKeywordsRealtimeRankingBatchGetResult `` /* 126-byte string literal not displayed */
	// 错误码
	Code string `json:"code,omitempty" xml:"code,omitempty"`
	// 错误消息
	Msg string `json:"msg,omitempty" xml:"msg,omitempty"`
	// 错误对应的消息Key
	Key string `json:"key,omitempty" xml:"key,omitempty"`
	// 是否成功
	Success bool `json:"success,omitempty" xml:"success,omitempty"`
}

TaobaoSimbaKeywordsRealtimeRankingBatchGetResultDto 结构体

type TaobaoSimbaKeywordsRecommendGetAPIRequest

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

TaobaoSimbaKeywordsRecommendGetAPIRequest 取得一个推广组的推荐关键词列表 API请求 taobao.simba.keywords.recommend.get

取得一个推广组的推荐关键词列表

func NewTaobaoSimbaKeywordsRecommendGetRequest

func NewTaobaoSimbaKeywordsRecommendGetRequest() *TaobaoSimbaKeywordsRecommendGetAPIRequest

NewTaobaoSimbaKeywordsRecommendGetRequest 初始化TaobaoSimbaKeywordsRecommendGetAPIRequest对象

func (TaobaoSimbaKeywordsRecommendGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaKeywordsRecommendGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordsRecommendGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsRecommendGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaKeywordsRecommendGetAPIRequest) GetOrderBy

GetOrderBy OrderBy Getter

func (TaobaoSimbaKeywordsRecommendGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaKeywordsRecommendGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaKeywordsRecommendGetAPIRequest) GetPertinence

GetPertinence Pertinence Getter

func (TaobaoSimbaKeywordsRecommendGetAPIRequest) GetSearch

GetSearch Search Getter

func (*TaobaoSimbaKeywordsRecommendGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaKeywordsRecommendGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组ID

func (*TaobaoSimbaKeywordsRecommendGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaKeywordsRecommendGetAPIRequest) SetOrderBy

func (r *TaobaoSimbaKeywordsRecommendGetAPIRequest) SetOrderBy(_orderBy string) error

SetOrderBy is OrderBy Setter 排序方式: 搜索量 search_volume 市场平均价格 average_price 相关度 relevance 不排序 non 默认为 non

func (*TaobaoSimbaKeywordsRecommendGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 返回的第几页数据,默认为1

func (*TaobaoSimbaKeywordsRecommendGetAPIRequest) SetPageSize

func (r *TaobaoSimbaKeywordsRecommendGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 返回的每页数据量大小,最大200

func (*TaobaoSimbaKeywordsRecommendGetAPIRequest) SetPertinence

func (r *TaobaoSimbaKeywordsRecommendGetAPIRequest) SetPertinence(_pertinence string) error

SetPertinence is Pertinence Setter 相关度

func (*TaobaoSimbaKeywordsRecommendGetAPIRequest) SetSearch

SetSearch is Search Setter 搜索量,设置此值后返回的就是大于此搜索量的词列表

type TaobaoSimbaKeywordsRecommendGetAPIResponse

type TaobaoSimbaKeywordsRecommendGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordsRecommendGetAPIResponseModel
}

TaobaoSimbaKeywordsRecommendGetAPIResponse 取得一个推广组的推荐关键词列表 API返回值 taobao.simba.keywords.recommend.get

取得一个推广组的推荐关键词列表

type TaobaoSimbaKeywordsRecommendGetAPIResponseModel

type TaobaoSimbaKeywordsRecommendGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keywords_recommend_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推荐词分页对象,当输入的页码大于最大数值时,将返回最大的page_no值,并且结果中的数据列表为空值
	RecommendWords *RecommendWordPage `json:"recommend_words,omitempty" xml:"recommend_words,omitempty"`
}

TaobaoSimbaKeywordsRecommendGetAPIResponseModel is 取得一个推广组的推荐关键词列表 成功返回结果

type TaobaoSimbaKeywordsbyadgroupidGetAPIRequest

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

TaobaoSimbaKeywordsbyadgroupidGetAPIRequest 取得一个推广组的所有关键词 API请求 taobao.simba.keywordsbyadgroupid.get

取得一个推广组的所有关键词

func NewTaobaoSimbaKeywordsbyadgroupidGetRequest

func NewTaobaoSimbaKeywordsbyadgroupidGetRequest() *TaobaoSimbaKeywordsbyadgroupidGetAPIRequest

NewTaobaoSimbaKeywordsbyadgroupidGetRequest 初始化TaobaoSimbaKeywordsbyadgroupidGetAPIRequest对象

func (TaobaoSimbaKeywordsbyadgroupidGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaKeywordsbyadgroupidGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordsbyadgroupidGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsbyadgroupidGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaKeywordsbyadgroupidGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaKeywordsbyadgroupidGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaKeywordsbyadgroupidGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaKeywordsbyadgroupidGetAPIResponse

type TaobaoSimbaKeywordsbyadgroupidGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordsbyadgroupidGetAPIResponseModel
}

TaobaoSimbaKeywordsbyadgroupidGetAPIResponse 取得一个推广组的所有关键词 API返回值 taobao.simba.keywordsbyadgroupid.get

取得一个推广组的所有关键词

type TaobaoSimbaKeywordsbyadgroupidGetAPIResponseModel

type TaobaoSimbaKeywordsbyadgroupidGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keywordsbyadgroupid_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 取得的关键词列表
	Keywords []Keyword `json:"keywords,omitempty" xml:"keywords>keyword,omitempty"`
}

TaobaoSimbaKeywordsbyadgroupidGetAPIResponseModel is 取得一个推广组的所有关键词 成功返回结果

type TaobaoSimbaKeywordsbykeywordidsGetAPIRequest

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

TaobaoSimbaKeywordsbykeywordidsGetAPIRequest 根据一个关键词Id列表取得一组关键词 API请求 taobao.simba.keywordsbykeywordids.get

根据一个关键词Id列表取得一组关键词

func NewTaobaoSimbaKeywordsbykeywordidsGetRequest

func NewTaobaoSimbaKeywordsbykeywordidsGetRequest() *TaobaoSimbaKeywordsbykeywordidsGetAPIRequest

NewTaobaoSimbaKeywordsbykeywordidsGetRequest 初始化TaobaoSimbaKeywordsbykeywordidsGetAPIRequest对象

func (TaobaoSimbaKeywordsbykeywordidsGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordsbykeywordidsGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsbykeywordidsGetAPIRequest) GetKeywordIds

GetKeywordIds KeywordIds Getter

func (TaobaoSimbaKeywordsbykeywordidsGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaKeywordsbykeywordidsGetAPIRequest) SetKeywordIds

func (r *TaobaoSimbaKeywordsbykeywordidsGetAPIRequest) SetKeywordIds(_keywordIds []int64) error

SetKeywordIds is KeywordIds Setter 关键词Id数组,最多200个;

func (*TaobaoSimbaKeywordsbykeywordidsGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaKeywordsbykeywordidsGetAPIResponse

type TaobaoSimbaKeywordsbykeywordidsGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordsbykeywordidsGetAPIResponseModel
}

TaobaoSimbaKeywordsbykeywordidsGetAPIResponse 根据一个关键词Id列表取得一组关键词 API返回值 taobao.simba.keywordsbykeywordids.get

根据一个关键词Id列表取得一组关键词

type TaobaoSimbaKeywordsbykeywordidsGetAPIResponseModel

type TaobaoSimbaKeywordsbykeywordidsGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keywordsbykeywordids_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 取得的关键词列表
	Keywords []Keyword `json:"keywords,omitempty" xml:"keywords>keyword,omitempty"`
}

TaobaoSimbaKeywordsbykeywordidsGetAPIResponseModel is 根据一个关键词Id列表取得一组关键词 成功返回结果

type TaobaoSimbaKeywordscatQscoreGetAPIRequest

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

TaobaoSimbaKeywordscatQscoreGetAPIRequest 取得一个推广组的所有关键词和类目出价的质量得分 API请求 taobao.simba.keywordscat.qscore.get

取得一个推广组的所有关键词和类目出价的质量得分列表

func NewTaobaoSimbaKeywordscatQscoreGetRequest

func NewTaobaoSimbaKeywordscatQscoreGetRequest() *TaobaoSimbaKeywordscatQscoreGetAPIRequest

NewTaobaoSimbaKeywordscatQscoreGetRequest 初始化TaobaoSimbaKeywordscatQscoreGetAPIRequest对象

func (TaobaoSimbaKeywordscatQscoreGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaKeywordscatQscoreGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordscatQscoreGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordscatQscoreGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaKeywordscatQscoreGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaKeywordscatQscoreGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaKeywordscatQscoreGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaKeywordscatQscoreGetAPIResponse

type TaobaoSimbaKeywordscatQscoreGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordscatQscoreGetAPIResponseModel
}

TaobaoSimbaKeywordscatQscoreGetAPIResponse 取得一个推广组的所有关键词和类目出价的质量得分 API返回值 taobao.simba.keywordscat.qscore.get

取得一个推广组的所有关键词和类目出价的质量得分列表

type TaobaoSimbaKeywordscatQscoreGetAPIResponseModel

type TaobaoSimbaKeywordscatQscoreGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keywordscat_qscore_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 类目出价和词的质量得分对象
	Qscore *Qscore `json:"qscore,omitempty" xml:"qscore,omitempty"`
}

TaobaoSimbaKeywordscatQscoreGetAPIResponseModel is 取得一个推广组的所有关键词和类目出价的质量得分 成功返回结果

type TaobaoSimbaKeywordsvonAddAPIRequest

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

TaobaoSimbaKeywordsvonAddAPIRequest 创建一批关键词 API请求 taobao.simba.keywordsvon.add

创建一批关键词

func NewTaobaoSimbaKeywordsvonAddRequest

func NewTaobaoSimbaKeywordsvonAddRequest() *TaobaoSimbaKeywordsvonAddAPIRequest

NewTaobaoSimbaKeywordsvonAddRequest 初始化TaobaoSimbaKeywordsvonAddAPIRequest对象

func (TaobaoSimbaKeywordsvonAddAPIRequest) GetAdgroupId

func (r TaobaoSimbaKeywordsvonAddAPIRequest) GetAdgroupId() int64

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaKeywordsvonAddAPIRequest) GetApiMethodName

func (r TaobaoSimbaKeywordsvonAddAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaKeywordsvonAddAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsvonAddAPIRequest) GetKeywordPrices

func (r TaobaoSimbaKeywordsvonAddAPIRequest) GetKeywordPrices() string

GetKeywordPrices KeywordPrices Getter

func (TaobaoSimbaKeywordsvonAddAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaKeywordsvonAddAPIRequest) SetAdgroupId

func (r *TaobaoSimbaKeywordsvonAddAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组id

func (*TaobaoSimbaKeywordsvonAddAPIRequest) SetKeywordPrices

func (r *TaobaoSimbaKeywordsvonAddAPIRequest) SetKeywordPrices(_keywordPrices string) error

SetKeywordPrices is KeywordPrices Setter 关键词、计算机出价、无线出价和匹配方式json字符串,word:词,不能有一些特殊字符。maxPrice:计算机出价,是整数,以“分”为单位,不能小于5,不能大于日限额, maxMobilePrice:代表无线出价,规则同maxPice 当matchscope只能是1,4(1代表精确匹配,4代表广泛匹配)。

func (*TaobaoSimbaKeywordsvonAddAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaKeywordsvonAddAPIResponse

type TaobaoSimbaKeywordsvonAddAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaKeywordsvonAddAPIResponseModel
}

TaobaoSimbaKeywordsvonAddAPIResponse 创建一批关键词 API返回值 taobao.simba.keywordsvon.add

创建一批关键词

type TaobaoSimbaKeywordsvonAddAPIResponseModel

type TaobaoSimbaKeywordsvonAddAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_keywordsvon_add_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 关键词列表
	Keywords []Keyword `json:"keywords,omitempty" xml:"keywords>keyword,omitempty"`
}

TaobaoSimbaKeywordsvonAddAPIResponseModel is 创建一批关键词 成功返回结果

type TaobaoSimbaLoginAuthsignGetAPIRequest

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

TaobaoSimbaLoginAuthsignGetAPIRequest 获取登陆权限签名 API请求 taobao.simba.login.authsign.get

获取登陆权限签名

func NewTaobaoSimbaLoginAuthsignGetRequest

func NewTaobaoSimbaLoginAuthsignGetRequest() *TaobaoSimbaLoginAuthsignGetAPIRequest

NewTaobaoSimbaLoginAuthsignGetRequest 初始化TaobaoSimbaLoginAuthsignGetAPIRequest对象

func (TaobaoSimbaLoginAuthsignGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaLoginAuthsignGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaLoginAuthsignGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaLoginAuthsignGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaLoginAuthsignGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaLoginAuthsignGetAPIResponse

type TaobaoSimbaLoginAuthsignGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaLoginAuthsignGetAPIResponseModel
}

TaobaoSimbaLoginAuthsignGetAPIResponse 获取登陆权限签名 API返回值 taobao.simba.login.authsign.get

获取登陆权限签名

type TaobaoSimbaLoginAuthsignGetAPIResponseModel

type TaobaoSimbaLoginAuthsignGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_login_authsign_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 登陆签名
	SubwayToken string `json:"subway_token,omitempty" xml:"subway_token,omitempty"`
}

TaobaoSimbaLoginAuthsignGetAPIResponseModel is 获取登陆权限签名 成功返回结果

type TaobaoSimbaReportCityGetAPIRequest

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

TaobaoSimbaReportCityGetAPIRequest 获取城市维度报表 API请求 taobao.simba.report.city.get

获取城市维度报表

func NewTaobaoSimbaReportCityGetRequest

func NewTaobaoSimbaReportCityGetRequest() *TaobaoSimbaReportCityGetAPIRequest

NewTaobaoSimbaReportCityGetRequest 初始化TaobaoSimbaReportCityGetAPIRequest对象

func (TaobaoSimbaReportCityGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaReportCityGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaReportCityGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaReportCityGetAPIRequest) GetCampaignId

func (r TaobaoSimbaReportCityGetAPIRequest) GetCampaignId() string

GetCampaignId CampaignId Getter

func (TaobaoSimbaReportCityGetAPIRequest) GetHour

GetHour Hour Getter

func (TaobaoSimbaReportCityGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaReportCityGetAPIRequest) GetTheDate

GetTheDate TheDate Getter

func (*TaobaoSimbaReportCityGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaReportCityGetAPIRequest) SetCampaignId(_campaignId string) error

SetCampaignId is CampaignId Setter 计划id

func (*TaobaoSimbaReportCityGetAPIRequest) SetHour

SetHour is Hour Setter 当前小时

func (*TaobaoSimbaReportCityGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaReportCityGetAPIRequest) SetTheDate

func (r *TaobaoSimbaReportCityGetAPIRequest) SetTheDate(_theDate string) error

SetTheDate is TheDate Setter 时间

type TaobaoSimbaReportCityGetAPIResponse

type TaobaoSimbaReportCityGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaReportCityGetAPIResponseModel
}

TaobaoSimbaReportCityGetAPIResponse 获取城市维度报表 API返回值 taobao.simba.report.city.get

获取城市维度报表

type TaobaoSimbaReportCityGetAPIResponseModel

type TaobaoSimbaReportCityGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_report_city_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 11
	Results *RtRptResultEntityDto `json:"results,omitempty" xml:"results,omitempty"`
}

TaobaoSimbaReportCityGetAPIResponseModel is 获取城市维度报表 成功返回结果

type TaobaoSimbaRptAdgroupbaseGetAPIRequest

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

TaobaoSimbaRptAdgroupbaseGetAPIRequest 推广组基础报表数据对象 API请求 taobao.simba.rpt.adgroupbase.get

推广组基础报表数据对象

func NewTaobaoSimbaRptAdgroupbaseGetRequest

func NewTaobaoSimbaRptAdgroupbaseGetRequest() *TaobaoSimbaRptAdgroupbaseGetAPIRequest

NewTaobaoSimbaRptAdgroupbaseGetRequest 初始化TaobaoSimbaRptAdgroupbaseGetAPIRequest对象

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetSearchType

GetSearchType SearchType Getter

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptAdgroupbaseGetAPIRequest) GetSubwayToken

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组id

func (*TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划id

func (*TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetEndTime

func (r *TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetPageNo

func (r *TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetPageNo(_pageNo int64) error

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetSearchType

func (r *TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetSearchType(_searchType string) error

SetSearchType is SearchType Setter 报表类型(搜索:SEARCH,类目出价:CAT,<br/>定向投放:NOSEARCH)可以一次取多个例如:SEARCH,CAT

func (*TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetSource

func (r *TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetSource(_source string) error

SetSource is Source Setter 数据来源(PC站内:1,PC站外:2,无线站内:4,无线站外 : 5)可多选,以逗号分隔

func (*TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptAdgroupbaseGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限校验参数

type TaobaoSimbaRptAdgroupbaseGetAPIResponse

type TaobaoSimbaRptAdgroupbaseGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptAdgroupbaseGetAPIResponseModel
}

TaobaoSimbaRptAdgroupbaseGetAPIResponse 推广组基础报表数据对象 API返回值 taobao.simba.rpt.adgroupbase.get

推广组基础报表数据对象

type TaobaoSimbaRptAdgroupbaseGetAPIResponseModel

type TaobaoSimbaRptAdgroupbaseGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_adgroupbase_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 广告组基础数据对象
	RptAdgroupBaseList string `json:"rpt_adgroup_base_list,omitempty" xml:"rpt_adgroup_base_list,omitempty"`
}

TaobaoSimbaRptAdgroupbaseGetAPIResponseModel is 推广组基础报表数据对象 成功返回结果

type TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest

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

TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest 推广组下创意报表基础数据查询(汇总数据,不分类型) API请求 taobao.simba.rpt.adgroupcreativebase.get

推广组下创意报表基础数据查询(汇总数据,不分类型)

func NewTaobaoSimbaRptAdgroupcreativebaseGetRequest

func NewTaobaoSimbaRptAdgroupcreativebaseGetRequest() *TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest

NewTaobaoSimbaRptAdgroupcreativebaseGetRequest 初始化TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest对象

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetSearchType

GetSearchType SearchType Getter

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) GetSubwayToken

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组id

func (*TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 查询推广计划id

func (*TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetEndTime

SetEndTime is EndTime Setter 结束日期,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetPageSize

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetSearchType

func (r *TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetSearchType(_searchType string) error

SetSearchType is SearchType Setter 报表类型(搜索:SEARCH,类目出价:CAT, 定向投放:NOSEARCH汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如:SEARCH,CAT

func (*TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetSource

SetSource is Source Setter 数据来源(PC站内:1,PC站外:2,无线站内:4,无线站外 : 5,汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如1,2

func (*TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始日期,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptAdgroupcreativebaseGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限验证信息

type TaobaoSimbaRptAdgroupcreativebaseGetAPIResponse

type TaobaoSimbaRptAdgroupcreativebaseGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptAdgroupcreativebaseGetAPIResponseModel
}

TaobaoSimbaRptAdgroupcreativebaseGetAPIResponse 推广组下创意报表基础数据查询(汇总数据,不分类型) API返回值 taobao.simba.rpt.adgroupcreativebase.get

推广组下创意报表基础数据查询(汇总数据,不分类型)

type TaobaoSimbaRptAdgroupcreativebaseGetAPIResponseModel

type TaobaoSimbaRptAdgroupcreativebaseGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_adgroupcreativebase_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广组下的创意基础数据列表
	RptAdgroupcreativeBaseList string `json:"rpt_adgroupcreative_base_list,omitempty" xml:"rpt_adgroupcreative_base_list,omitempty"`
}

TaobaoSimbaRptAdgroupcreativebaseGetAPIResponseModel is 推广组下创意报表基础数据查询(汇总数据,不分类型) 成功返回结果

type TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest

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

TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest 推广组下的创意报表效果数据查询(汇总数据,不分类型) API请求 taobao.simba.rpt.adgroupcreativeeffect.get

推广组下的创意报表效果数据查询(汇总数据,不分类型)

func NewTaobaoSimbaRptAdgroupcreativeeffectGetRequest

func NewTaobaoSimbaRptAdgroupcreativeeffectGetRequest() *TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest

NewTaobaoSimbaRptAdgroupcreativeeffectGetRequest 初始化TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest对象

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetSearchType

GetSearchType SearchType Getter

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) GetSubwayToken

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组id

func (*TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 查询推广计划id

func (*TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetEndTime

SetEndTime is EndTime Setter 结束日期,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetPageSize

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetSearchType

func (r *TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetSearchType(_searchType string) error

SetSearchType is SearchType Setter 报表类型(搜索:SEARCH,类目出价:CAT, 定向投放:NOSEARCH汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如:SEARCH,CAT

func (*TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetSource

SetSource is Source Setter 数据来源(PC站内:1,PC站外:2,无线站内:4,无线站外 : 5,汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如1,2

func (*TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetStartTime

SetStartTime is StartTime Setter 开始日期,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptAdgroupcreativeeffectGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限验证信息

type TaobaoSimbaRptAdgroupcreativeeffectGetAPIResponse

type TaobaoSimbaRptAdgroupcreativeeffectGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptAdgroupcreativeeffectGetAPIResponseModel
}

TaobaoSimbaRptAdgroupcreativeeffectGetAPIResponse 推广组下的创意报表效果数据查询(汇总数据,不分类型) API返回值 taobao.simba.rpt.adgroupcreativeeffect.get

推广组下的创意报表效果数据查询(汇总数据,不分类型)

type TaobaoSimbaRptAdgroupcreativeeffectGetAPIResponseModel

type TaobaoSimbaRptAdgroupcreativeeffectGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_adgroupcreativeeffect_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广组下的创意效果数据列表
	RptAdgroupcreativeEffectList string `json:"rpt_adgroupcreative_effect_list,omitempty" xml:"rpt_adgroupcreative_effect_list,omitempty"`
}

TaobaoSimbaRptAdgroupcreativeeffectGetAPIResponseModel is 推广组下的创意报表效果数据查询(汇总数据,不分类型) 成功返回结果

type TaobaoSimbaRptAdgroupeffectGetAPIRequest

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

TaobaoSimbaRptAdgroupeffectGetAPIRequest 推广组效果报表数据对象 API请求 taobao.simba.rpt.adgroupeffect.get

推广组效果报表数据对象

func NewTaobaoSimbaRptAdgroupeffectGetRequest

func NewTaobaoSimbaRptAdgroupeffectGetRequest() *TaobaoSimbaRptAdgroupeffectGetAPIRequest

NewTaobaoSimbaRptAdgroupeffectGetRequest 初始化TaobaoSimbaRptAdgroupeffectGetAPIRequest对象

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetSearchType

GetSearchType SearchType Getter

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptAdgroupeffectGetAPIRequest) GetSubwayToken

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组id

func (*TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划id

func (*TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetEndTime

func (r *TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetSearchType

func (r *TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetSearchType(_searchType string) error

SetSearchType is SearchType Setter 报表类型(搜索:SEARCH,类目出价:CAT,<br/>定向投放:NOSEARCH )可以一次取多个例如:SEARCH,CAT

func (*TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetSource

SetSource is Source Setter 数据来源(PC站内:1,PC站外:2,无线站内:4,无线站外 : 5)可多选,以逗号分隔

func (*TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptAdgroupeffectGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限校验参数

type TaobaoSimbaRptAdgroupeffectGetAPIResponse

type TaobaoSimbaRptAdgroupeffectGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptAdgroupeffectGetAPIResponseModel
}

TaobaoSimbaRptAdgroupeffectGetAPIResponse 推广组效果报表数据对象 API返回值 taobao.simba.rpt.adgroupeffect.get

推广组效果报表数据对象

type TaobaoSimbaRptAdgroupeffectGetAPIResponseModel

type TaobaoSimbaRptAdgroupeffectGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_adgroupeffect_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广组效果报表数据对象
	RptAdgroupEffectList string `json:"rpt_adgroup_effect_list,omitempty" xml:"rpt_adgroup_effect_list,omitempty"`
}

TaobaoSimbaRptAdgroupeffectGetAPIResponseModel is 推广组效果报表数据对象 成功返回结果

type TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest

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

TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest 推广组下的词基础报表数据查询(明细数据不分类型查询) API请求 taobao.simba.rpt.adgroupkeywordbase.get

推广组下的词基础报表数据查询(明细数据不分类型查询)

func NewTaobaoSimbaRptAdgroupkeywordbaseGetRequest

func NewTaobaoSimbaRptAdgroupkeywordbaseGetRequest() *TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest

NewTaobaoSimbaRptAdgroupkeywordbaseGetRequest 初始化TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest对象

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetSearchType

GetSearchType SearchType Getter

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) GetSubwayToken

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组ID

func (*TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划ID

func (*TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetEndTime

SetEndTime is EndTime Setter 结束时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetSearchType

func (r *TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetSearchType(_searchType string) error

SetSearchType is SearchType Setter 报表类型(搜索:SEARCH,类目出价:CAT, 定向投放:NOSEARCH)可多选例如:SEARCH,CAT

func (*TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetSource

SetSource is Source Setter 数据来源(PC站内:1,PC站外:2,无线站内:4,无线站外 : 5,汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如1,2

func (*TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptAdgroupkeywordbaseGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限校验参数

type TaobaoSimbaRptAdgroupkeywordbaseGetAPIResponse

type TaobaoSimbaRptAdgroupkeywordbaseGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptAdgroupkeywordbaseGetAPIResponseModel
}

TaobaoSimbaRptAdgroupkeywordbaseGetAPIResponse 推广组下的词基础报表数据查询(明细数据不分类型查询) API返回值 taobao.simba.rpt.adgroupkeywordbase.get

推广组下的词基础报表数据查询(明细数据不分类型查询)

type TaobaoSimbaRptAdgroupkeywordbaseGetAPIResponseModel

type TaobaoSimbaRptAdgroupkeywordbaseGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_adgroupkeywordbase_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 词基础数据返回结果
	RptAdgroupkeywordBaseList string `json:"rpt_adgroupkeyword_base_list,omitempty" xml:"rpt_adgroupkeyword_base_list,omitempty"`
}

TaobaoSimbaRptAdgroupkeywordbaseGetAPIResponseModel is 推广组下的词基础报表数据查询(明细数据不分类型查询) 成功返回结果

type TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest

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

TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest 推广组下的词效果报表数据查询(明细数据不分类型查询) API请求 taobao.simba.rpt.adgroupkeywordeffect.get

推广组下的词效果报表数据查询(明细数据不分类型查询)

func NewTaobaoSimbaRptAdgroupkeywordeffectGetRequest

func NewTaobaoSimbaRptAdgroupkeywordeffectGetRequest() *TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest

NewTaobaoSimbaRptAdgroupkeywordeffectGetRequest 初始化TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest对象

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetSearchType

GetSearchType SearchType Getter

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) GetSubwayToken

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组ID

func (*TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划ID

func (*TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetEndTime

SetEndTime is EndTime Setter 结束时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetPageSize

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetSearchType

func (r *TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetSearchType(_searchType string) error

SetSearchType is SearchType Setter 报表类型(搜索:SEARCH,类目出价:CAT, 定向投放:NOSEARCH)可多选例如:SEARCH,CAT

func (*TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetSource

SetSource is Source Setter 数据来源(PC站内:1,PC站外:2,无线站内:4,无线站外 : 5,汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如1,2

func (*TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptAdgroupkeywordeffectGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限校验参数

type TaobaoSimbaRptAdgroupkeywordeffectGetAPIResponse

type TaobaoSimbaRptAdgroupkeywordeffectGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptAdgroupkeywordeffectGetAPIResponseModel
}

TaobaoSimbaRptAdgroupkeywordeffectGetAPIResponse 推广组下的词效果报表数据查询(明细数据不分类型查询) API返回值 taobao.simba.rpt.adgroupkeywordeffect.get

推广组下的词效果报表数据查询(明细数据不分类型查询)

type TaobaoSimbaRptAdgroupkeywordeffectGetAPIResponseModel

type TaobaoSimbaRptAdgroupkeywordeffectGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_adgroupkeywordeffect_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 词效果数据返回结果
	RptAdgroupkeywordEffectList string `json:"rpt_adgroupkeyword_effect_list,omitempty" xml:"rpt_adgroupkeyword_effect_list,omitempty"`
}

TaobaoSimbaRptAdgroupkeywordeffectGetAPIResponseModel is 推广组下的词效果报表数据查询(明细数据不分类型查询) 成功返回结果

type TaobaoSimbaRptCampadgroupbaseGetAPIRequest

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

TaobaoSimbaRptCampadgroupbaseGetAPIRequest 推广计划下的推广组报表基础数据查询(只有汇总数据,无分类类型) API请求 taobao.simba.rpt.campadgroupbase.get

推广计划下的推广组报表基础数据查询(只有汇总数据,无分类类型)

func NewTaobaoSimbaRptCampadgroupbaseGetRequest

func NewTaobaoSimbaRptCampadgroupbaseGetRequest() *TaobaoSimbaRptCampadgroupbaseGetAPIRequest

NewTaobaoSimbaRptCampadgroupbaseGetRequest 初始化TaobaoSimbaRptCampadgroupbaseGetAPIRequest对象

func (TaobaoSimbaRptCampadgroupbaseGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptCampadgroupbaseGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptCampadgroupbaseGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptCampadgroupbaseGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptCampadgroupbaseGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptCampadgroupbaseGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptCampadgroupbaseGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptCampadgroupbaseGetAPIRequest) GetSearchType

GetSearchType SearchType Getter

func (TaobaoSimbaRptCampadgroupbaseGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptCampadgroupbaseGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptCampadgroupbaseGetAPIRequest) GetSubwayToken

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 查询推广计划id

func (*TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetEndTime

SetEndTime is EndTime Setter 结束日期,格式yyyy-mm-dd

func (*TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetSearchType

func (r *TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetSearchType(_searchType string) error

SetSearchType is SearchType Setter 报表类型(搜索:SEARCH,类目出价:CAT, 定向投放:NOSEARCH汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如:SEARCH,CAT

func (*TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetSource

SetSource is Source Setter 数据来源(PC站内:1,PC站外:2,无线站内:4,无线站外 : 5, 汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如1,2

func (*TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始日期,格式yyyy-mm-dd

func (*TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptCampadgroupbaseGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限验证信息

type TaobaoSimbaRptCampadgroupbaseGetAPIResponse

type TaobaoSimbaRptCampadgroupbaseGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptCampadgroupbaseGetAPIResponseModel
}

TaobaoSimbaRptCampadgroupbaseGetAPIResponse 推广计划下的推广组报表基础数据查询(只有汇总数据,无分类类型) API返回值 taobao.simba.rpt.campadgroupbase.get

推广计划下的推广组报表基础数据查询(只有汇总数据,无分类类型)

type TaobaoSimbaRptCampadgroupbaseGetAPIResponseModel

type TaobaoSimbaRptCampadgroupbaseGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_campadgroupbase_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广计划下推广组的基础数据列表
	RptCampadgroupBaseList string `json:"rpt_campadgroup_base_list,omitempty" xml:"rpt_campadgroup_base_list,omitempty"`
}

TaobaoSimbaRptCampadgroupbaseGetAPIResponseModel is 推广计划下的推广组报表基础数据查询(只有汇总数据,无分类类型) 成功返回结果

type TaobaoSimbaRptCampadgroupeffectGetAPIRequest

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

TaobaoSimbaRptCampadgroupeffectGetAPIRequest 推广计划下的推广组报表效果数据查询(只有汇总数据,无分类类型) API请求 taobao.simba.rpt.campadgroupeffect.get

推广计划下的推广组报表效果数据查询(只有汇总数据,无分类类型)

func NewTaobaoSimbaRptCampadgroupeffectGetRequest

func NewTaobaoSimbaRptCampadgroupeffectGetRequest() *TaobaoSimbaRptCampadgroupeffectGetAPIRequest

NewTaobaoSimbaRptCampadgroupeffectGetRequest 初始化TaobaoSimbaRptCampadgroupeffectGetAPIRequest对象

func (TaobaoSimbaRptCampadgroupeffectGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptCampadgroupeffectGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptCampadgroupeffectGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptCampadgroupeffectGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptCampadgroupeffectGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptCampadgroupeffectGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptCampadgroupeffectGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptCampadgroupeffectGetAPIRequest) GetSearchType

GetSearchType SearchType Getter

func (TaobaoSimbaRptCampadgroupeffectGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptCampadgroupeffectGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptCampadgroupeffectGetAPIRequest) GetSubwayToken

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 查询推广计划id

func (*TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetEndTime

SetEndTime is EndTime Setter 结束日期,格式yyyy-mm-dd

func (*TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetSearchType

func (r *TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetSearchType(_searchType string) error

SetSearchType is SearchType Setter 报表类型(搜索:SEARCH,类目出价:CAT, 定向投放:NOSEARCH汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如:SEARCH,CAT

func (*TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetSource

SetSource is Source Setter 数据来源(PC站内:1,PC站外:2,无线站内:4,无线站外 : 5,汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如1,2

func (*TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始日期,格式yyyy-mm-dd

func (*TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptCampadgroupeffectGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限验证信息

type TaobaoSimbaRptCampadgroupeffectGetAPIResponse

type TaobaoSimbaRptCampadgroupeffectGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptCampadgroupeffectGetAPIResponseModel
}

TaobaoSimbaRptCampadgroupeffectGetAPIResponse 推广计划下的推广组报表效果数据查询(只有汇总数据,无分类类型) API返回值 taobao.simba.rpt.campadgroupeffect.get

推广计划下的推广组报表效果数据查询(只有汇总数据,无分类类型)

type TaobaoSimbaRptCampadgroupeffectGetAPIResponseModel

type TaobaoSimbaRptCampadgroupeffectGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_campadgroupeffect_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广计划下推广组的效果数据列表
	RptCampadgroupEffectList string `json:"rpt_campadgroup_effect_list,omitempty" xml:"rpt_campadgroup_effect_list,omitempty"`
}

TaobaoSimbaRptCampadgroupeffectGetAPIResponseModel is 推广计划下的推广组报表效果数据查询(只有汇总数据,无分类类型) 成功返回结果

type TaobaoSimbaRptCampaignbaseGetAPIRequest

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

TaobaoSimbaRptCampaignbaseGetAPIRequest 推广计划报表基础数据对象 API请求 taobao.simba.rpt.campaignbase.get

推广计划报表基础数据对象

func NewTaobaoSimbaRptCampaignbaseGetRequest

func NewTaobaoSimbaRptCampaignbaseGetRequest() *TaobaoSimbaRptCampaignbaseGetAPIRequest

NewTaobaoSimbaRptCampaignbaseGetRequest 初始化TaobaoSimbaRptCampaignbaseGetAPIRequest对象

func (TaobaoSimbaRptCampaignbaseGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaRptCampaignbaseGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptCampaignbaseGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptCampaignbaseGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptCampaignbaseGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptCampaignbaseGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptCampaignbaseGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptCampaignbaseGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptCampaignbaseGetAPIRequest) GetSearchType

GetSearchType SearchType Getter

func (TaobaoSimbaRptCampaignbaseGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptCampaignbaseGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptCampaignbaseGetAPIRequest) GetSubwayToken

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptCampaignbaseGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptCampaignbaseGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划id

func (*TaobaoSimbaRptCampaignbaseGetAPIRequest) SetEndTime

func (r *TaobaoSimbaRptCampaignbaseGetAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptCampaignbaseGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaRptCampaignbaseGetAPIRequest) SetPageNo

func (r *TaobaoSimbaRptCampaignbaseGetAPIRequest) SetPageNo(_pageNo int64) error

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptCampaignbaseGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRptCampaignbaseGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptCampaignbaseGetAPIRequest) SetSearchType

func (r *TaobaoSimbaRptCampaignbaseGetAPIRequest) SetSearchType(_searchType string) error

SetSearchType is SearchType Setter 报表类型(搜索:SEARCH,类目出价:CAT, 定向投放:NOSEARCH 全部:ALL)可以一次取多个例如:SEARCH,CAT

func (*TaobaoSimbaRptCampaignbaseGetAPIRequest) SetSource

SetSource is Source Setter 数据来源(站内:1,站外:2)可多选以逗号分隔,默认值为:1,2

func (*TaobaoSimbaRptCampaignbaseGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptCampaignbaseGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptCampaignbaseGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptCampaignbaseGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限校验参数

type TaobaoSimbaRptCampaignbaseGetAPIResponse

type TaobaoSimbaRptCampaignbaseGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptCampaignbaseGetAPIResponseModel
}

TaobaoSimbaRptCampaignbaseGetAPIResponse 推广计划报表基础数据对象 API返回值 taobao.simba.rpt.campaignbase.get

推广计划报表基础数据对象

type TaobaoSimbaRptCampaignbaseGetAPIResponseModel

type TaobaoSimbaRptCampaignbaseGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_campaignbase_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广计划查询结果
	RptCampaignBaseList string `json:"rpt_campaign_base_list,omitempty" xml:"rpt_campaign_base_list,omitempty"`
}

TaobaoSimbaRptCampaignbaseGetAPIResponseModel is 推广计划报表基础数据对象 成功返回结果

type TaobaoSimbaRptCampaigneffectGetAPIRequest

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

TaobaoSimbaRptCampaigneffectGetAPIRequest 推广计划效果报表数据对象 API请求 taobao.simba.rpt.campaigneffect.get

推广计划效果报表数据对象

func NewTaobaoSimbaRptCampaigneffectGetRequest

func NewTaobaoSimbaRptCampaigneffectGetRequest() *TaobaoSimbaRptCampaigneffectGetAPIRequest

NewTaobaoSimbaRptCampaigneffectGetRequest 初始化TaobaoSimbaRptCampaigneffectGetAPIRequest对象

func (TaobaoSimbaRptCampaigneffectGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptCampaigneffectGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptCampaigneffectGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptCampaigneffectGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptCampaigneffectGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptCampaigneffectGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptCampaigneffectGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptCampaigneffectGetAPIRequest) GetSearchType

GetSearchType SearchType Getter

func (TaobaoSimbaRptCampaigneffectGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptCampaigneffectGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptCampaigneffectGetAPIRequest) GetSubwayToken

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptCampaigneffectGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptCampaigneffectGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划id

func (*TaobaoSimbaRptCampaigneffectGetAPIRequest) SetEndTime

func (r *TaobaoSimbaRptCampaigneffectGetAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptCampaigneffectGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaRptCampaigneffectGetAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptCampaigneffectGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRptCampaigneffectGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptCampaigneffectGetAPIRequest) SetSearchType

func (r *TaobaoSimbaRptCampaigneffectGetAPIRequest) SetSearchType(_searchType string) error

SetSearchType is SearchType Setter 报表类型(搜索:SEARCH,类目出价:CAT,定向投放:NOSEARCH 全部:ALL)

func (*TaobaoSimbaRptCampaigneffectGetAPIRequest) SetSource

SetSource is Source Setter 数据来源(站内:1,站外:2)可多选以逗号分隔,默认值为:1,2

func (*TaobaoSimbaRptCampaigneffectGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptCampaigneffectGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptCampaigneffectGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptCampaigneffectGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限校验参数

type TaobaoSimbaRptCampaigneffectGetAPIResponse

type TaobaoSimbaRptCampaigneffectGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptCampaigneffectGetAPIResponseModel
}

TaobaoSimbaRptCampaigneffectGetAPIResponse 推广计划效果报表数据对象 API返回值 taobao.simba.rpt.campaigneffect.get

推广计划效果报表数据对象

type TaobaoSimbaRptCampaigneffectGetAPIResponseModel

type TaobaoSimbaRptCampaigneffectGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_campaigneffect_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广计划效果报表数据对象
	RptCampaignEffectList string `json:"rpt_campaign_effect_list,omitempty" xml:"rpt_campaign_effect_list,omitempty"`
}

TaobaoSimbaRptCampaigneffectGetAPIResponseModel is 推广计划效果报表数据对象 成功返回结果

type TaobaoSimbaRptCustbaseGetAPIRequest

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

TaobaoSimbaRptCustbaseGetAPIRequest 客户账户报表基础数据对象 API请求 taobao.simba.rpt.custbase.get

客户账户报表基础数据对象

func NewTaobaoSimbaRptCustbaseGetRequest

func NewTaobaoSimbaRptCustbaseGetRequest() *TaobaoSimbaRptCustbaseGetAPIRequest

NewTaobaoSimbaRptCustbaseGetRequest 初始化TaobaoSimbaRptCustbaseGetAPIRequest对象

func (TaobaoSimbaRptCustbaseGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaRptCustbaseGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptCustbaseGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptCustbaseGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptCustbaseGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptCustbaseGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptCustbaseGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptCustbaseGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptCustbaseGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptCustbaseGetAPIRequest) GetSubwayToken

func (r TaobaoSimbaRptCustbaseGetAPIRequest) GetSubwayToken() string

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptCustbaseGetAPIRequest) SetEndTime

func (r *TaobaoSimbaRptCustbaseGetAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束日期,格式yyyy-mm-dd

func (*TaobaoSimbaRptCustbaseGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaRptCustbaseGetAPIRequest) SetPageNo

func (r *TaobaoSimbaRptCustbaseGetAPIRequest) SetPageNo(_pageNo int64) error

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptCustbaseGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRptCustbaseGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptCustbaseGetAPIRequest) SetSource

func (r *TaobaoSimbaRptCustbaseGetAPIRequest) SetSource(_source string) error

SetSource is Source Setter 数据来源(站内:1,站外:2 ,汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如1,2

func (*TaobaoSimbaRptCustbaseGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptCustbaseGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始日期,格式yyyy-mm-dd

func (*TaobaoSimbaRptCustbaseGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptCustbaseGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限验证信息

type TaobaoSimbaRptCustbaseGetAPIResponse

type TaobaoSimbaRptCustbaseGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptCustbaseGetAPIResponseModel
}

TaobaoSimbaRptCustbaseGetAPIResponse 客户账户报表基础数据对象 API返回值 taobao.simba.rpt.custbase.get

客户账户报表基础数据对象

type TaobaoSimbaRptCustbaseGetAPIResponseModel

type TaobaoSimbaRptCustbaseGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_custbase_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 用户帐户结果
	RptCustBaseList string `json:"rpt_cust_base_list,omitempty" xml:"rpt_cust_base_list,omitempty"`
}

TaobaoSimbaRptCustbaseGetAPIResponseModel is 客户账户报表基础数据对象 成功返回结果

type TaobaoSimbaRptCusteffectGetAPIRequest

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

TaobaoSimbaRptCusteffectGetAPIRequest 用户账户报表效果数据查询(只有汇总数据,无分类数据) API请求 taobao.simba.rpt.custeffect.get

用户账户报表效果数据查询(只有汇总数据,无分类数据)

func NewTaobaoSimbaRptCusteffectGetRequest

func NewTaobaoSimbaRptCusteffectGetRequest() *TaobaoSimbaRptCusteffectGetAPIRequest

NewTaobaoSimbaRptCusteffectGetRequest 初始化TaobaoSimbaRptCusteffectGetAPIRequest对象

func (TaobaoSimbaRptCusteffectGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaRptCusteffectGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptCusteffectGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptCusteffectGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptCusteffectGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptCusteffectGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaRptCusteffectGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptCusteffectGetAPIRequest) GetSource

GetSource Source Getter

func (TaobaoSimbaRptCusteffectGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptCusteffectGetAPIRequest) GetSubwayToken

func (r TaobaoSimbaRptCusteffectGetAPIRequest) GetSubwayToken() string

GetSubwayToken SubwayToken Getter

func (*TaobaoSimbaRptCusteffectGetAPIRequest) SetEndTime

func (r *TaobaoSimbaRptCusteffectGetAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptCusteffectGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaRptCusteffectGetAPIRequest) SetPageNo

func (r *TaobaoSimbaRptCusteffectGetAPIRequest) SetPageNo(_pageNo int64) error

SetPageNo is PageNo Setter 页码

func (*TaobaoSimbaRptCusteffectGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRptCusteffectGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRptCusteffectGetAPIRequest) SetSource

func (r *TaobaoSimbaRptCusteffectGetAPIRequest) SetSource(_source string) error

SetSource is Source Setter 数据来源(站内:1,站外:2 ,汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如1,2

func (*TaobaoSimbaRptCusteffectGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptCusteffectGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间,格式yyyy-mm-dd

func (*TaobaoSimbaRptCusteffectGetAPIRequest) SetSubwayToken

func (r *TaobaoSimbaRptCusteffectGetAPIRequest) SetSubwayToken(_subwayToken string) error

SetSubwayToken is SubwayToken Setter 权限校验参数

type TaobaoSimbaRptCusteffectGetAPIResponse

type TaobaoSimbaRptCusteffectGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptCusteffectGetAPIResponseModel
}

TaobaoSimbaRptCusteffectGetAPIResponse 用户账户报表效果数据查询(只有汇总数据,无分类数据) API返回值 taobao.simba.rpt.custeffect.get

用户账户报表效果数据查询(只有汇总数据,无分类数据)

type TaobaoSimbaRptCusteffectGetAPIResponseModel

type TaobaoSimbaRptCusteffectGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_custeffect_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 账户效果数据返回结果
	RptCustEffectList string `json:"rpt_cust_effect_list,omitempty" xml:"rpt_cust_effect_list,omitempty"`
}

TaobaoSimbaRptCusteffectGetAPIResponseModel is 用户账户报表效果数据查询(只有汇总数据,无分类数据) 成功返回结果

type TaobaoSimbaRptTargetingtagGetAPIRequest

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

TaobaoSimbaRptTargetingtagGetAPIRequest 搜索人群离线报表 API请求 taobao.simba.rpt.targetingtag.get

获取搜搜人群实时报表

func NewTaobaoSimbaRptTargetingtagGetRequest

func NewTaobaoSimbaRptTargetingtagGetRequest() *TaobaoSimbaRptTargetingtagGetAPIRequest

NewTaobaoSimbaRptTargetingtagGetRequest 初始化TaobaoSimbaRptTargetingtagGetAPIRequest对象

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaRptTargetingtagGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetTrafficType

GetTrafficType TrafficType Getter

func (*TaobaoSimbaRptTargetingtagGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRptTargetingtagGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广单元id

func (*TaobaoSimbaRptTargetingtagGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptTargetingtagGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划id

func (*TaobaoSimbaRptTargetingtagGetAPIRequest) SetEndTime

func (r *TaobaoSimbaRptTargetingtagGetAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSimbaRptTargetingtagGetAPIRequest) SetNick

SetNick is Nick Setter 用户旺旺名称

func (*TaobaoSimbaRptTargetingtagGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptTargetingtagGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间

func (*TaobaoSimbaRptTargetingtagGetAPIRequest) SetTrafficType

func (r *TaobaoSimbaRptTargetingtagGetAPIRequest) SetTrafficType(_trafficType string) error

SetTrafficType is TrafficType Setter 流量类型 1: PC站内, 2: PC站外 , 4: 无线站内, 5: 无线站外,支持多种一起查询,如1,2,4,5

type TaobaoSimbaRptTargetingtagGetAPIResponse

type TaobaoSimbaRptTargetingtagGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptTargetingtagGetAPIResponseModel
}

TaobaoSimbaRptTargetingtagGetAPIResponse 搜索人群离线报表 API返回值 taobao.simba.rpt.targetingtag.get

获取搜搜人群实时报表

type TaobaoSimbaRptTargetingtagGetAPIResponseModel

type TaobaoSimbaRptTargetingtagGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_targetingtag_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 111
	Results []RtRptResultEntityDto `json:"results,omitempty" xml:"results>rt_rpt_result_entity_dto,omitempty"`
}

TaobaoSimbaRptTargetingtagGetAPIResponseModel is 搜索人群离线报表 成功返回结果

type TaobaoSimbaRptTargetingtagbaseGetAPIRequest

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

TaobaoSimbaRptTargetingtagbaseGetAPIRequest 定向基础报表 API请求 taobao.simba.rpt.targetingtagbase.get

获取定向基础报表

func NewTaobaoSimbaRptTargetingtagbaseGetRequest

func NewTaobaoSimbaRptTargetingtagbaseGetRequest() *TaobaoSimbaRptTargetingtagbaseGetAPIRequest

NewTaobaoSimbaRptTargetingtagbaseGetRequest 初始化TaobaoSimbaRptTargetingtagbaseGetAPIRequest对象

func (TaobaoSimbaRptTargetingtagbaseGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRptTargetingtagbaseGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptTargetingtagbaseGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptTargetingtagbaseGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptTargetingtagbaseGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptTargetingtagbaseGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptTargetingtagbaseGetAPIRequest) GetPageNumber

GetPageNumber PageNumber Getter

func (TaobaoSimbaRptTargetingtagbaseGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptTargetingtagbaseGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (*TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组id

func (*TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 计划id

func (*TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetEndTime

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetNick

SetNick is Nick Setter 被操作者昵称

func (*TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetPageNumber

func (r *TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetPageNumber(_pageNumber int64) error

SetPageNumber is PageNumber Setter 页码

func (*TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 分页大小

func (*TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptTargetingtagbaseGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 起始时间

type TaobaoSimbaRptTargetingtagbaseGetAPIResponse

type TaobaoSimbaRptTargetingtagbaseGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptTargetingtagbaseGetAPIResponseModel
}

TaobaoSimbaRptTargetingtagbaseGetAPIResponse 定向基础报表 API返回值 taobao.simba.rpt.targetingtagbase.get

获取定向基础报表

type TaobaoSimbaRptTargetingtagbaseGetAPIResponseModel

type TaobaoSimbaRptTargetingtagbaseGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_targetingtagbase_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	Results []RptBaseEntityDto `json:"results,omitempty" xml:"results>rpt_base_entity_dto,omitempty"`
}

TaobaoSimbaRptTargetingtagbaseGetAPIResponseModel is 定向基础报表 成功返回结果

type TaobaoSimbaRptTargetingtageffectGetAPIRequest

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

TaobaoSimbaRptTargetingtageffectGetAPIRequest 获取定向效果报表数据 API请求 taobao.simba.rpt.targetingtageffect.get

获取定向效果报表数据

func NewTaobaoSimbaRptTargetingtageffectGetRequest

func NewTaobaoSimbaRptTargetingtageffectGetRequest() *TaobaoSimbaRptTargetingtageffectGetAPIRequest

NewTaobaoSimbaRptTargetingtageffectGetRequest 初始化TaobaoSimbaRptTargetingtageffectGetAPIRequest对象

func (TaobaoSimbaRptTargetingtageffectGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRptTargetingtageffectGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRptTargetingtageffectGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptTargetingtageffectGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptTargetingtageffectGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptTargetingtageffectGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptTargetingtageffectGetAPIRequest) GetPageNumber

GetPageNumber PageNumber Getter

func (TaobaoSimbaRptTargetingtageffectGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRptTargetingtageffectGetAPIRequest) GetStartTime

GetStartTime StartTime Getter

func (*TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组id

func (*TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 计划id

func (*TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetEndTime

SetEndTime is EndTime Setter 终止时间 ,必须小于今天

func (*TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetNick

SetNick is Nick Setter 被操作者昵称

func (*TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetPageNumber

func (r *TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetPageNumber(_pageNumber int64) error

SetPageNumber is PageNumber Setter 页码

func (*TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 页面大小

func (*TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetStartTime

func (r *TaobaoSimbaRptTargetingtageffectGetAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 起始时间

type TaobaoSimbaRptTargetingtageffectGetAPIResponse

type TaobaoSimbaRptTargetingtageffectGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRptTargetingtageffectGetAPIResponseModel
}

TaobaoSimbaRptTargetingtageffectGetAPIResponse 获取定向效果报表数据 API返回值 taobao.simba.rpt.targetingtageffect.get

获取定向效果报表数据

type TaobaoSimbaRptTargetingtageffectGetAPIResponseModel

type TaobaoSimbaRptTargetingtageffectGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rpt_targetingtageffect_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 效果数据
	Results []RptEffectEntityDto `json:"results,omitempty" xml:"results>rpt_effect_entity_dto,omitempty"`
}

TaobaoSimbaRptTargetingtageffectGetAPIResponseModel is 获取定向效果报表数据 成功返回结果

type TaobaoSimbaRtrptAdgroupGetAPIRequest

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

TaobaoSimbaRtrptAdgroupGetAPIRequest 获取推广组实时报表数据 API请求 taobao.simba.rtrpt.adgroup.get

获取推广组实时报表数据

func NewTaobaoSimbaRtrptAdgroupGetRequest

func NewTaobaoSimbaRtrptAdgroupGetRequest() *TaobaoSimbaRtrptAdgroupGetAPIRequest

NewTaobaoSimbaRtrptAdgroupGetRequest 初始化TaobaoSimbaRtrptAdgroupGetAPIRequest对象

func (TaobaoSimbaRtrptAdgroupGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaRtrptAdgroupGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRtrptAdgroupGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRtrptAdgroupGetAPIRequest) GetCampaignId

func (r TaobaoSimbaRtrptAdgroupGetAPIRequest) GetCampaignId() int64

GetCampaignId CampaignId Getter

func (TaobaoSimbaRtrptAdgroupGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRtrptAdgroupGetAPIRequest) GetPageNumber

func (r TaobaoSimbaRtrptAdgroupGetAPIRequest) GetPageNumber() int64

GetPageNumber PageNumber Getter

func (TaobaoSimbaRtrptAdgroupGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaRtrptAdgroupGetAPIRequest) GetTheDate

GetTheDate TheDate Getter

func (*TaobaoSimbaRtrptAdgroupGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRtrptAdgroupGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划id

func (*TaobaoSimbaRtrptAdgroupGetAPIRequest) SetNick

SetNick is Nick Setter 用户名

func (*TaobaoSimbaRtrptAdgroupGetAPIRequest) SetPageNumber

func (r *TaobaoSimbaRtrptAdgroupGetAPIRequest) SetPageNumber(_pageNumber int64) error

SetPageNumber is PageNumber Setter 页码

func (*TaobaoSimbaRtrptAdgroupGetAPIRequest) SetPageSize

func (r *TaobaoSimbaRtrptAdgroupGetAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页大小

func (*TaobaoSimbaRtrptAdgroupGetAPIRequest) SetTheDate

func (r *TaobaoSimbaRtrptAdgroupGetAPIRequest) SetTheDate(_theDate string) error

SetTheDate is TheDate Setter 日期,格式yyyy-mm-dd

type TaobaoSimbaRtrptAdgroupGetAPIResponse

type TaobaoSimbaRtrptAdgroupGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRtrptAdgroupGetAPIResponseModel
}

TaobaoSimbaRtrptAdgroupGetAPIResponse 获取推广组实时报表数据 API返回值 taobao.simba.rtrpt.adgroup.get

获取推广组实时报表数据

type TaobaoSimbaRtrptAdgroupGetAPIResponseModel

type TaobaoSimbaRtrptAdgroupGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rtrpt_adgroup_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 1111
	Results []RtRptResultEntityDto `json:"results,omitempty" xml:"results>rt_rpt_result_entity_dto,omitempty"`
}

TaobaoSimbaRtrptAdgroupGetAPIResponseModel is 获取推广组实时报表数据 成功返回结果

type TaobaoSimbaRtrptBidwordGetAPIRequest

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

TaobaoSimbaRtrptBidwordGetAPIRequest 获取推广词实时报表数据 API请求 taobao.simba.rtrpt.bidword.get

获取推广词报表数据

func NewTaobaoSimbaRtrptBidwordGetRequest

func NewTaobaoSimbaRtrptBidwordGetRequest() *TaobaoSimbaRtrptBidwordGetAPIRequest

NewTaobaoSimbaRtrptBidwordGetRequest 初始化TaobaoSimbaRtrptBidwordGetAPIRequest对象

func (TaobaoSimbaRtrptBidwordGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRtrptBidwordGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaRtrptBidwordGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRtrptBidwordGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRtrptBidwordGetAPIRequest) GetCampaignId

func (r TaobaoSimbaRtrptBidwordGetAPIRequest) GetCampaignId() int64

GetCampaignId CampaignId Getter

func (TaobaoSimbaRtrptBidwordGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRtrptBidwordGetAPIRequest) GetTheDate

GetTheDate TheDate Getter

func (*TaobaoSimbaRtrptBidwordGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRtrptBidwordGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组id

func (*TaobaoSimbaRtrptBidwordGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRtrptBidwordGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划id

func (*TaobaoSimbaRtrptBidwordGetAPIRequest) SetNick

SetNick is Nick Setter 用户名

func (*TaobaoSimbaRtrptBidwordGetAPIRequest) SetTheDate

func (r *TaobaoSimbaRtrptBidwordGetAPIRequest) SetTheDate(_theDate string) error

SetTheDate is TheDate Setter 日期,格式yyyy-mm-dd

type TaobaoSimbaRtrptBidwordGetAPIResponse

type TaobaoSimbaRtrptBidwordGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRtrptBidwordGetAPIResponseModel
}

TaobaoSimbaRtrptBidwordGetAPIResponse 获取推广词实时报表数据 API返回值 taobao.simba.rtrpt.bidword.get

获取推广词报表数据

type TaobaoSimbaRtrptBidwordGetAPIResponseModel

type TaobaoSimbaRtrptBidwordGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rtrpt_bidword_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// bidword result
	Results []RtRptResultEntityDto `json:"results,omitempty" xml:"results>rt_rpt_result_entity_dto,omitempty"`
}

TaobaoSimbaRtrptBidwordGetAPIResponseModel is 获取推广词实时报表数据 成功返回结果

type TaobaoSimbaRtrptCampaignGetAPIRequest

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

TaobaoSimbaRtrptCampaignGetAPIRequest 获取推广计划实时报表数据 API请求 taobao.simba.rtrpt.campaign.get

获取推广计划实时报表数据

func NewTaobaoSimbaRtrptCampaignGetRequest

func NewTaobaoSimbaRtrptCampaignGetRequest() *TaobaoSimbaRtrptCampaignGetAPIRequest

NewTaobaoSimbaRtrptCampaignGetRequest 初始化TaobaoSimbaRtrptCampaignGetAPIRequest对象

func (TaobaoSimbaRtrptCampaignGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaRtrptCampaignGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRtrptCampaignGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRtrptCampaignGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRtrptCampaignGetAPIRequest) GetTheDate

GetTheDate TheDate Getter

func (*TaobaoSimbaRtrptCampaignGetAPIRequest) SetNick

SetNick is Nick Setter 用户名

func (*TaobaoSimbaRtrptCampaignGetAPIRequest) SetTheDate

func (r *TaobaoSimbaRtrptCampaignGetAPIRequest) SetTheDate(_theDate string) error

SetTheDate is TheDate Setter 日期,格式yyyy-mm-dd

type TaobaoSimbaRtrptCampaignGetAPIResponse

type TaobaoSimbaRtrptCampaignGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRtrptCampaignGetAPIResponseModel
}

TaobaoSimbaRtrptCampaignGetAPIResponse 获取推广计划实时报表数据 API返回值 taobao.simba.rtrpt.campaign.get

获取推广计划实时报表数据

type TaobaoSimbaRtrptCampaignGetAPIResponseModel

type TaobaoSimbaRtrptCampaignGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rtrpt_campaign_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 111
	Resultss []RtRptResultEntityDto `json:"resultss,omitempty" xml:"resultss>rt_rpt_result_entity_dto,omitempty"`
}

TaobaoSimbaRtrptCampaignGetAPIResponseModel is 获取推广计划实时报表数据 成功返回结果

type TaobaoSimbaRtrptCreativeGetAPIRequest

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

TaobaoSimbaRtrptCreativeGetAPIRequest 获取创意实时报表数据 API请求 taobao.simba.rtrpt.creative.get

获取创意实时报表数据

func NewTaobaoSimbaRtrptCreativeGetRequest

func NewTaobaoSimbaRtrptCreativeGetRequest() *TaobaoSimbaRtrptCreativeGetAPIRequest

NewTaobaoSimbaRtrptCreativeGetRequest 初始化TaobaoSimbaRtrptCreativeGetAPIRequest对象

func (TaobaoSimbaRtrptCreativeGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRtrptCreativeGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaRtrptCreativeGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRtrptCreativeGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRtrptCreativeGetAPIRequest) GetCampaignId

func (r TaobaoSimbaRtrptCreativeGetAPIRequest) GetCampaignId() int64

GetCampaignId CampaignId Getter

func (TaobaoSimbaRtrptCreativeGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRtrptCreativeGetAPIRequest) GetTheDate

GetTheDate TheDate Getter

func (*TaobaoSimbaRtrptCreativeGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRtrptCreativeGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组id

func (*TaobaoSimbaRtrptCreativeGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRtrptCreativeGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划id

func (*TaobaoSimbaRtrptCreativeGetAPIRequest) SetNick

SetNick is Nick Setter 用户名

func (*TaobaoSimbaRtrptCreativeGetAPIRequest) SetTheDate

func (r *TaobaoSimbaRtrptCreativeGetAPIRequest) SetTheDate(_theDate string) error

SetTheDate is TheDate Setter 日期,格式yyyy-mm-dd

type TaobaoSimbaRtrptCreativeGetAPIResponse

type TaobaoSimbaRtrptCreativeGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRtrptCreativeGetAPIResponseModel
}

TaobaoSimbaRtrptCreativeGetAPIResponse 获取创意实时报表数据 API返回值 taobao.simba.rtrpt.creative.get

获取创意实时报表数据

type TaobaoSimbaRtrptCreativeGetAPIResponseModel

type TaobaoSimbaRtrptCreativeGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rtrpt_creative_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 111
	Results []RtRptResultEntityDto `json:"results,omitempty" xml:"results>rt_rpt_result_entity_dto,omitempty"`
}

TaobaoSimbaRtrptCreativeGetAPIResponseModel is 获取创意实时报表数据 成功返回结果

type TaobaoSimbaRtrptCustGetAPIRequest

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

TaobaoSimbaRtrptCustGetAPIRequest 获取账户实时报表数据 API请求 taobao.simba.rtrpt.cust.get

获取账户实时报表数据

func NewTaobaoSimbaRtrptCustGetRequest

func NewTaobaoSimbaRtrptCustGetRequest() *TaobaoSimbaRtrptCustGetAPIRequest

NewTaobaoSimbaRtrptCustGetRequest 初始化TaobaoSimbaRtrptCustGetAPIRequest对象

func (TaobaoSimbaRtrptCustGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaRtrptCustGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRtrptCustGetAPIRequest) GetApiParams

func (r TaobaoSimbaRtrptCustGetAPIRequest) GetApiParams() url.Values

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRtrptCustGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRtrptCustGetAPIRequest) GetTheDate

GetTheDate TheDate Getter

func (*TaobaoSimbaRtrptCustGetAPIRequest) SetNick

SetNick is Nick Setter 昵称

func (*TaobaoSimbaRtrptCustGetAPIRequest) SetTheDate

func (r *TaobaoSimbaRtrptCustGetAPIRequest) SetTheDate(_theDate string) error

SetTheDate is TheDate Setter 日期,格式yyyy-mm-dd

type TaobaoSimbaRtrptCustGetAPIResponse

type TaobaoSimbaRtrptCustGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRtrptCustGetAPIResponseModel
}

TaobaoSimbaRtrptCustGetAPIResponse 获取账户实时报表数据 API返回值 taobao.simba.rtrpt.cust.get

获取账户实时报表数据

type TaobaoSimbaRtrptCustGetAPIResponseModel

type TaobaoSimbaRtrptCustGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rtrpt_cust_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 11
	Results []RtRptResultEntityDto `json:"results,omitempty" xml:"results>rt_rpt_result_entity_dto,omitempty"`
}

TaobaoSimbaRtrptCustGetAPIResponseModel is 获取账户实时报表数据 成功返回结果

type TaobaoSimbaRtrptTargetingtagGetAPIRequest

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

TaobaoSimbaRtrptTargetingtagGetAPIRequest 搜索人群实时报表 API请求 taobao.simba.rtrpt.targetingtag.get

获取搜搜人群实时报表

func NewTaobaoSimbaRtrptTargetingtagGetRequest

func NewTaobaoSimbaRtrptTargetingtagGetRequest() *TaobaoSimbaRtrptTargetingtagGetAPIRequest

NewTaobaoSimbaRtrptTargetingtagGetRequest 初始化TaobaoSimbaRtrptTargetingtagGetAPIRequest对象

func (TaobaoSimbaRtrptTargetingtagGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaRtrptTargetingtagGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaRtrptTargetingtagGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRtrptTargetingtagGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRtrptTargetingtagGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRtrptTargetingtagGetAPIRequest) GetTheDate

GetTheDate TheDate Getter

func (TaobaoSimbaRtrptTargetingtagGetAPIRequest) GetTrafficType

GetTrafficType TrafficType Getter

func (*TaobaoSimbaRtrptTargetingtagGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaRtrptTargetingtagGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广单元id

func (*TaobaoSimbaRtrptTargetingtagGetAPIRequest) SetCampaignId

func (r *TaobaoSimbaRtrptTargetingtagGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划id

func (*TaobaoSimbaRtrptTargetingtagGetAPIRequest) SetNick

SetNick is Nick Setter 旺旺名称

func (*TaobaoSimbaRtrptTargetingtagGetAPIRequest) SetTheDate

func (r *TaobaoSimbaRtrptTargetingtagGetAPIRequest) SetTheDate(_theDate string) error

SetTheDate is TheDate Setter 日期,格式yyyy-mm-dd

func (*TaobaoSimbaRtrptTargetingtagGetAPIRequest) SetTrafficType

func (r *TaobaoSimbaRtrptTargetingtagGetAPIRequest) SetTrafficType(_trafficType string) error

SetTrafficType is TrafficType Setter 流量类型 1: PC站内, 2: PC站外 , 4: 无线站内, 5: 无线站外,支持多种一起查询,如1,2,4,5

type TaobaoSimbaRtrptTargetingtagGetAPIResponse

type TaobaoSimbaRtrptTargetingtagGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaRtrptTargetingtagGetAPIResponseModel
}

TaobaoSimbaRtrptTargetingtagGetAPIResponse 搜索人群实时报表 API返回值 taobao.simba.rtrpt.targetingtag.get

获取搜搜人群实时报表

type TaobaoSimbaRtrptTargetingtagGetAPIResponseModel

type TaobaoSimbaRtrptTargetingtagGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_rtrpt_targetingtag_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 111
	Results []RtRptResultEntityDto `json:"results,omitempty" xml:"results>rt_rpt_result_entity_dto,omitempty"`
}

TaobaoSimbaRtrptTargetingtagGetAPIResponseModel is 搜索人群实时报表 成功返回结果

type TaobaoSimbaSalestarAdgroupAddAPIRequest

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

TaobaoSimbaSalestarAdgroupAddAPIRequest (新)创建一个推广组 API请求 taobao.simba.salestar.adgroup.add

创建一个推广组

func NewTaobaoSimbaSalestarAdgroupAddRequest

func NewTaobaoSimbaSalestarAdgroupAddRequest() *TaobaoSimbaSalestarAdgroupAddAPIRequest

NewTaobaoSimbaSalestarAdgroupAddRequest 初始化TaobaoSimbaSalestarAdgroupAddAPIRequest对象

func (TaobaoSimbaSalestarAdgroupAddAPIRequest) GetApiMethodName

func (r TaobaoSimbaSalestarAdgroupAddAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarAdgroupAddAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarAdgroupAddAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaSalestarAdgroupAddAPIRequest) GetImgUrl

GetImgUrl ImgUrl Getter

func (TaobaoSimbaSalestarAdgroupAddAPIRequest) GetItemId

GetItemId ItemId Getter

func (TaobaoSimbaSalestarAdgroupAddAPIRequest) GetTitle

GetTitle Title Getter

func (*TaobaoSimbaSalestarAdgroupAddAPIRequest) SetCampaignId

func (r *TaobaoSimbaSalestarAdgroupAddAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaSalestarAdgroupAddAPIRequest) SetImgUrl

SetImgUrl is ImgUrl Setter 创意图片地址,必须是商品的图片之一

func (*TaobaoSimbaSalestarAdgroupAddAPIRequest) SetItemId

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

SetItemId is ItemId Setter 商品Id

func (*TaobaoSimbaSalestarAdgroupAddAPIRequest) SetTitle

SetTitle is Title Setter 创意标题,最多20个汉字

type TaobaoSimbaSalestarAdgroupAddAPIResponse

type TaobaoSimbaSalestarAdgroupAddAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarAdgroupAddAPIResponseModel
}

TaobaoSimbaSalestarAdgroupAddAPIResponse (新)创建一个推广组 API返回值 taobao.simba.salestar.adgroup.add

创建一个推广组

type TaobaoSimbaSalestarAdgroupAddAPIResponseModel

type TaobaoSimbaSalestarAdgroupAddAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_salestar_adgroup_add_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 新增加的推广组
	Adgroup *ADGroup `json:"adgroup,omitempty" xml:"adgroup,omitempty"`
}

TaobaoSimbaSalestarAdgroupAddAPIResponseModel is (新)创建一个推广组 成功返回结果

type TaobaoSimbaSalestarAdgroupDeleteAPIRequest

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

TaobaoSimbaSalestarAdgroupDeleteAPIRequest (新)销量明星删除推广单元接口 API请求 taobao.simba.salestar.adgroup.delete

删除一个推广组

func NewTaobaoSimbaSalestarAdgroupDeleteRequest

func NewTaobaoSimbaSalestarAdgroupDeleteRequest() *TaobaoSimbaSalestarAdgroupDeleteAPIRequest

NewTaobaoSimbaSalestarAdgroupDeleteRequest 初始化TaobaoSimbaSalestarAdgroupDeleteAPIRequest对象

func (TaobaoSimbaSalestarAdgroupDeleteAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaSalestarAdgroupDeleteAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarAdgroupDeleteAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarAdgroupDeleteAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaSalestarAdgroupDeleteAPIRequest) SetAdgroupId

func (r *TaobaoSimbaSalestarAdgroupDeleteAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaSalestarAdgroupDeleteAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaSalestarAdgroupDeleteAPIResponse

type TaobaoSimbaSalestarAdgroupDeleteAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarAdgroupDeleteAPIResponseModel
}

TaobaoSimbaSalestarAdgroupDeleteAPIResponse (新)销量明星删除推广单元接口 API返回值 taobao.simba.salestar.adgroup.delete

删除一个推广组

type TaobaoSimbaSalestarAdgroupDeleteAPIResponseModel

type TaobaoSimbaSalestarAdgroupDeleteAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_salestar_adgroup_delete_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 删除失败时透出的原因,仅当success为false是有效
	ErrorMsg string `json:"error_msg,omitempty" xml:"error_msg,omitempty"`
	// 表示接口调用成功,当推广单元不存在等情况下也会返回true
	IsSuccess bool `json:"is_success,omitempty" xml:"is_success,omitempty"`
}

TaobaoSimbaSalestarAdgroupDeleteAPIResponseModel is (新)销量明星删除推广单元接口 成功返回结果

type TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest

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

TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest (销量明星)批量获取推广计划下的推广组信息 API请求 taobao.simba.salestar.adgroup.findbycampid

批量得到推广计划下的推广组

func NewTaobaoSimbaSalestarAdgroupFindbycampidRequest

func NewTaobaoSimbaSalestarAdgroupFindbycampidRequest() *TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest

NewTaobaoSimbaSalestarAdgroupFindbycampidRequest 初始化TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest对象

func (TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (*TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest) SetCampaignId

func (r *TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

func (*TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest) SetPageNo

SetPageNo is PageNo Setter 页码,从1开始

func (*TaobaoSimbaSalestarAdgroupFindbycampidAPIRequest) SetPageSize

SetPageSize is PageSize Setter 页尺寸,最大200,如果入参adgroup_ids有传入值,则page_size和page_no值不起作用。如果adgrpup_ids为空而campaign_id有值,此时page_size和page_no值才是返回的页数据大小和页码

type TaobaoSimbaSalestarAdgroupFindbycampidAPIResponse

type TaobaoSimbaSalestarAdgroupFindbycampidAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarAdgroupFindbycampidAPIResponseModel
}

TaobaoSimbaSalestarAdgroupFindbycampidAPIResponse (销量明星)批量获取推广计划下的推广组信息 API返回值 taobao.simba.salestar.adgroup.findbycampid

批量得到推广计划下的推广组

type TaobaoSimbaSalestarAdgroupFindbycampidAPIResponseModel

type TaobaoSimbaSalestarAdgroupFindbycampidAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_salestar_adgroup_findbycampid_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回的推广组分页对象
	Adgroups *ADGroupPage `json:"adgroups,omitempty" xml:"adgroups,omitempty"`
}

TaobaoSimbaSalestarAdgroupFindbycampidAPIResponseModel is (销量明星)批量获取推广计划下的推广组信息 成功返回结果

type TaobaoSimbaSalestarAdgroupUpdateAPIRequest

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

TaobaoSimbaSalestarAdgroupUpdateAPIRequest 销量明星更新一个推广组的信息 API请求 taobao.simba.salestar.adgroup.update

更新一个推广组的信息,可以设置 是否上线

func NewTaobaoSimbaSalestarAdgroupUpdateRequest

func NewTaobaoSimbaSalestarAdgroupUpdateRequest() *TaobaoSimbaSalestarAdgroupUpdateAPIRequest

NewTaobaoSimbaSalestarAdgroupUpdateRequest 初始化TaobaoSimbaSalestarAdgroupUpdateAPIRequest对象

func (TaobaoSimbaSalestarAdgroupUpdateAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaSalestarAdgroupUpdateAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarAdgroupUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarAdgroupUpdateAPIRequest) GetOnlineStatus

GetOnlineStatus OnlineStatus Getter

func (*TaobaoSimbaSalestarAdgroupUpdateAPIRequest) SetAdgroupId

func (r *TaobaoSimbaSalestarAdgroupUpdateAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaSalestarAdgroupUpdateAPIRequest) SetOnlineStatus

func (r *TaobaoSimbaSalestarAdgroupUpdateAPIRequest) SetOnlineStatus(_onlineStatus string) error

SetOnlineStatus is OnlineStatus Setter 用户设置的上下线状态 offline-下线(暂停竞价); online-上线;默认为online

type TaobaoSimbaSalestarAdgroupUpdateAPIResponse

type TaobaoSimbaSalestarAdgroupUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarAdgroupUpdateAPIResponseModel
}

TaobaoSimbaSalestarAdgroupUpdateAPIResponse 销量明星更新一个推广组的信息 API返回值 taobao.simba.salestar.adgroup.update

更新一个推广组的信息,可以设置 是否上线

type TaobaoSimbaSalestarAdgroupUpdateAPIResponseModel

type TaobaoSimbaSalestarAdgroupUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_salestar_adgroup_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 被修改的推广组
	Adgroup *ADGroup `json:"adgroup,omitempty" xml:"adgroup,omitempty"`
}

TaobaoSimbaSalestarAdgroupUpdateAPIResponseModel is 销量明星更新一个推广组的信息 成功返回结果

type TaobaoSimbaSalestarCampaignBudgetUpdateAPIRequest

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

TaobaoSimbaSalestarCampaignBudgetUpdateAPIRequest 销量明星跟新预算相关接口 API请求 taobao.simba.salestar.campaign.budget.update

更新一个推广计划的日限额

func NewTaobaoSimbaSalestarCampaignBudgetUpdateRequest

func NewTaobaoSimbaSalestarCampaignBudgetUpdateRequest() *TaobaoSimbaSalestarCampaignBudgetUpdateAPIRequest

NewTaobaoSimbaSalestarCampaignBudgetUpdateRequest 初始化TaobaoSimbaSalestarCampaignBudgetUpdateAPIRequest对象

func (TaobaoSimbaSalestarCampaignBudgetUpdateAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarCampaignBudgetUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarCampaignBudgetUpdateAPIRequest) GetBudget

GetBudget Budget Getter

func (TaobaoSimbaSalestarCampaignBudgetUpdateAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (*TaobaoSimbaSalestarCampaignBudgetUpdateAPIRequest) SetBudget

SetBudget is Budget Setter 如果为空则取消限额;否则必须为整数,单位是元,不得小于30;

func (*TaobaoSimbaSalestarCampaignBudgetUpdateAPIRequest) SetCampaignId

func (r *TaobaoSimbaSalestarCampaignBudgetUpdateAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 推广计划Id

type TaobaoSimbaSalestarCampaignBudgetUpdateAPIResponse

type TaobaoSimbaSalestarCampaignBudgetUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarCampaignBudgetUpdateAPIResponseModel
}

TaobaoSimbaSalestarCampaignBudgetUpdateAPIResponse 销量明星跟新预算相关接口 API返回值 taobao.simba.salestar.campaign.budget.update

更新一个推广计划的日限额

type TaobaoSimbaSalestarCampaignBudgetUpdateAPIResponseModel

type TaobaoSimbaSalestarCampaignBudgetUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_salestar_campaign_budget_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 修改后的推广计划日限额
	CampaignBudget *CampaignBudget `json:"campaign_budget,omitempty" xml:"campaign_budget,omitempty"`
}

TaobaoSimbaSalestarCampaignBudgetUpdateAPIResponseModel is 销量明星跟新预算相关接口 成功返回结果

type TaobaoSimbaSalestarCreativeAddAPIRequest

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

TaobaoSimbaSalestarCreativeAddAPIRequest (新)新建创意 API请求 taobao.simba.salestar.creative.add

创建一个创意

func NewTaobaoSimbaSalestarCreativeAddRequest

func NewTaobaoSimbaSalestarCreativeAddRequest() *TaobaoSimbaSalestarCreativeAddAPIRequest

NewTaobaoSimbaSalestarCreativeAddRequest 初始化TaobaoSimbaSalestarCreativeAddAPIRequest对象

func (TaobaoSimbaSalestarCreativeAddAPIRequest) GetAdExaminationCode added in v1.2.5

func (r TaobaoSimbaSalestarCreativeAddAPIRequest) GetAdExaminationCode() string

GetAdExaminationCode AdExaminationCode Getter

func (TaobaoSimbaSalestarCreativeAddAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaSalestarCreativeAddAPIRequest) GetApiMethodName

func (r TaobaoSimbaSalestarCreativeAddAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarCreativeAddAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarCreativeAddAPIRequest) GetImgUrl

GetImgUrl ImgUrl Getter

func (TaobaoSimbaSalestarCreativeAddAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSalestarCreativeAddAPIRequest) GetTitle

GetTitle Title Getter

func (*TaobaoSimbaSalestarCreativeAddAPIRequest) SetAdExaminationCode added in v1.2.5

func (r *TaobaoSimbaSalestarCreativeAddAPIRequest) SetAdExaminationCode(_adExaminationCode string) error

SetAdExaminationCode is AdExaminationCode Setter 创意广审编号

func (*TaobaoSimbaSalestarCreativeAddAPIRequest) SetAdgroupId

func (r *TaobaoSimbaSalestarCreativeAddAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaSalestarCreativeAddAPIRequest) SetImgUrl

SetImgUrl is ImgUrl Setter 创意图片地址,必须是推广组对应商品的图片之一

func (*TaobaoSimbaSalestarCreativeAddAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSimbaSalestarCreativeAddAPIRequest) SetTitle

SetTitle is Title Setter 创意标题,最多20个汉字

type TaobaoSimbaSalestarCreativeAddAPIResponse

type TaobaoSimbaSalestarCreativeAddAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarCreativeAddAPIResponseModel
}

TaobaoSimbaSalestarCreativeAddAPIResponse (新)新建创意 API返回值 taobao.simba.salestar.creative.add

创建一个创意

type TaobaoSimbaSalestarCreativeAddAPIResponseModel

type TaobaoSimbaSalestarCreativeAddAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_salestar_creative_add_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 新增加的创意对象
	Creative *Creative `json:"creative,omitempty" xml:"creative,omitempty"`
}

TaobaoSimbaSalestarCreativeAddAPIResponseModel is (新)新建创意 成功返回结果

type TaobaoSimbaSalestarCreativeDeleteAPIRequest

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

TaobaoSimbaSalestarCreativeDeleteAPIRequest (新)销量明星删除创意相关接口 API请求 taobao.simba.salestar.creative.delete

删除一个创意

func NewTaobaoSimbaSalestarCreativeDeleteRequest

func NewTaobaoSimbaSalestarCreativeDeleteRequest() *TaobaoSimbaSalestarCreativeDeleteAPIRequest

NewTaobaoSimbaSalestarCreativeDeleteRequest 初始化TaobaoSimbaSalestarCreativeDeleteAPIRequest对象

func (TaobaoSimbaSalestarCreativeDeleteAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarCreativeDeleteAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarCreativeDeleteAPIRequest) GetCreativeId

GetCreativeId CreativeId Getter

func (*TaobaoSimbaSalestarCreativeDeleteAPIRequest) SetCreativeId

func (r *TaobaoSimbaSalestarCreativeDeleteAPIRequest) SetCreativeId(_creativeId int64) error

SetCreativeId is CreativeId Setter 创意Id

type TaobaoSimbaSalestarCreativeDeleteAPIResponse

type TaobaoSimbaSalestarCreativeDeleteAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarCreativeDeleteAPIResponseModel
}

TaobaoSimbaSalestarCreativeDeleteAPIResponse (新)销量明星删除创意相关接口 API返回值 taobao.simba.salestar.creative.delete

删除一个创意

type TaobaoSimbaSalestarCreativeDeleteAPIResponseModel

type TaobaoSimbaSalestarCreativeDeleteAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_salestar_creative_delete_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 被删除的创意对象
	Creative *Creative `json:"creative,omitempty" xml:"creative,omitempty"`
}

TaobaoSimbaSalestarCreativeDeleteAPIResponseModel is (新)销量明星删除创意相关接口 成功返回结果

type TaobaoSimbaSalestarCreativeUpdateAPIRequest

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

TaobaoSimbaSalestarCreativeUpdateAPIRequest 销量明星更新创意相关接口 API请求 taobao.simba.salestar.creative.update

更新一个创意的信息,可以设置创意标题、创意图片

func NewTaobaoSimbaSalestarCreativeUpdateRequest

func NewTaobaoSimbaSalestarCreativeUpdateRequest() *TaobaoSimbaSalestarCreativeUpdateAPIRequest

NewTaobaoSimbaSalestarCreativeUpdateRequest 初始化TaobaoSimbaSalestarCreativeUpdateAPIRequest对象

func (TaobaoSimbaSalestarCreativeUpdateAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaSalestarCreativeUpdateAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarCreativeUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarCreativeUpdateAPIRequest) GetCreativeId

GetCreativeId CreativeId Getter

func (TaobaoSimbaSalestarCreativeUpdateAPIRequest) GetImgUrl

GetImgUrl ImgUrl Getter

func (TaobaoSimbaSalestarCreativeUpdateAPIRequest) GetPictureId

GetPictureId PictureId Getter

func (TaobaoSimbaSalestarCreativeUpdateAPIRequest) GetTitle

GetTitle Title Getter

func (*TaobaoSimbaSalestarCreativeUpdateAPIRequest) SetAdgroupId

func (r *TaobaoSimbaSalestarCreativeUpdateAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaSalestarCreativeUpdateAPIRequest) SetCreativeId

func (r *TaobaoSimbaSalestarCreativeUpdateAPIRequest) SetCreativeId(_creativeId int64) error

SetCreativeId is CreativeId Setter 创意Id

func (*TaobaoSimbaSalestarCreativeUpdateAPIRequest) SetImgUrl

SetImgUrl is ImgUrl Setter 创意图片地址,必须是推广组对应商品的图片之一

func (*TaobaoSimbaSalestarCreativeUpdateAPIRequest) SetPictureId

func (r *TaobaoSimbaSalestarCreativeUpdateAPIRequest) SetPictureId(_pictureId int64) error

SetPictureId is PictureId Setter 如果用户开通了创意本地上传图片功能的,可以使用该用户图片空间的图片来修改创意,pictureId为图片空间中图片的pictureId,img_url为图片空间中图片链接地址,如果是使用的主图或副图修改创意,则pictureId必须为空

func (*TaobaoSimbaSalestarCreativeUpdateAPIRequest) SetTitle

SetTitle is Title Setter 创意标题,最多20个汉字

type TaobaoSimbaSalestarCreativeUpdateAPIResponse

type TaobaoSimbaSalestarCreativeUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarCreativeUpdateAPIResponseModel
}

TaobaoSimbaSalestarCreativeUpdateAPIResponse 销量明星更新创意相关接口 API返回值 taobao.simba.salestar.creative.update

更新一个创意的信息,可以设置创意标题、创意图片

type TaobaoSimbaSalestarCreativeUpdateAPIResponseModel

type TaobaoSimbaSalestarCreativeUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_salestar_creative_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 创意修改记录对象
	Creativerecord *CreativeRecord `json:"creativerecord,omitempty" xml:"creativerecord,omitempty"`
}

TaobaoSimbaSalestarCreativeUpdateAPIResponseModel is 销量明星更新创意相关接口 成功返回结果

type TaobaoSimbaSalestarCreativesGetAPIRequest

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

TaobaoSimbaSalestarCreativesGetAPIRequest (新)批量获取创意 API请求 taobao.simba.salestar.creatives.get

取得一个推广组的所有创意或者根据一个创意Id列表取得一组创意;<br/>如果同时提供了推广组Id和创意id列表,则优先使用推广组Id;

func NewTaobaoSimbaSalestarCreativesGetRequest

func NewTaobaoSimbaSalestarCreativesGetRequest() *TaobaoSimbaSalestarCreativesGetAPIRequest

NewTaobaoSimbaSalestarCreativesGetRequest 初始化TaobaoSimbaSalestarCreativesGetAPIRequest对象

func (TaobaoSimbaSalestarCreativesGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaSalestarCreativesGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarCreativesGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarCreativesGetAPIRequest) GetCreativeIds

func (r TaobaoSimbaSalestarCreativesGetAPIRequest) GetCreativeIds() []int64

GetCreativeIds CreativeIds Getter

func (TaobaoSimbaSalestarCreativesGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaSalestarCreativesGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaSalestarCreativesGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaSalestarCreativesGetAPIRequest) SetCreativeIds

func (r *TaobaoSimbaSalestarCreativesGetAPIRequest) SetCreativeIds(_creativeIds []int64) error

SetCreativeIds is CreativeIds Setter 创意Id数组,最多200个

func (*TaobaoSimbaSalestarCreativesGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaSalestarCreativesGetAPIResponse

type TaobaoSimbaSalestarCreativesGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarCreativesGetAPIResponseModel
}

TaobaoSimbaSalestarCreativesGetAPIResponse (新)批量获取创意 API返回值 taobao.simba.salestar.creatives.get

取得一个推广组的所有创意或者根据一个创意Id列表取得一组创意;<br/>如果同时提供了推广组Id和创意id列表,则优先使用推广组Id;

type TaobaoSimbaSalestarCreativesGetAPIResponseModel

type TaobaoSimbaSalestarCreativesGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_salestar_creatives_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 创意对象列表
	Creatives []Creative `json:"creatives,omitempty" xml:"creatives>creative,omitempty"`
}

TaobaoSimbaSalestarCreativesGetAPIResponseModel is (新)批量获取创意 成功返回结果

type TaobaoSimbaSalestarKeywordsDeleteAPIRequest

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

TaobaoSimbaSalestarKeywordsDeleteAPIRequest 销量明星关键词删除 API请求 taobao.simba.salestar.keywords.delete

(新)关键词删除相关接口

func NewTaobaoSimbaSalestarKeywordsDeleteRequest

func NewTaobaoSimbaSalestarKeywordsDeleteRequest() *TaobaoSimbaSalestarKeywordsDeleteAPIRequest

NewTaobaoSimbaSalestarKeywordsDeleteRequest 初始化TaobaoSimbaSalestarKeywordsDeleteAPIRequest对象

func (TaobaoSimbaSalestarKeywordsDeleteAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarKeywordsDeleteAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarKeywordsDeleteAPIRequest) GetBidwordIds

GetBidwordIds BidwordIds Getter

func (*TaobaoSimbaSalestarKeywordsDeleteAPIRequest) SetBidwordIds

func (r *TaobaoSimbaSalestarKeywordsDeleteAPIRequest) SetBidwordIds(_bidwordIds []string) error

SetBidwordIds is BidwordIds Setter 关键词ids

type TaobaoSimbaSalestarKeywordsDeleteAPIResponse

type TaobaoSimbaSalestarKeywordsDeleteAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarKeywordsDeleteAPIResponseModel
}

TaobaoSimbaSalestarKeywordsDeleteAPIResponse 销量明星关键词删除 API返回值 taobao.simba.salestar.keywords.delete

(新)关键词删除相关接口

type TaobaoSimbaSalestarKeywordsDeleteAPIResponseModel

type TaobaoSimbaSalestarKeywordsDeleteAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_salestar_keywords_delete_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 成功删除条数
	Results int64 `json:"results,omitempty" xml:"results,omitempty"`
	// 删除成功
	IsSuccess bool `json:"is_success,omitempty" xml:"is_success,omitempty"`
}

TaobaoSimbaSalestarKeywordsDeleteAPIResponseModel is 销量明星关键词删除 成功返回结果

type TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest

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

TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest (新)销量明星质量分相关接口 API请求 taobao.simba.salestar.keywords.qscore.split.get

获取关键词新的质量分

func NewTaobaoSimbaSalestarKeywordsQscoreSplitGetRequest

func NewTaobaoSimbaSalestarKeywordsQscoreSplitGetRequest() *TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest

NewTaobaoSimbaSalestarKeywordsQscoreSplitGetRequest 初始化TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest对象

func (TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest) GetAdGroupId

GetAdGroupId AdGroupId Getter

func (TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest) GetBidwordIds

GetBidwordIds BidwordIds Getter

func (TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest) SetAdGroupId

SetAdGroupId is AdGroupId Setter 推广组id

func (*TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest) SetBidwordIds

func (r *TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest) SetBidwordIds(_bidwordIds []string) error

SetBidwordIds is BidwordIds Setter 词id数组(最多批量获取20个)

func (*TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIRequest) SetNick

SetNick is Nick Setter 账号昵称

type TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIResponse

type TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIResponseModel
}

TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIResponse (新)销量明星质量分相关接口 API返回值 taobao.simba.salestar.keywords.qscore.split.get

获取关键词新的质量分

type TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIResponseModel

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

TaobaoSimbaSalestarKeywordsQscoreSplitGetAPIResponseModel is (新)销量明星质量分相关接口 成功返回结果

type TaobaoSimbaSalestarKeywordsQscoreSplitGetResultDto

type TaobaoSimbaSalestarKeywordsQscoreSplitGetResultDto struct {
	// 返回成功/错误码
	Key string `json:"key,omitempty" xml:"key,omitempty"`
	// 返回信息
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 返回新质量分实体信息
	Result *QScoreSplitDto `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoSimbaSalestarKeywordsQscoreSplitGetResultDto 结构体

type TaobaoSimbaSalestarKeywordsRecommendGetAPIRequest

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

TaobaoSimbaSalestarKeywordsRecommendGetAPIRequest 销量明星api相关接口 API请求 taobao.simba.salestar.keywords.recommend.get

取得一个推广组的推荐关键词列表

func NewTaobaoSimbaSalestarKeywordsRecommendGetRequest

func NewTaobaoSimbaSalestarKeywordsRecommendGetRequest() *TaobaoSimbaSalestarKeywordsRecommendGetAPIRequest

NewTaobaoSimbaSalestarKeywordsRecommendGetRequest 初始化TaobaoSimbaSalestarKeywordsRecommendGetAPIRequest对象

func (TaobaoSimbaSalestarKeywordsRecommendGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaSalestarKeywordsRecommendGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSalestarKeywordsRecommendGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarKeywordsRecommendGetAPIRequest) GetProductId

GetProductId ProductId Getter

func (*TaobaoSimbaSalestarKeywordsRecommendGetAPIRequest) SetAdgroupId

SetAdgroupId is AdgroupId Setter 推广组ID

func (*TaobaoSimbaSalestarKeywordsRecommendGetAPIRequest) SetProductId

SetProductId is ProductId Setter 产品类型101001005代表标准推广,101001014代表销量明星

type TaobaoSimbaSalestarKeywordsRecommendGetAPIResponse

type TaobaoSimbaSalestarKeywordsRecommendGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSalestarKeywordsRecommendGetAPIResponseModel
}

TaobaoSimbaSalestarKeywordsRecommendGetAPIResponse 销量明星api相关接口 API返回值 taobao.simba.salestar.keywords.recommend.get

取得一个推广组的推荐关键词列表

type TaobaoSimbaSalestarKeywordsRecommendGetAPIResponseModel

type TaobaoSimbaSalestarKeywordsRecommendGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_salestar_keywords_recommend_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推荐词分页对象,当输入的页码大于最大数值时,将返回最大的page_no值,并且结果中的数据列表为空值
	RecommendWords *RecommendWordPage `json:"recommend_words,omitempty" xml:"recommend_words,omitempty"`
}

TaobaoSimbaSalestarKeywordsRecommendGetAPIResponseModel is 销量明星api相关接口 成功返回结果

type TaobaoSimbaSearchcrowdBatchAddAPIRequest

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

TaobaoSimbaSearchcrowdBatchAddAPIRequest 推广单元增加搜索人群 API请求 taobao.simba.searchcrowd.batch.add

推广单元新增搜索人群

func NewTaobaoSimbaSearchcrowdBatchAddRequest

func NewTaobaoSimbaSearchcrowdBatchAddRequest() *TaobaoSimbaSearchcrowdBatchAddAPIRequest

NewTaobaoSimbaSearchcrowdBatchAddRequest 初始化TaobaoSimbaSearchcrowdBatchAddAPIRequest对象

func (TaobaoSimbaSearchcrowdBatchAddAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaSearchcrowdBatchAddAPIRequest) GetAdgroupTargetingTags

func (r TaobaoSimbaSearchcrowdBatchAddAPIRequest) GetAdgroupTargetingTags() string

GetAdgroupTargetingTags AdgroupTargetingTags Getter

func (TaobaoSimbaSearchcrowdBatchAddAPIRequest) GetApiMethodName

func (r TaobaoSimbaSearchcrowdBatchAddAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSearchcrowdBatchAddAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSearchcrowdBatchAddAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaSearchcrowdBatchAddAPIRequest) SetAdgroupId

func (r *TaobaoSimbaSearchcrowdBatchAddAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广单元id

func (*TaobaoSimbaSearchcrowdBatchAddAPIRequest) SetAdgroupTargetingTags

func (r *TaobaoSimbaSearchcrowdBatchAddAPIRequest) SetAdgroupTargetingTags(_adgroupTargetingTags string) error

SetAdgroupTargetingTags is AdgroupTargetingTags Setter 新增人群信息,批量接口,入参为list,溢价(discount)范围为[105,400]

func (*TaobaoSimbaSearchcrowdBatchAddAPIRequest) SetNick

SetNick is Nick Setter 被操作者的淘宝昵称

type TaobaoSimbaSearchcrowdBatchAddAPIResponse

type TaobaoSimbaSearchcrowdBatchAddAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSearchcrowdBatchAddAPIResponseModel
}

TaobaoSimbaSearchcrowdBatchAddAPIResponse 推广单元增加搜索人群 API返回值 taobao.simba.searchcrowd.batch.add

推广单元新增搜索人群

type TaobaoSimbaSearchcrowdBatchAddAPIResponseModel

type TaobaoSimbaSearchcrowdBatchAddAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_searchcrowd_batch_add_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 定向信息
	Adgrouptargetingtags []AdgroupTargetingTagDto `json:"adgrouptargetingtags,omitempty" xml:"adgrouptargetingtags>adgroup_targeting_tag_dto,omitempty"`
}

TaobaoSimbaSearchcrowdBatchAddAPIResponseModel is 推广单元增加搜索人群 成功返回结果

type TaobaoSimbaSearchtagtemplateGetAPIRequest

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

TaobaoSimbaSearchtagtemplateGetAPIRequest 获取搜索人群TOP用户可添加人群信息 API请求 taobao.simba.searchtagtemplate.get

获取搜索人群用户可添加人群信息

func NewTaobaoSimbaSearchtagtemplateGetRequest

func NewTaobaoSimbaSearchtagtemplateGetRequest() *TaobaoSimbaSearchtagtemplateGetAPIRequest

NewTaobaoSimbaSearchtagtemplateGetRequest 初始化TaobaoSimbaSearchtagtemplateGetAPIRequest对象

func (TaobaoSimbaSearchtagtemplateGetAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSearchtagtemplateGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSearchtagtemplateGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSearchtagtemplateGetAPIRequest) GetSubNick

GetSubNick SubNick Getter

func (*TaobaoSimbaSearchtagtemplateGetAPIRequest) SetNick

SetNick is Nick Setter 被操作者的淘宝昵称

func (*TaobaoSimbaSearchtagtemplateGetAPIRequest) SetSubNick

func (r *TaobaoSimbaSearchtagtemplateGetAPIRequest) SetSubNick(_subNick string) error

SetSubNick is SubNick Setter 子帐号nick

type TaobaoSimbaSearchtagtemplateGetAPIResponse

type TaobaoSimbaSearchtagtemplateGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSearchtagtemplateGetAPIResponseModel
}

TaobaoSimbaSearchtagtemplateGetAPIResponse 获取搜索人群TOP用户可添加人群信息 API返回值 taobao.simba.searchtagtemplate.get

获取搜索人群用户可添加人群信息

type TaobaoSimbaSearchtagtemplateGetAPIResponseModel

type TaobaoSimbaSearchtagtemplateGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_searchtagtemplate_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	TemplateList []TaobaoSimbaSearchtagtemplateGetResult `json:"template_list,omitempty" xml:"template_list>taobao_simba_searchtagtemplate_get_result,omitempty"`
}

TaobaoSimbaSearchtagtemplateGetAPIResponseModel is 获取搜索人群TOP用户可添加人群信息 成功返回结果

type TaobaoSimbaSearchtagtemplateGetResult

type TaobaoSimbaSearchtagtemplateGetResult struct {
	// DimDtOs
	DimList []DimDtOs `json:"dim_list,omitempty" xml:"dim_list>dim_dt_os,omitempty"`
	// 人群模版名称
	Name string `json:"name,omitempty" xml:"name,omitempty"`
	// 人群模版id
	Id int64 `json:"id,omitempty" xml:"id,omitempty"`
	// 人群类型
	Type int64 `json:"type,omitempty" xml:"type,omitempty"`
}

TaobaoSimbaSearchtagtemplateGetResult 结构体

type TaobaoSimbaSerchcrowdBatchDeleteAPIRequest

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

TaobaoSimbaSerchcrowdBatchDeleteAPIRequest 单品搜索人群批量取消溢价 API请求 taobao.simba.serchcrowd.batch.delete

删除单品搜索人群溢价功能

func NewTaobaoSimbaSerchcrowdBatchDeleteRequest

func NewTaobaoSimbaSerchcrowdBatchDeleteRequest() *TaobaoSimbaSerchcrowdBatchDeleteAPIRequest

NewTaobaoSimbaSerchcrowdBatchDeleteRequest 初始化TaobaoSimbaSerchcrowdBatchDeleteAPIRequest对象

func (TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) GetAdgroupCrowdIds

func (r TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) GetAdgroupCrowdIds() []string

GetAdgroupCrowdIds AdgroupCrowdIds Getter

func (TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) GetSubNick

GetSubNick SubNick Getter

func (*TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) SetAdgroupCrowdIds

func (r *TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) SetAdgroupCrowdIds(_adgroupCrowdIds []string) error

SetAdgroupCrowdIds is AdgroupCrowdIds Setter 需要删除的人群id

func (*TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) SetNick

SetNick is Nick Setter 被操作者的淘宝昵称

func (*TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) SetSubNick

SetSubNick is SubNick Setter 子帐号nick

type TaobaoSimbaSerchcrowdBatchDeleteAPIResponse

type TaobaoSimbaSerchcrowdBatchDeleteAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSerchcrowdBatchDeleteAPIResponseModel
}

TaobaoSimbaSerchcrowdBatchDeleteAPIResponse 单品搜索人群批量取消溢价 API返回值 taobao.simba.serchcrowd.batch.delete

删除单品搜索人群溢价功能

type TaobaoSimbaSerchcrowdBatchDeleteAPIResponseModel

type TaobaoSimbaSerchcrowdBatchDeleteAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_serchcrowd_batch_delete_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	DeleteList []string `json:"delete_list,omitempty" xml:"delete_list>string,omitempty"`
	// errorDTOList
	ErrorDTOList []string `json:"error_d_t_o_list,omitempty" xml:"error_d_t_o_list>string,omitempty"`
	// key
	Key string `json:"key,omitempty" xml:"key,omitempty"`
}

TaobaoSimbaSerchcrowdBatchDeleteAPIResponseModel is 单品搜索人群批量取消溢价 成功返回结果

type TaobaoSimbaSerchcrowdGetAPIRequest

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

TaobaoSimbaSerchcrowdGetAPIRequest 根据推广单元id获取搜索溢价人群 API请求 taobao.simba.serchcrowd.get

根据推广单元id获取搜索溢价人群

func NewTaobaoSimbaSerchcrowdGetRequest

func NewTaobaoSimbaSerchcrowdGetRequest() *TaobaoSimbaSerchcrowdGetAPIRequest

NewTaobaoSimbaSerchcrowdGetRequest 初始化TaobaoSimbaSerchcrowdGetAPIRequest对象

func (TaobaoSimbaSerchcrowdGetAPIRequest) GetAdgroupId

func (r TaobaoSimbaSerchcrowdGetAPIRequest) GetAdgroupId() int64

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaSerchcrowdGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaSerchcrowdGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSerchcrowdGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSerchcrowdGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaSerchcrowdGetAPIRequest) SetAdgroupId

func (r *TaobaoSimbaSerchcrowdGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广单元id

func (*TaobaoSimbaSerchcrowdGetAPIRequest) SetNick

SetNick is Nick Setter 被操作者的淘宝昵称

type TaobaoSimbaSerchcrowdGetAPIResponse

type TaobaoSimbaSerchcrowdGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSerchcrowdGetAPIResponseModel
}

TaobaoSimbaSerchcrowdGetAPIResponse 根据推广单元id获取搜索溢价人群 API返回值 taobao.simba.serchcrowd.get

根据推广单元id获取搜索溢价人群

type TaobaoSimbaSerchcrowdGetAPIResponseModel

type TaobaoSimbaSerchcrowdGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_serchcrowd_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	Adgrouptargetingtags []TaobaoSimbaSerchcrowdGetResult `json:"adgrouptargetingtags,omitempty" xml:"adgrouptargetingtags>taobao_simba_serchcrowd_get_result,omitempty"`
}

TaobaoSimbaSerchcrowdGetAPIResponseModel is 根据推广单元id获取搜索溢价人群 成功返回结果

type TaobaoSimbaSerchcrowdGetResult

type TaobaoSimbaSerchcrowdGetResult struct {
	// 出价方式1:溢价;0:出价
	PriceMode int64 `json:"price_mode,omitempty" xml:"price_mode,omitempty"`
	// 返回的溢价比例,乘的关系,discount=121,代表溢价21%
	Discount int64 `json:"discount,omitempty" xml:"discount,omitempty"`
	// 人群信息
	Crowd *CrowdDto `json:"crowd,omitempty" xml:"crowd,omitempty"`
	// 定向id,出价删除 改价,修改状态时用
	Id int64 `json:"id,omitempty" xml:"id,omitempty"`
	// 人群是否溢价1:不溢价;0:溢价
	IsDefaultPrice int64 `json:"is_default_price,omitempty" xml:"is_default_price,omitempty"`
	// 人群上下线状态0:暂停, 1:启用
	OnlineStatus int64 `json:"online_status,omitempty" xml:"online_status,omitempty"`
}

TaobaoSimbaSerchcrowdGetResult 结构体

type TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest

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

TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest 单品推广搜索人群修改溢价 API请求 taobao.simba.serchcrowd.price.batch.update

单品推广搜索人群修改溢价, 不支持跨推广单元修改

func NewTaobaoSimbaSerchcrowdPriceBatchUpdateRequest

func NewTaobaoSimbaSerchcrowdPriceBatchUpdateRequest() *TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest

NewTaobaoSimbaSerchcrowdPriceBatchUpdateRequest 初始化TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest对象

func (TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) GetAdgroupCrowdIds

GetAdgroupCrowdIds AdgroupCrowdIds Getter

func (TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) GetDiscount

GetDiscount Discount Getter

func (TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) GetSubNick

GetSubNick SubNick Getter

func (*TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) SetAdgroupCrowdIds

func (r *TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) SetAdgroupCrowdIds(_adgroupCrowdIds []string) error

SetAdgroupCrowdIds is AdgroupCrowdIds Setter 需要修改出价的人群包id,批量传入的时候用,分割

func (*TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) SetAdgroupId

func (r *TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广单元id

func (*TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) SetDiscount

SetDiscount is Discount Setter 人群溢价比例,溢价范围[5,300]

func (*TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) SetNick

SetNick is Nick Setter 被操作者的淘宝昵称

func (*TaobaoSimbaSerchcrowdPriceBatchUpdateAPIRequest) SetSubNick

SetSubNick is SubNick Setter 子帐号nick

type TaobaoSimbaSerchcrowdPriceBatchUpdateAPIResponse

type TaobaoSimbaSerchcrowdPriceBatchUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSerchcrowdPriceBatchUpdateAPIResponseModel
}

TaobaoSimbaSerchcrowdPriceBatchUpdateAPIResponse 单品推广搜索人群修改溢价 API返回值 taobao.simba.serchcrowd.price.batch.update

单品推广搜索人群修改溢价, 不支持跨推广单元修改

type TaobaoSimbaSerchcrowdPriceBatchUpdateAPIResponseModel

type TaobaoSimbaSerchcrowdPriceBatchUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_serchcrowd_price_batch_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	Adgrouptargetingtags []AdgroupTargetingTagDto `json:"adgrouptargetingtags,omitempty" xml:"adgrouptargetingtags>adgroup_targeting_tag_dto,omitempty"`
}

TaobaoSimbaSerchcrowdPriceBatchUpdateAPIResponseModel is 单品推广搜索人群修改溢价 成功返回结果

type TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest

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

TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest 单品搜索人群修改状态 API请求 taobao.simba.serchcrowd.state.batch.update

暂停或启用单品推广搜索人群溢价

func NewTaobaoSimbaSerchcrowdStateBatchUpdateRequest

func NewTaobaoSimbaSerchcrowdStateBatchUpdateRequest() *TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest

NewTaobaoSimbaSerchcrowdStateBatchUpdateRequest 初始化TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest对象

func (TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) GetAdgroupCrowdIds

GetAdgroupCrowdIds AdgroupCrowdIds Getter

func (TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) GetApiMethodName

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) GetState

GetState State Getter

func (*TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) SetAdgroupCrowdIds

func (r *TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) SetAdgroupCrowdIds(_adgroupCrowdIds []string) error

SetAdgroupCrowdIds is AdgroupCrowdIds Setter 需要修改出价的人群包id,批量传入时用,分割

func (*TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) SetAdgroupId

func (r *TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广单元id

func (*TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) SetNick

SetNick is Nick Setter 被操作者的淘宝昵称

func (*TaobaoSimbaSerchcrowdStateBatchUpdateAPIRequest) SetState

SetState is State Setter 人群状态,0:暂停;1:启用

type TaobaoSimbaSerchcrowdStateBatchUpdateAPIResponse

type TaobaoSimbaSerchcrowdStateBatchUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaSerchcrowdStateBatchUpdateAPIResponseModel
}

TaobaoSimbaSerchcrowdStateBatchUpdateAPIResponse 单品搜索人群修改状态 API返回值 taobao.simba.serchcrowd.state.batch.update

暂停或启用单品推广搜索人群溢价

type TaobaoSimbaSerchcrowdStateBatchUpdateAPIResponseModel

type TaobaoSimbaSerchcrowdStateBatchUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_serchcrowd_state_batch_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// result
	Adgrouptargetingtags []AdgroupTargetingTagDto `json:"adgrouptargetingtags,omitempty" xml:"adgrouptargetingtags>adgroup_targeting_tag_dto,omitempty"`
	// 部分失败时返回错误List
	ErrorList []string `json:"error_list,omitempty" xml:"error_list>string,omitempty"`
}

TaobaoSimbaSerchcrowdStateBatchUpdateAPIResponseModel is 单品搜索人群修改状态 成功返回结果

type TaobaoSimbaToolsItemsTopGetAPIRequest

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

TaobaoSimbaToolsItemsTopGetAPIRequest 取得一个关键词的推广组排名列表 API请求 taobao.simba.tools.items.top.get

取得一个关键词的推广组排名列表

func NewTaobaoSimbaToolsItemsTopGetRequest

func NewTaobaoSimbaToolsItemsTopGetRequest() *TaobaoSimbaToolsItemsTopGetAPIRequest

NewTaobaoSimbaToolsItemsTopGetRequest 初始化TaobaoSimbaToolsItemsTopGetAPIRequest对象

func (TaobaoSimbaToolsItemsTopGetAPIRequest) GetApiMethodName

func (r TaobaoSimbaToolsItemsTopGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSimbaToolsItemsTopGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaToolsItemsTopGetAPIRequest) GetIp

GetIp Ip Getter

func (TaobaoSimbaToolsItemsTopGetAPIRequest) GetKeyword

GetKeyword Keyword Getter

func (TaobaoSimbaToolsItemsTopGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSimbaToolsItemsTopGetAPIRequest) SetIp

SetIp is Ip Setter 输入的必须是一个符合ipv4或者ipv6格式的IP地址

func (*TaobaoSimbaToolsItemsTopGetAPIRequest) SetKeyword

func (r *TaobaoSimbaToolsItemsTopGetAPIRequest) SetKeyword(_keyword string) error

SetKeyword is Keyword Setter 关键词

func (*TaobaoSimbaToolsItemsTopGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSimbaToolsItemsTopGetAPIResponse

type TaobaoSimbaToolsItemsTopGetAPIResponse struct {
	model.CommonResponse
	TaobaoSimbaToolsItemsTopGetAPIResponseModel
}

TaobaoSimbaToolsItemsTopGetAPIResponse 取得一个关键词的推广组排名列表 API返回值 taobao.simba.tools.items.top.get

取得一个关键词的推广组排名列表

type TaobaoSimbaToolsItemsTopGetAPIResponseModel

type TaobaoSimbaToolsItemsTopGetAPIResponseModel struct {
	XMLName xml.Name `xml:"simba_tools_items_top_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广组信息列表
	Rankeditems []RankedItem `json:"rankeditems,omitempty" xml:"rankeditems>ranked_item,omitempty"`
}

TaobaoSimbaToolsItemsTopGetAPIResponseModel is 取得一个关键词的推广组排名列表 成功返回结果

type TaobaoSubwayAccountOfflineFindAPIRequest added in v1.2.5

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

TaobaoSubwayAccountOfflineFindAPIRequest 获取账户历史多日汇总报表 API请求 taobao.subway.account.offline.find

获取账户历史报表

func NewTaobaoSubwayAccountOfflineFindRequest added in v1.2.5

func NewTaobaoSubwayAccountOfflineFindRequest() *TaobaoSubwayAccountOfflineFindAPIRequest

NewTaobaoSubwayAccountOfflineFindRequest 初始化TaobaoSubwayAccountOfflineFindAPIRequest对象

func (TaobaoSubwayAccountOfflineFindAPIRequest) GetApiMethodName added in v1.2.5

func (r TaobaoSubwayAccountOfflineFindAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayAccountOfflineFindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayAccountOfflineFindAPIRequest) GetEffect added in v1.2.5

GetEffect Effect Getter

func (TaobaoSubwayAccountOfflineFindAPIRequest) GetEndTime added in v1.2.5

GetEndTime EndTime Getter

func (TaobaoSubwayAccountOfflineFindAPIRequest) GetOffset added in v1.2.5

GetOffset Offset Getter

func (TaobaoSubwayAccountOfflineFindAPIRequest) GetPageSize added in v1.2.5

GetPageSize PageSize Getter

func (TaobaoSubwayAccountOfflineFindAPIRequest) GetStartTime added in v1.2.5

GetStartTime StartTime Getter

func (*TaobaoSubwayAccountOfflineFindAPIRequest) SetEffect added in v1.2.5

SetEffect is Effect Setter 转化周期-1-15累计天数,1-1转化天数,3-3转化天数,7-7转化天数,15-15转化天数,不传默认为15累计天数

func (*TaobaoSubwayAccountOfflineFindAPIRequest) SetEndTime added in v1.2.5

func (r *TaobaoSubwayAccountOfflineFindAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayAccountOfflineFindAPIRequest) SetOffset added in v1.2.5

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayAccountOfflineFindAPIRequest) SetPageSize added in v1.2.5

func (r *TaobaoSubwayAccountOfflineFindAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayAccountOfflineFindAPIRequest) SetStartTime added in v1.2.5

func (r *TaobaoSubwayAccountOfflineFindAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayAccountOfflineFindAPIResponse added in v1.2.5

type TaobaoSubwayAccountOfflineFindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayAccountOfflineFindAPIResponseModel
}

TaobaoSubwayAccountOfflineFindAPIResponse 获取账户历史多日汇总报表 API返回值 taobao.subway.account.offline.find

获取账户历史报表

type TaobaoSubwayAccountOfflineFindAPIResponseModel added in v1.2.5

type TaobaoSubwayAccountOfflineFindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_account_offline_find_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回参数
	Result []ReportResultTopDto `json:"result,omitempty" xml:"result>report_result_top_dto,omitempty"`
	// 提示
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 总条数
	TotalCount int64 `json:"total_count,omitempty" xml:"total_count,omitempty"`
}

TaobaoSubwayAccountOfflineFindAPIResponseModel is 获取账户历史多日汇总报表 成功返回结果

type TaobaoSubwayAccountOfflineLayeredfindAPIRequest added in v1.2.5

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

TaobaoSubwayAccountOfflineLayeredfindAPIRequest 获取账户历史报表30天转化周期 API请求 taobao.subway.account.offline.layeredfind

获取账户历史报表

func NewTaobaoSubwayAccountOfflineLayeredfindRequest added in v1.2.5

func NewTaobaoSubwayAccountOfflineLayeredfindRequest() *TaobaoSubwayAccountOfflineLayeredfindAPIRequest

NewTaobaoSubwayAccountOfflineLayeredfindRequest 初始化TaobaoSubwayAccountOfflineLayeredfindAPIRequest对象

func (TaobaoSubwayAccountOfflineLayeredfindAPIRequest) GetApiMethodName added in v1.2.5

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayAccountOfflineLayeredfindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayAccountOfflineLayeredfindAPIRequest) GetEffect added in v1.2.5

GetEffect Effect Getter

func (TaobaoSubwayAccountOfflineLayeredfindAPIRequest) GetEndTime added in v1.2.5

GetEndTime EndTime Getter

func (TaobaoSubwayAccountOfflineLayeredfindAPIRequest) GetOffset added in v1.2.5

GetOffset Offset Getter

func (TaobaoSubwayAccountOfflineLayeredfindAPIRequest) GetPageSize added in v1.2.5

GetPageSize PageSize Getter

func (TaobaoSubwayAccountOfflineLayeredfindAPIRequest) GetStartTime added in v1.2.5

GetStartTime StartTime Getter

func (*TaobaoSubwayAccountOfflineLayeredfindAPIRequest) SetEffect added in v1.2.5

SetEffect is Effect Setter 转化周期30-30天

func (*TaobaoSubwayAccountOfflineLayeredfindAPIRequest) SetEndTime added in v1.2.5

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayAccountOfflineLayeredfindAPIRequest) SetOffset added in v1.2.5

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayAccountOfflineLayeredfindAPIRequest) SetPageSize added in v1.2.5

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayAccountOfflineLayeredfindAPIRequest) SetStartTime added in v1.2.5

func (r *TaobaoSubwayAccountOfflineLayeredfindAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayAccountOfflineLayeredfindAPIResponse added in v1.2.5

type TaobaoSubwayAccountOfflineLayeredfindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayAccountOfflineLayeredfindAPIResponseModel
}

TaobaoSubwayAccountOfflineLayeredfindAPIResponse 获取账户历史报表30天转化周期 API返回值 taobao.subway.account.offline.layeredfind

获取账户历史报表

type TaobaoSubwayAccountOfflineLayeredfindAPIResponseModel added in v1.2.5

type TaobaoSubwayAccountOfflineLayeredfindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_account_offline_layeredfind_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回参数
	Result []ReportResultTopDto `json:"result,omitempty" xml:"result>report_result_top_dto,omitempty"`
	// 提示
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 总条数
	TotalCount int64 `json:"total_count,omitempty" xml:"total_count,omitempty"`
}

TaobaoSubwayAccountOfflineLayeredfindAPIResponseModel is 获取账户历史报表30天转化周期 成功返回结果

type TaobaoSubwayAdgroupOfflineFindAPIRequest added in v1.2.5

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

TaobaoSubwayAdgroupOfflineFindAPIRequest 查询单元离线多日汇总列表 API请求 taobao.subway.adgroup.offline.find

查询单元离线列表

func NewTaobaoSubwayAdgroupOfflineFindRequest added in v1.2.5

func NewTaobaoSubwayAdgroupOfflineFindRequest() *TaobaoSubwayAdgroupOfflineFindAPIRequest

NewTaobaoSubwayAdgroupOfflineFindRequest 初始化TaobaoSubwayAdgroupOfflineFindAPIRequest对象

func (TaobaoSubwayAdgroupOfflineFindAPIRequest) GetAdgroupIdIn added in v1.2.5

func (r TaobaoSubwayAdgroupOfflineFindAPIRequest) GetAdgroupIdIn() []int64

GetAdgroupIdIn AdgroupIdIn Getter

func (TaobaoSubwayAdgroupOfflineFindAPIRequest) GetApiMethodName added in v1.2.5

func (r TaobaoSubwayAdgroupOfflineFindAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayAdgroupOfflineFindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayAdgroupOfflineFindAPIRequest) GetCampaignIdEqual added in v1.2.5

func (r TaobaoSubwayAdgroupOfflineFindAPIRequest) GetCampaignIdEqual() int64

GetCampaignIdEqual CampaignIdEqual Getter

func (TaobaoSubwayAdgroupOfflineFindAPIRequest) GetEffect added in v1.2.5

GetEffect Effect Getter

func (TaobaoSubwayAdgroupOfflineFindAPIRequest) GetEndTime added in v1.2.5

GetEndTime EndTime Getter

func (TaobaoSubwayAdgroupOfflineFindAPIRequest) GetOffset added in v1.2.5

GetOffset Offset Getter

func (TaobaoSubwayAdgroupOfflineFindAPIRequest) GetPageSize added in v1.2.5

GetPageSize PageSize Getter

func (TaobaoSubwayAdgroupOfflineFindAPIRequest) GetPvTypeIn added in v1.2.5

GetPvTypeIn PvTypeIn Getter

func (TaobaoSubwayAdgroupOfflineFindAPIRequest) GetStartTime added in v1.2.5

GetStartTime StartTime Getter

func (*TaobaoSubwayAdgroupOfflineFindAPIRequest) SetAdgroupIdIn added in v1.2.5

func (r *TaobaoSubwayAdgroupOfflineFindAPIRequest) SetAdgroupIdIn(_adgroupIdIn []int64) error

SetAdgroupIdIn is AdgroupIdIn Setter 需要查询的单元id列表,不传表示不限制

func (*TaobaoSubwayAdgroupOfflineFindAPIRequest) SetCampaignIdEqual added in v1.2.5

func (r *TaobaoSubwayAdgroupOfflineFindAPIRequest) SetCampaignIdEqual(_campaignIdEqual int64) error

SetCampaignIdEqual is CampaignIdEqual Setter 需要查询的计划id,不传表示不限制

func (*TaobaoSubwayAdgroupOfflineFindAPIRequest) SetEffect added in v1.2.5

SetEffect is Effect Setter 转化周期-1-15累计天数,1-1转化天数,3-3转化天数,7-7转化天数,15-15转化天数,不传默认为15累计天数

func (*TaobaoSubwayAdgroupOfflineFindAPIRequest) SetEndTime added in v1.2.5

func (r *TaobaoSubwayAdgroupOfflineFindAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayAdgroupOfflineFindAPIRequest) SetOffset added in v1.2.5

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayAdgroupOfflineFindAPIRequest) SetPageSize added in v1.2.5

func (r *TaobaoSubwayAdgroupOfflineFindAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayAdgroupOfflineFindAPIRequest) SetPvTypeIn added in v1.2.5

func (r *TaobaoSubwayAdgroupOfflineFindAPIRequest) SetPvTypeIn(_pvTypeIn int64) error

SetPvTypeIn is PvTypeIn Setter 数据来源(pc站内:1;pc站外:2;无限站内:4;无限站内:5;销量明星:6)

func (*TaobaoSubwayAdgroupOfflineFindAPIRequest) SetStartTime added in v1.2.5

func (r *TaobaoSubwayAdgroupOfflineFindAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayAdgroupOfflineFindAPIResponse added in v1.2.5

type TaobaoSubwayAdgroupOfflineFindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayAdgroupOfflineFindAPIResponseModel
}

TaobaoSubwayAdgroupOfflineFindAPIResponse 查询单元离线多日汇总列表 API返回值 taobao.subway.adgroup.offline.find

查询单元离线列表

type TaobaoSubwayAdgroupOfflineFindAPIResponseModel added in v1.2.5

type TaobaoSubwayAdgroupOfflineFindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_adgroup_offline_find_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回参数
	Result []ReportResultTopDto `json:"result,omitempty" xml:"result>report_result_top_dto,omitempty"`
	// 提示
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 总条数
	TotalCount int64 `json:"total_count,omitempty" xml:"total_count,omitempty"`
}

TaobaoSubwayAdgroupOfflineFindAPIResponseModel is 查询单元离线多日汇总列表 成功返回结果

type TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest added in v1.2.5

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

TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest 查询单元离线列表30天转化周期 API请求 taobao.subway.adgroup.offline.layeredfind

查询单元离线列表

func NewTaobaoSubwayAdgroupOfflineLayeredfindRequest added in v1.2.5

func NewTaobaoSubwayAdgroupOfflineLayeredfindRequest() *TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest

NewTaobaoSubwayAdgroupOfflineLayeredfindRequest 初始化TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest对象

func (TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) GetAdgroupIdIn added in v1.2.5

GetAdgroupIdIn AdgroupIdIn Getter

func (TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) GetApiMethodName added in v1.2.5

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) GetEffect added in v1.2.5

GetEffect Effect Getter

func (TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) GetEndTime added in v1.2.5

GetEndTime EndTime Getter

func (TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) GetOffset added in v1.2.5

GetOffset Offset Getter

func (TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) GetPageSize added in v1.2.5

GetPageSize PageSize Getter

func (TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) GetPvTypeIn added in v1.2.5

GetPvTypeIn PvTypeIn Getter

func (TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) GetStartTime added in v1.2.5

GetStartTime StartTime Getter

func (*TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) SetAdgroupIdIn added in v1.2.5

func (r *TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) SetAdgroupIdIn(_adgroupIdIn []int64) error

SetAdgroupIdIn is AdgroupIdIn Setter 需要查询的单元id列表,不传表示不限制

func (*TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) SetEffect added in v1.2.5

SetEffect is Effect Setter 转化周期30-30天

func (*TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) SetEndTime added in v1.2.5

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) SetOffset added in v1.2.5

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) SetPageSize added in v1.2.5

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) SetPvTypeIn added in v1.2.5

SetPvTypeIn is PvTypeIn Setter 数据来源(pc站内:1;pc站外:2;无限站内:4;无限站内:5;销量明星:6)

func (*TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) SetStartTime added in v1.2.5

func (r *TaobaoSubwayAdgroupOfflineLayeredfindAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayAdgroupOfflineLayeredfindAPIResponse added in v1.2.5

type TaobaoSubwayAdgroupOfflineLayeredfindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayAdgroupOfflineLayeredfindAPIResponseModel
}

TaobaoSubwayAdgroupOfflineLayeredfindAPIResponse 查询单元离线列表30天转化周期 API返回值 taobao.subway.adgroup.offline.layeredfind

查询单元离线列表

type TaobaoSubwayAdgroupOfflineLayeredfindAPIResponseModel added in v1.2.5

type TaobaoSubwayAdgroupOfflineLayeredfindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_adgroup_offline_layeredfind_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回参数
	Result []ReportResultTopDto `json:"result,omitempty" xml:"result>report_result_top_dto,omitempty"`
	// 提示
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 总条数
	TotalCount int64 `json:"total_count,omitempty" xml:"total_count,omitempty"`
}

TaobaoSubwayAdgroupOfflineLayeredfindAPIResponseModel is 查询单元离线列表30天转化周期 成功返回结果

type TaobaoSubwayAutomatchRptGetAPIRequest

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

TaobaoSubwayAutomatchRptGetAPIRequest 查询流量智选天级报告 API请求 taobao.subway.automatch.rpt.get

查询流量智选天级报告

func NewTaobaoSubwayAutomatchRptGetRequest

func NewTaobaoSubwayAutomatchRptGetRequest() *TaobaoSubwayAutomatchRptGetAPIRequest

NewTaobaoSubwayAutomatchRptGetRequest 初始化TaobaoSubwayAutomatchRptGetAPIRequest对象

func (TaobaoSubwayAutomatchRptGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSubwayAutomatchRptGetAPIRequest) GetApiMethodName

func (r TaobaoSubwayAutomatchRptGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayAutomatchRptGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayAutomatchRptGetAPIRequest) GetCampaignId

func (r TaobaoSubwayAutomatchRptGetAPIRequest) GetCampaignId() int64

GetCampaignId CampaignId Getter

func (TaobaoSubwayAutomatchRptGetAPIRequest) GetEndDate

GetEndDate EndDate Getter

func (TaobaoSubwayAutomatchRptGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSubwayAutomatchRptGetAPIRequest) GetStartDate

GetStartDate StartDate Getter

func (*TaobaoSubwayAutomatchRptGetAPIRequest) SetAdgroupId

func (r *TaobaoSubwayAutomatchRptGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组id

func (*TaobaoSubwayAutomatchRptGetAPIRequest) SetCampaignId

func (r *TaobaoSubwayAutomatchRptGetAPIRequest) SetCampaignId(_campaignId int64) error

SetCampaignId is CampaignId Setter 计划id

func (*TaobaoSubwayAutomatchRptGetAPIRequest) SetEndDate

func (r *TaobaoSubwayAutomatchRptGetAPIRequest) SetEndDate(_endDate string) error

SetEndDate is EndDate Setter 终止日期

func (*TaobaoSubwayAutomatchRptGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSubwayAutomatchRptGetAPIRequest) SetStartDate

func (r *TaobaoSubwayAutomatchRptGetAPIRequest) SetStartDate(_startDate string) error

SetStartDate is StartDate Setter 起始日期

type TaobaoSubwayAutomatchRptGetAPIResponse

type TaobaoSubwayAutomatchRptGetAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayAutomatchRptGetAPIResponseModel
}

TaobaoSubwayAutomatchRptGetAPIResponse 查询流量智选天级报告 API返回值 taobao.subway.automatch.rpt.get

查询流量智选天级报告

type TaobaoSubwayAutomatchRptGetAPIResponseModel

type TaobaoSubwayAutomatchRptGetAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_automatch_rpt_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 流量智选天级别报表数据
	ResultList []ResultMap `json:"result_list,omitempty" xml:"result_list>result_map,omitempty"`
}

TaobaoSubwayAutomatchRptGetAPIResponseModel is 查询流量智选天级报告 成功返回结果

type TaobaoSubwayCampaignOfflineLayeredfindAPIRequest added in v1.2.5

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

TaobaoSubwayCampaignOfflineLayeredfindAPIRequest 查询计划离线列表30天转化周期 API请求 taobao.subway.campaign.offline.layeredfind

查询某计划离线列表

func NewTaobaoSubwayCampaignOfflineLayeredfindRequest added in v1.2.5

func NewTaobaoSubwayCampaignOfflineLayeredfindRequest() *TaobaoSubwayCampaignOfflineLayeredfindAPIRequest

NewTaobaoSubwayCampaignOfflineLayeredfindRequest 初始化TaobaoSubwayCampaignOfflineLayeredfindAPIRequest对象

func (TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) GetApiMethodName added in v1.2.5

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) GetCampaignIdEqual added in v1.2.5

GetCampaignIdEqual CampaignIdEqual Getter

func (TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) GetCampaignTypeNotIn added in v1.2.5

GetCampaignTypeNotIn CampaignTypeNotIn Getter

func (TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) GetEffect added in v1.2.5

GetEffect Effect Getter

func (TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) GetEndTime added in v1.2.5

GetEndTime EndTime Getter

func (TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) GetOffset added in v1.2.5

GetOffset Offset Getter

func (TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) GetPageSize added in v1.2.5

GetPageSize PageSize Getter

func (TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) GetPvTypeIn added in v1.2.5

GetPvTypeIn PvTypeIn Getter

func (TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) GetStartTime added in v1.2.5

GetStartTime StartTime Getter

func (*TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) SetCampaignIdEqual added in v1.2.5

func (r *TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) SetCampaignIdEqual(_campaignIdEqual int64) error

SetCampaignIdEqual is CampaignIdEqual Setter 需要查询的计划id,不传表示不限制

func (*TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) SetCampaignTypeNotIn added in v1.2.5

func (r *TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) SetCampaignTypeNotIn(_campaignTypeNotIn int64) error

SetCampaignTypeNotIn is CampaignTypeNotIn Setter 计划类型(直通车搜索-无线/pc:0;智能推广计划:8;销量明星计划:16;口碑L店计划:17;新享一键推广计划-独立结算账户(策略中心):21;超级直播-一键推广计划(策略中心:订单模式、计划不复用:22;大快消一键推广计划(策略中心):23;超级直播-持续推广计划(策略中心:计划模式、可复用、类似单品):24;合约广告、流量卡计划:31;极速推计划:37;AI智投:38;)

func (*TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) SetEffect added in v1.2.5

SetEffect is Effect Setter 转化周期30-30天

func (*TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) SetEndTime added in v1.2.5

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) SetOffset added in v1.2.5

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) SetPageSize added in v1.2.5

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) SetPvTypeIn added in v1.2.5

SetPvTypeIn is PvTypeIn Setter 数据来源(pc站内:1;pc站外:2;无限站内:4;无限站内:5;销量明星:6)

func (*TaobaoSubwayCampaignOfflineLayeredfindAPIRequest) SetStartTime added in v1.2.5

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayCampaignOfflineLayeredfindAPIResponse added in v1.2.5

type TaobaoSubwayCampaignOfflineLayeredfindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayCampaignOfflineLayeredfindAPIResponseModel
}

TaobaoSubwayCampaignOfflineLayeredfindAPIResponse 查询计划离线列表30天转化周期 API返回值 taobao.subway.campaign.offline.layeredfind

查询某计划离线列表

type TaobaoSubwayCampaignOfflineLayeredfindAPIResponseModel added in v1.2.5

type TaobaoSubwayCampaignOfflineLayeredfindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_campaign_offline_layeredfind_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回参数
	Result []ReportResultTopDto `json:"result,omitempty" xml:"result>report_result_top_dto,omitempty"`
	// 提示
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 总条数
	TotalCount int64 `json:"total_count,omitempty" xml:"total_count,omitempty"`
}

TaobaoSubwayCampaignOfflineLayeredfindAPIResponseModel is 查询计划离线列表30天转化周期 成功返回结果

type TaobaoSubwayCiaGetAPIRequest

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

TaobaoSubwayCiaGetAPIRequest 查询单元智能出价信息 API请求 taobao.subway.cia.get

查询单元智能出价信息

func NewTaobaoSubwayCiaGetRequest

func NewTaobaoSubwayCiaGetRequest() *TaobaoSubwayCiaGetAPIRequest

NewTaobaoSubwayCiaGetRequest 初始化TaobaoSubwayCiaGetAPIRequest对象

func (TaobaoSubwayCiaGetAPIRequest) GetAdgroupId

func (r TaobaoSubwayCiaGetAPIRequest) GetAdgroupId() int64

GetAdgroupId AdgroupId Getter

func (TaobaoSubwayCiaGetAPIRequest) GetApiMethodName

func (r TaobaoSubwayCiaGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayCiaGetAPIRequest) GetApiParams

func (r TaobaoSubwayCiaGetAPIRequest) GetApiParams() url.Values

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayCiaGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSubwayCiaGetAPIRequest) SetAdgroupId

func (r *TaobaoSubwayCiaGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSubwayCiaGetAPIRequest) SetNick

func (r *TaobaoSubwayCiaGetAPIRequest) SetNick(_nick string) error

SetNick is Nick Setter 主人昵称

type TaobaoSubwayCiaGetAPIResponse

type TaobaoSubwayCiaGetAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayCiaGetAPIResponseModel
}

TaobaoSubwayCiaGetAPIResponse 查询单元智能出价信息 API返回值 taobao.subway.cia.get

查询单元智能出价信息

type TaobaoSubwayCiaGetAPIResponseModel

type TaobaoSubwayCiaGetAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_cia_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 单元智能出价信息
	Result *CiaConfig `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoSubwayCiaGetAPIResponseModel is 查询单元智能出价信息 成功返回结果

type TaobaoSubwayCiaUpdateAPIRequest

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

TaobaoSubwayCiaUpdateAPIRequest 批量修改单元智能出价 API请求 taobao.subway.cia.update

批量修改直通车推广单元的智能出价配置

func NewTaobaoSubwayCiaUpdateRequest

func NewTaobaoSubwayCiaUpdateRequest() *TaobaoSubwayCiaUpdateAPIRequest

NewTaobaoSubwayCiaUpdateRequest 初始化TaobaoSubwayCiaUpdateAPIRequest对象

func (TaobaoSubwayCiaUpdateAPIRequest) GetApiMethodName

func (r TaobaoSubwayCiaUpdateAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayCiaUpdateAPIRequest) GetApiParams

func (r TaobaoSubwayCiaUpdateAPIRequest) GetApiParams() url.Values

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayCiaUpdateAPIRequest) GetCiaConfigs

func (r TaobaoSubwayCiaUpdateAPIRequest) GetCiaConfigs() []CiaUpdateDto

GetCiaConfigs CiaConfigs Getter

func (TaobaoSubwayCiaUpdateAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSubwayCiaUpdateAPIRequest) SetCiaConfigs

func (r *TaobaoSubwayCiaUpdateAPIRequest) SetCiaConfigs(_ciaConfigs []CiaUpdateDto) error

SetCiaConfigs is CiaConfigs Setter 系统自动生成

func (*TaobaoSubwayCiaUpdateAPIRequest) SetNick

func (r *TaobaoSubwayCiaUpdateAPIRequest) SetNick(_nick string) error

SetNick is Nick Setter 主人昵称

type TaobaoSubwayCiaUpdateAPIResponse

type TaobaoSubwayCiaUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayCiaUpdateAPIResponseModel
}

TaobaoSubwayCiaUpdateAPIResponse 批量修改单元智能出价 API返回值 taobao.subway.cia.update

批量修改直通车推广单元的智能出价配置

type TaobaoSubwayCiaUpdateAPIResponseModel

type TaobaoSubwayCiaUpdateAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_cia_update_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 推广组Id列表
	AdgroupList []int64 `json:"adgroup_list,omitempty" xml:"adgroup_list>int64,omitempty"`
}

TaobaoSubwayCiaUpdateAPIResponseModel is 批量修改单元智能出价 成功返回结果

type TaobaoSubwayCreativeOfflineLayeredfindAPIRequest added in v1.2.5

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

TaobaoSubwayCreativeOfflineLayeredfindAPIRequest 获取创意离线报表周期30天 API请求 taobao.subway.creative.offline.layeredfind

获取创意离线报表

func NewTaobaoSubwayCreativeOfflineLayeredfindRequest added in v1.2.5

func NewTaobaoSubwayCreativeOfflineLayeredfindRequest() *TaobaoSubwayCreativeOfflineLayeredfindAPIRequest

NewTaobaoSubwayCreativeOfflineLayeredfindRequest 初始化TaobaoSubwayCreativeOfflineLayeredfindAPIRequest对象

func (TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) GetApiMethodName added in v1.2.5

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) GetCreativeIdEqual added in v1.2.5

GetCreativeIdEqual CreativeIdEqual Getter

func (TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) GetCreativeIdIn added in v1.2.5

GetCreativeIdIn CreativeIdIn Getter

func (TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) GetEffect added in v1.2.5

GetEffect Effect Getter

func (TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) GetEndTime added in v1.2.5

GetEndTime EndTime Getter

func (TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) GetOffset added in v1.2.5

GetOffset Offset Getter

func (TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) GetPageSize added in v1.2.5

GetPageSize PageSize Getter

func (TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) GetPvTypeIn added in v1.2.5

GetPvTypeIn PvTypeIn Getter

func (TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) GetStartTime added in v1.2.5

GetStartTime StartTime Getter

func (*TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) SetCreativeIdEqual added in v1.2.5

func (r *TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) SetCreativeIdEqual(_creativeIdEqual int64) error

SetCreativeIdEqual is CreativeIdEqual Setter 需要查询的创意id,不传表示不限

func (*TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) SetCreativeIdIn added in v1.2.5

func (r *TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) SetCreativeIdIn(_creativeIdIn []int64) error

SetCreativeIdIn is CreativeIdIn Setter 需要查询的创意id列表,不传表示不限制

func (*TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) SetEffect added in v1.2.5

SetEffect is Effect Setter 转化周期30-30天

func (*TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) SetEndTime added in v1.2.5

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) SetOffset added in v1.2.5

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) SetPageSize added in v1.2.5

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) SetPvTypeIn added in v1.2.5

SetPvTypeIn is PvTypeIn Setter 数据来源(pc站内:1;pc站外:2;无限站内:4;无限站内:5;销量明星:6)

func (*TaobaoSubwayCreativeOfflineLayeredfindAPIRequest) SetStartTime added in v1.2.5

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayCreativeOfflineLayeredfindAPIResponse added in v1.2.5

type TaobaoSubwayCreativeOfflineLayeredfindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayCreativeOfflineLayeredfindAPIResponseModel
}

TaobaoSubwayCreativeOfflineLayeredfindAPIResponse 获取创意离线报表周期30天 API返回值 taobao.subway.creative.offline.layeredfind

获取创意离线报表

type TaobaoSubwayCreativeOfflineLayeredfindAPIResponseModel added in v1.2.5

type TaobaoSubwayCreativeOfflineLayeredfindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_creative_offline_layeredfind_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回参数
	Result []ReportResultTopDto `json:"result,omitempty" xml:"result>report_result_top_dto,omitempty"`
	// 提示
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 总条数
	TotalCount int64 `json:"total_count,omitempty" xml:"total_count,omitempty"`
}

TaobaoSubwayCreativeOfflineLayeredfindAPIResponseModel is 获取创意离线报表周期30天 成功返回结果

type TaobaoSubwayCreativeVideoBindAPIRequest added in v1.2.5

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

TaobaoSubwayCreativeVideoBindAPIRequest 绑定视频到创意上 API请求 taobao.subway.creative.video.bind

将用户上传的视频绑定到指定的创意上

func NewTaobaoSubwayCreativeVideoBindRequest added in v1.2.5

func NewTaobaoSubwayCreativeVideoBindRequest() *TaobaoSubwayCreativeVideoBindAPIRequest

NewTaobaoSubwayCreativeVideoBindRequest 初始化TaobaoSubwayCreativeVideoBindAPIRequest对象

func (TaobaoSubwayCreativeVideoBindAPIRequest) GetApiMethodName added in v1.2.5

func (r TaobaoSubwayCreativeVideoBindAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayCreativeVideoBindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayCreativeVideoBindAPIRequest) GetCreativeId added in v1.2.5

GetCreativeId CreativeId Getter

func (TaobaoSubwayCreativeVideoBindAPIRequest) GetItemId added in v1.2.5

GetItemId ItemId Getter

func (TaobaoSubwayCreativeVideoBindAPIRequest) GetNick added in v1.2.5

GetNick Nick Getter

func (TaobaoSubwayCreativeVideoBindAPIRequest) GetSizeType added in v1.2.5

GetSizeType SizeType Getter

func (TaobaoSubwayCreativeVideoBindAPIRequest) GetVideoId added in v1.2.5

GetVideoId VideoId Getter

func (*TaobaoSubwayCreativeVideoBindAPIRequest) SetCreativeId added in v1.2.5

func (r *TaobaoSubwayCreativeVideoBindAPIRequest) SetCreativeId(_creativeId int64) error

SetCreativeId is CreativeId Setter 创意ID

func (*TaobaoSubwayCreativeVideoBindAPIRequest) SetItemId added in v1.2.5

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

SetItemId is ItemId Setter ItemId

func (*TaobaoSubwayCreativeVideoBindAPIRequest) SetNick added in v1.2.5

SetNick is Nick Setter 淘宝用户昵称

func (*TaobaoSubwayCreativeVideoBindAPIRequest) SetSizeType added in v1.2.5

func (r *TaobaoSubwayCreativeVideoBindAPIRequest) SetSizeType(_sizeType int64) error

SetSizeType is SizeType Setter 视频类型

func (*TaobaoSubwayCreativeVideoBindAPIRequest) SetVideoId added in v1.2.5

func (r *TaobaoSubwayCreativeVideoBindAPIRequest) SetVideoId(_videoId int64) error

SetVideoId is VideoId Setter 审核通过的视频(状态6)

type TaobaoSubwayCreativeVideoBindAPIResponse added in v1.2.5

type TaobaoSubwayCreativeVideoBindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayCreativeVideoBindAPIResponseModel
}

TaobaoSubwayCreativeVideoBindAPIResponse 绑定视频到创意上 API返回值 taobao.subway.creative.video.bind

将用户上传的视频绑定到指定的创意上

type TaobaoSubwayCreativeVideoBindAPIResponseModel added in v1.2.5

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

TaobaoSubwayCreativeVideoBindAPIResponseModel is 绑定视频到创意上 成功返回结果

type TaobaoSubwayCreativeVideoUnbindAPIRequest added in v1.2.5

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

TaobaoSubwayCreativeVideoUnbindAPIRequest 创意与视频解绑接口 API请求 taobao.subway.creative.video.unbind

将创意与视频解绑

func NewTaobaoSubwayCreativeVideoUnbindRequest added in v1.2.5

func NewTaobaoSubwayCreativeVideoUnbindRequest() *TaobaoSubwayCreativeVideoUnbindAPIRequest

NewTaobaoSubwayCreativeVideoUnbindRequest 初始化TaobaoSubwayCreativeVideoUnbindAPIRequest对象

func (TaobaoSubwayCreativeVideoUnbindAPIRequest) GetApiMethodName added in v1.2.5

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayCreativeVideoUnbindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayCreativeVideoUnbindAPIRequest) GetCreativeId added in v1.2.5

GetCreativeId CreativeId Getter

func (TaobaoSubwayCreativeVideoUnbindAPIRequest) GetNick added in v1.2.5

GetNick Nick Getter

func (TaobaoSubwayCreativeVideoUnbindAPIRequest) GetVideoId added in v1.2.5

GetVideoId VideoId Getter

func (*TaobaoSubwayCreativeVideoUnbindAPIRequest) SetCreativeId added in v1.2.5

func (r *TaobaoSubwayCreativeVideoUnbindAPIRequest) SetCreativeId(_creativeId int64) error

SetCreativeId is CreativeId Setter 创意ID

func (*TaobaoSubwayCreativeVideoUnbindAPIRequest) SetNick added in v1.2.5

SetNick is Nick Setter 淘宝账号昵称

func (*TaobaoSubwayCreativeVideoUnbindAPIRequest) SetVideoId added in v1.2.5

func (r *TaobaoSubwayCreativeVideoUnbindAPIRequest) SetVideoId(_videoId int64) error

SetVideoId is VideoId Setter 视频ID

type TaobaoSubwayCreativeVideoUnbindAPIResponse added in v1.2.5

type TaobaoSubwayCreativeVideoUnbindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayCreativeVideoUnbindAPIResponseModel
}

TaobaoSubwayCreativeVideoUnbindAPIResponse 创意与视频解绑接口 API返回值 taobao.subway.creative.video.unbind

将创意与视频解绑

type TaobaoSubwayCreativeVideoUnbindAPIResponseModel added in v1.2.5

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

TaobaoSubwayCreativeVideoUnbindAPIResponseModel is 创意与视频解绑接口 成功返回结果

type TaobaoSubwayCreativeofflineFindAPIRequest added in v1.2.5

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

TaobaoSubwayCreativeofflineFindAPIRequest 获取创意离线多日汇总报表 API请求 taobao.subway.creativeoffline.find

获取创意离线报表

func NewTaobaoSubwayCreativeofflineFindRequest added in v1.2.5

func NewTaobaoSubwayCreativeofflineFindRequest() *TaobaoSubwayCreativeofflineFindAPIRequest

NewTaobaoSubwayCreativeofflineFindRequest 初始化TaobaoSubwayCreativeofflineFindAPIRequest对象

func (TaobaoSubwayCreativeofflineFindAPIRequest) GetApiMethodName added in v1.2.5

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayCreativeofflineFindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayCreativeofflineFindAPIRequest) GetCampaignIdEqual added in v1.2.5

func (r TaobaoSubwayCreativeofflineFindAPIRequest) GetCampaignIdEqual() int64

GetCampaignIdEqual CampaignIdEqual Getter

func (TaobaoSubwayCreativeofflineFindAPIRequest) GetCreativeIdEqual added in v1.2.5

func (r TaobaoSubwayCreativeofflineFindAPIRequest) GetCreativeIdEqual() int64

GetCreativeIdEqual CreativeIdEqual Getter

func (TaobaoSubwayCreativeofflineFindAPIRequest) GetCreativeIdIn added in v1.2.5

func (r TaobaoSubwayCreativeofflineFindAPIRequest) GetCreativeIdIn() []int64

GetCreativeIdIn CreativeIdIn Getter

func (TaobaoSubwayCreativeofflineFindAPIRequest) GetEffect added in v1.2.5

GetEffect Effect Getter

func (TaobaoSubwayCreativeofflineFindAPIRequest) GetEndTime added in v1.2.5

GetEndTime EndTime Getter

func (TaobaoSubwayCreativeofflineFindAPIRequest) GetOffset added in v1.2.5

GetOffset Offset Getter

func (TaobaoSubwayCreativeofflineFindAPIRequest) GetPageSize added in v1.2.5

GetPageSize PageSize Getter

func (TaobaoSubwayCreativeofflineFindAPIRequest) GetPvTypeIn added in v1.2.5

GetPvTypeIn PvTypeIn Getter

func (TaobaoSubwayCreativeofflineFindAPIRequest) GetStartTime added in v1.2.5

GetStartTime StartTime Getter

func (*TaobaoSubwayCreativeofflineFindAPIRequest) SetCampaignIdEqual added in v1.2.5

func (r *TaobaoSubwayCreativeofflineFindAPIRequest) SetCampaignIdEqual(_campaignIdEqual int64) error

SetCampaignIdEqual is CampaignIdEqual Setter 需要查询的计划id,不传表示不限制

func (*TaobaoSubwayCreativeofflineFindAPIRequest) SetCreativeIdEqual added in v1.2.5

func (r *TaobaoSubwayCreativeofflineFindAPIRequest) SetCreativeIdEqual(_creativeIdEqual int64) error

SetCreativeIdEqual is CreativeIdEqual Setter 需要查询的创意id,不传表示不限

func (*TaobaoSubwayCreativeofflineFindAPIRequest) SetCreativeIdIn added in v1.2.5

func (r *TaobaoSubwayCreativeofflineFindAPIRequest) SetCreativeIdIn(_creativeIdIn []int64) error

SetCreativeIdIn is CreativeIdIn Setter 需要查询的创意id列表,不传表示不限制

func (*TaobaoSubwayCreativeofflineFindAPIRequest) SetEffect added in v1.2.5

SetEffect is Effect Setter 转化周期-1-15累计天数,1-1转化天数,3-3转化天数,7-7转化天数,15-15转化天数,不传默认为15累计天数

func (*TaobaoSubwayCreativeofflineFindAPIRequest) SetEndTime added in v1.2.5

func (r *TaobaoSubwayCreativeofflineFindAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayCreativeofflineFindAPIRequest) SetOffset added in v1.2.5

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayCreativeofflineFindAPIRequest) SetPageSize added in v1.2.5

func (r *TaobaoSubwayCreativeofflineFindAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayCreativeofflineFindAPIRequest) SetPvTypeIn added in v1.2.5

func (r *TaobaoSubwayCreativeofflineFindAPIRequest) SetPvTypeIn(_pvTypeIn int64) error

SetPvTypeIn is PvTypeIn Setter 数据来源(pc站内:1;pc站外:2;无限站内:4;无限站内:5;销量明星:6)

func (*TaobaoSubwayCreativeofflineFindAPIRequest) SetStartTime added in v1.2.5

func (r *TaobaoSubwayCreativeofflineFindAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayCreativeofflineFindAPIResponse added in v1.2.5

type TaobaoSubwayCreativeofflineFindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayCreativeofflineFindAPIResponseModel
}

TaobaoSubwayCreativeofflineFindAPIResponse 获取创意离线多日汇总报表 API返回值 taobao.subway.creativeoffline.find

获取创意离线报表

type TaobaoSubwayCreativeofflineFindAPIResponseModel added in v1.2.5

type TaobaoSubwayCreativeofflineFindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_creativeoffline_find_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回参数
	Result []ReportResultTopDto `json:"result,omitempty" xml:"result>report_result_top_dto,omitempty"`
	// 提示
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 总条数
	TotalCount int64 `json:"total_count,omitempty" xml:"total_count,omitempty"`
}

TaobaoSubwayCreativeofflineFindAPIResponseModel is 获取创意离线多日汇总报表 成功返回结果

type TaobaoSubwayCrowdOfflineLayeredfindAPIRequest added in v1.2.5

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

TaobaoSubwayCrowdOfflineLayeredfindAPIRequest 获取人群离线报表30转化周期 API请求 taobao.subway.crowd.offline.layeredfind

获取人群离线报表

func NewTaobaoSubwayCrowdOfflineLayeredfindRequest added in v1.2.5

func NewTaobaoSubwayCrowdOfflineLayeredfindRequest() *TaobaoSubwayCrowdOfflineLayeredfindAPIRequest

NewTaobaoSubwayCrowdOfflineLayeredfindRequest 初始化TaobaoSubwayCrowdOfflineLayeredfindAPIRequest对象

func (TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) GetApiMethodName added in v1.2.5

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) GetCrowdIdEqual added in v1.2.5

GetCrowdIdEqual CrowdIdEqual Getter

func (TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) GetEffect added in v1.2.5

GetEffect Effect Getter

func (TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) GetEndTime added in v1.2.5

GetEndTime EndTime Getter

func (TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) GetOffset added in v1.2.5

GetOffset Offset Getter

func (TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) GetPageSize added in v1.2.5

GetPageSize PageSize Getter

func (TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) GetPvTypeIn added in v1.2.5

GetPvTypeIn PvTypeIn Getter

func (TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) GetStartTime added in v1.2.5

GetStartTime StartTime Getter

func (*TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) SetCrowdIdEqual added in v1.2.5

func (r *TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) SetCrowdIdEqual(_crowdIdEqual int64) error

SetCrowdIdEqual is CrowdIdEqual Setter 需要查询的创意id,不传表示不限

func (*TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) SetEffect added in v1.2.5

SetEffect is Effect Setter 转化周期30-30天

func (*TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) SetEndTime added in v1.2.5

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) SetOffset added in v1.2.5

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) SetPageSize added in v1.2.5

func (r *TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) SetPvTypeIn added in v1.2.5

func (r *TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) SetPvTypeIn(_pvTypeIn int64) error

SetPvTypeIn is PvTypeIn Setter 数据来源(pc站内:1;pc站外:2;无限站内:4;无限站内:5;销量明星:6)

func (*TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) SetStartTime added in v1.2.5

func (r *TaobaoSubwayCrowdOfflineLayeredfindAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayCrowdOfflineLayeredfindAPIResponse added in v1.2.5

type TaobaoSubwayCrowdOfflineLayeredfindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayCrowdOfflineLayeredfindAPIResponseModel
}

TaobaoSubwayCrowdOfflineLayeredfindAPIResponse 获取人群离线报表30转化周期 API返回值 taobao.subway.crowd.offline.layeredfind

获取人群离线报表

type TaobaoSubwayCrowdOfflineLayeredfindAPIResponseModel added in v1.2.5

type TaobaoSubwayCrowdOfflineLayeredfindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_crowd_offline_layeredfind_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回参数
	Result []ReportResultTopDto `json:"result,omitempty" xml:"result>report_result_top_dto,omitempty"`
	// 提示
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 总条数
	TotalCount int64 `json:"total_count,omitempty" xml:"total_count,omitempty"`
}

TaobaoSubwayCrowdOfflineLayeredfindAPIResponseModel is 获取人群离线报表30转化周期 成功返回结果

type TaobaoSubwayCrowdofflinenewFindAPIRequest added in v1.2.5

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

TaobaoSubwayCrowdofflinenewFindAPIRequest 获取人群离线多日汇总报表 API请求 taobao.subway.crowdofflinenew.find

获取人群离线报表

func NewTaobaoSubwayCrowdofflinenewFindRequest added in v1.2.5

func NewTaobaoSubwayCrowdofflinenewFindRequest() *TaobaoSubwayCrowdofflinenewFindAPIRequest

NewTaobaoSubwayCrowdofflinenewFindRequest 初始化TaobaoSubwayCrowdofflinenewFindAPIRequest对象

func (TaobaoSubwayCrowdofflinenewFindAPIRequest) GetApiMethodName added in v1.2.5

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayCrowdofflinenewFindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayCrowdofflinenewFindAPIRequest) GetCampaignIdEqual added in v1.2.5

func (r TaobaoSubwayCrowdofflinenewFindAPIRequest) GetCampaignIdEqual() int64

GetCampaignIdEqual CampaignIdEqual Getter

func (TaobaoSubwayCrowdofflinenewFindAPIRequest) GetCrowdIdEqual added in v1.2.5

GetCrowdIdEqual CrowdIdEqual Getter

func (TaobaoSubwayCrowdofflinenewFindAPIRequest) GetEffect added in v1.2.5

GetEffect Effect Getter

func (TaobaoSubwayCrowdofflinenewFindAPIRequest) GetEndTime added in v1.2.5

GetEndTime EndTime Getter

func (TaobaoSubwayCrowdofflinenewFindAPIRequest) GetOffset added in v1.2.5

GetOffset Offset Getter

func (TaobaoSubwayCrowdofflinenewFindAPIRequest) GetPageSize added in v1.2.5

GetPageSize PageSize Getter

func (TaobaoSubwayCrowdofflinenewFindAPIRequest) GetPvTypeIn added in v1.2.5

GetPvTypeIn PvTypeIn Getter

func (TaobaoSubwayCrowdofflinenewFindAPIRequest) GetStartTime added in v1.2.5

GetStartTime StartTime Getter

func (*TaobaoSubwayCrowdofflinenewFindAPIRequest) SetCampaignIdEqual added in v1.2.5

func (r *TaobaoSubwayCrowdofflinenewFindAPIRequest) SetCampaignIdEqual(_campaignIdEqual int64) error

SetCampaignIdEqual is CampaignIdEqual Setter 需要查询的计划id,不传表示不限制

func (*TaobaoSubwayCrowdofflinenewFindAPIRequest) SetCrowdIdEqual added in v1.2.5

func (r *TaobaoSubwayCrowdofflinenewFindAPIRequest) SetCrowdIdEqual(_crowdIdEqual int64) error

SetCrowdIdEqual is CrowdIdEqual Setter 需要查询的创意id,不传表示不限

func (*TaobaoSubwayCrowdofflinenewFindAPIRequest) SetEffect added in v1.2.5

SetEffect is Effect Setter 转化周期-1-15累计天数,1-1转化天数,3-3转化天数,7-7转化天数,15-15转化天数,不传默认为15累计天数

func (*TaobaoSubwayCrowdofflinenewFindAPIRequest) SetEndTime added in v1.2.5

func (r *TaobaoSubwayCrowdofflinenewFindAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayCrowdofflinenewFindAPIRequest) SetOffset added in v1.2.5

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayCrowdofflinenewFindAPIRequest) SetPageSize added in v1.2.5

func (r *TaobaoSubwayCrowdofflinenewFindAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayCrowdofflinenewFindAPIRequest) SetPvTypeIn added in v1.2.5

func (r *TaobaoSubwayCrowdofflinenewFindAPIRequest) SetPvTypeIn(_pvTypeIn int64) error

SetPvTypeIn is PvTypeIn Setter 数据来源(pc站内:1;pc站外:2;无限站内:4;无限站内:5;销量明星:6)

func (*TaobaoSubwayCrowdofflinenewFindAPIRequest) SetStartTime added in v1.2.5

func (r *TaobaoSubwayCrowdofflinenewFindAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayCrowdofflinenewFindAPIResponse added in v1.2.5

type TaobaoSubwayCrowdofflinenewFindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayCrowdofflinenewFindAPIResponseModel
}

TaobaoSubwayCrowdofflinenewFindAPIResponse 获取人群离线多日汇总报表 API返回值 taobao.subway.crowdofflinenew.find

获取人群离线报表

type TaobaoSubwayCrowdofflinenewFindAPIResponseModel added in v1.2.5

type TaobaoSubwayCrowdofflinenewFindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_crowdofflinenew_find_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回参数
	Result []ReportResultTopDto `json:"result,omitempty" xml:"result>report_result_top_dto,omitempty"`
	// 提示
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 总条数
	TotalCount int64 `json:"total_count,omitempty" xml:"total_count,omitempty"`
}

TaobaoSubwayCrowdofflinenewFindAPIResponseModel is 获取人群离线多日汇总报表 成功返回结果

type TaobaoSubwayItemVideoUploadAPIRequest added in v1.2.5

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

TaobaoSubwayItemVideoUploadAPIRequest 创意视频上传 API请求 taobao.subway.item.video.upload

为用户提供视频上传的功能

func NewTaobaoSubwayItemVideoUploadRequest added in v1.2.5

func NewTaobaoSubwayItemVideoUploadRequest() *TaobaoSubwayItemVideoUploadAPIRequest

NewTaobaoSubwayItemVideoUploadRequest 初始化TaobaoSubwayItemVideoUploadAPIRequest对象

func (TaobaoSubwayItemVideoUploadAPIRequest) GetApiMethodName added in v1.2.5

func (r TaobaoSubwayItemVideoUploadAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayItemVideoUploadAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayItemVideoUploadAPIRequest) GetItemId added in v1.2.5

GetItemId ItemId Getter

func (TaobaoSubwayItemVideoUploadAPIRequest) GetNick added in v1.2.5

GetNick Nick Getter

func (TaobaoSubwayItemVideoUploadAPIRequest) GetType added in v1.2.5

GetType Type Getter

func (TaobaoSubwayItemVideoUploadAPIRequest) GetVideoUrl added in v1.2.5

GetVideoUrl VideoUrl Getter

func (*TaobaoSubwayItemVideoUploadAPIRequest) SetItemId added in v1.2.5

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

SetItemId is ItemId Setter itemId

func (*TaobaoSubwayItemVideoUploadAPIRequest) SetNick added in v1.2.5

SetNick is Nick Setter 账号昵称

func (*TaobaoSubwayItemVideoUploadAPIRequest) SetType added in v1.2.5

SetType is Type Setter 视频类型,1是方视频

func (*TaobaoSubwayItemVideoUploadAPIRequest) SetVideoUrl added in v1.2.5

func (r *TaobaoSubwayItemVideoUploadAPIRequest) SetVideoUrl(_videoUrl string) error

SetVideoUrl is VideoUrl Setter video的url

type TaobaoSubwayItemVideoUploadAPIResponse added in v1.2.5

type TaobaoSubwayItemVideoUploadAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayItemVideoUploadAPIResponseModel
}

TaobaoSubwayItemVideoUploadAPIResponse 创意视频上传 API返回值 taobao.subway.item.video.upload

为用户提供视频上传的功能

type TaobaoSubwayItemVideoUploadAPIResponseModel added in v1.2.5

type TaobaoSubwayItemVideoUploadAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_item_video_upload_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 视频信息
	Result *VideoFeedDto `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoSubwayItemVideoUploadAPIResponseModel is 创意视频上传 成功返回结果

type TaobaoSubwayKeywordOfflineFindAPIRequest added in v1.2.5

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

TaobaoSubwayKeywordOfflineFindAPIRequest 查询关键词离线多日汇总报表 API请求 taobao.subway.keyword.offline.find

获取关键词离线报表

func NewTaobaoSubwayKeywordOfflineFindRequest added in v1.2.5

func NewTaobaoSubwayKeywordOfflineFindRequest() *TaobaoSubwayKeywordOfflineFindAPIRequest

NewTaobaoSubwayKeywordOfflineFindRequest 初始化TaobaoSubwayKeywordOfflineFindAPIRequest对象

func (TaobaoSubwayKeywordOfflineFindAPIRequest) GetApiMethodName added in v1.2.5

func (r TaobaoSubwayKeywordOfflineFindAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayKeywordOfflineFindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayKeywordOfflineFindAPIRequest) GetBidwordIdEqual added in v1.2.5

func (r TaobaoSubwayKeywordOfflineFindAPIRequest) GetBidwordIdEqual() int64

GetBidwordIdEqual BidwordIdEqual Getter

func (TaobaoSubwayKeywordOfflineFindAPIRequest) GetCampaignIdEqual added in v1.2.5

func (r TaobaoSubwayKeywordOfflineFindAPIRequest) GetCampaignIdEqual() int64

GetCampaignIdEqual CampaignIdEqual Getter

func (TaobaoSubwayKeywordOfflineFindAPIRequest) GetEffect added in v1.2.5

GetEffect Effect Getter

func (TaobaoSubwayKeywordOfflineFindAPIRequest) GetEndTime added in v1.2.5

GetEndTime EndTime Getter

func (TaobaoSubwayKeywordOfflineFindAPIRequest) GetOffset added in v1.2.5

GetOffset Offset Getter

func (TaobaoSubwayKeywordOfflineFindAPIRequest) GetPageSize added in v1.2.5

GetPageSize PageSize Getter

func (TaobaoSubwayKeywordOfflineFindAPIRequest) GetPvTypeIn added in v1.2.5

GetPvTypeIn PvTypeIn Getter

func (TaobaoSubwayKeywordOfflineFindAPIRequest) GetStartTime added in v1.2.5

GetStartTime StartTime Getter

func (*TaobaoSubwayKeywordOfflineFindAPIRequest) SetBidwordIdEqual added in v1.2.5

func (r *TaobaoSubwayKeywordOfflineFindAPIRequest) SetBidwordIdEqual(_bidwordIdEqual int64) error

SetBidwordIdEqual is BidwordIdEqual Setter 需要查询的关键词id,不传表示不限

func (*TaobaoSubwayKeywordOfflineFindAPIRequest) SetCampaignIdEqual added in v1.2.5

func (r *TaobaoSubwayKeywordOfflineFindAPIRequest) SetCampaignIdEqual(_campaignIdEqual int64) error

SetCampaignIdEqual is CampaignIdEqual Setter 需要查询的计划id,不传表示不限制

func (*TaobaoSubwayKeywordOfflineFindAPIRequest) SetEffect added in v1.2.5

SetEffect is Effect Setter 转化周期-1-15累计天数,1-1转化天数,3-3转化天数,7-7转化天数,15-15转化天数,不传默认为15累计天数

func (*TaobaoSubwayKeywordOfflineFindAPIRequest) SetEndTime added in v1.2.5

func (r *TaobaoSubwayKeywordOfflineFindAPIRequest) SetEndTime(_endTime string) error

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayKeywordOfflineFindAPIRequest) SetOffset added in v1.2.5

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayKeywordOfflineFindAPIRequest) SetPageSize added in v1.2.5

func (r *TaobaoSubwayKeywordOfflineFindAPIRequest) SetPageSize(_pageSize int64) error

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayKeywordOfflineFindAPIRequest) SetPvTypeIn added in v1.2.5

func (r *TaobaoSubwayKeywordOfflineFindAPIRequest) SetPvTypeIn(_pvTypeIn int64) error

SetPvTypeIn is PvTypeIn Setter 数据来源(pc站内:1;pc站外:2;无限站内:4;无限站内:5;销量明星:6)

func (*TaobaoSubwayKeywordOfflineFindAPIRequest) SetStartTime added in v1.2.5

func (r *TaobaoSubwayKeywordOfflineFindAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayKeywordOfflineFindAPIResponse added in v1.2.5

type TaobaoSubwayKeywordOfflineFindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayKeywordOfflineFindAPIResponseModel
}

TaobaoSubwayKeywordOfflineFindAPIResponse 查询关键词离线多日汇总报表 API返回值 taobao.subway.keyword.offline.find

获取关键词离线报表

type TaobaoSubwayKeywordOfflineFindAPIResponseModel added in v1.2.5

type TaobaoSubwayKeywordOfflineFindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_keyword_offline_find_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回参数
	Result []ReportResultTopDto `json:"result,omitempty" xml:"result>report_result_top_dto,omitempty"`
	// 提示
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 总条数
	TotalCount int64 `json:"total_count,omitempty" xml:"total_count,omitempty"`
}

TaobaoSubwayKeywordOfflineFindAPIResponseModel is 查询关键词离线多日汇总报表 成功返回结果

type TaobaoSubwayKeywordOfflineLayeredfindAPIRequest added in v1.2.5

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

TaobaoSubwayKeywordOfflineLayeredfindAPIRequest 查询关键词离线报表30天转化周期 API请求 taobao.subway.keyword.offline.layeredfind

获取关键词离线报表

func NewTaobaoSubwayKeywordOfflineLayeredfindRequest added in v1.2.5

func NewTaobaoSubwayKeywordOfflineLayeredfindRequest() *TaobaoSubwayKeywordOfflineLayeredfindAPIRequest

NewTaobaoSubwayKeywordOfflineLayeredfindRequest 初始化TaobaoSubwayKeywordOfflineLayeredfindAPIRequest对象

func (TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) GetApiMethodName added in v1.2.5

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) GetBidwordIdEqual added in v1.2.5

GetBidwordIdEqual BidwordIdEqual Getter

func (TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) GetEffect added in v1.2.5

GetEffect Effect Getter

func (TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) GetEndTime added in v1.2.5

GetEndTime EndTime Getter

func (TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) GetOffset added in v1.2.5

GetOffset Offset Getter

func (TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) GetPageSize added in v1.2.5

GetPageSize PageSize Getter

func (TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) GetPvTypeIn added in v1.2.5

GetPvTypeIn PvTypeIn Getter

func (TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) GetStartTime added in v1.2.5

GetStartTime StartTime Getter

func (*TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) SetBidwordIdEqual added in v1.2.5

func (r *TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) SetBidwordIdEqual(_bidwordIdEqual int64) error

SetBidwordIdEqual is BidwordIdEqual Setter 需要查询的关键词id,不传表示不限

func (*TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) SetEffect added in v1.2.5

SetEffect is Effect Setter 转化周期30-30天

func (*TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) SetEndTime added in v1.2.5

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) SetOffset added in v1.2.5

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) SetPageSize added in v1.2.5

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) SetPvTypeIn added in v1.2.5

SetPvTypeIn is PvTypeIn Setter 数据来源(pc站内:1;pc站外:2;无限站内:4;无限站内:5;销量明星:6)

func (*TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) SetStartTime added in v1.2.5

func (r *TaobaoSubwayKeywordOfflineLayeredfindAPIRequest) SetStartTime(_startTime string) error

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayKeywordOfflineLayeredfindAPIResponse added in v1.2.5

type TaobaoSubwayKeywordOfflineLayeredfindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayKeywordOfflineLayeredfindAPIResponseModel
}

TaobaoSubwayKeywordOfflineLayeredfindAPIResponse 查询关键词离线报表30天转化周期 API返回值 taobao.subway.keyword.offline.layeredfind

获取关键词离线报表

type TaobaoSubwayKeywordOfflineLayeredfindAPIResponseModel added in v1.2.5

type TaobaoSubwayKeywordOfflineLayeredfindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_keyword_offline_layeredfind_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 返回参数
	Result []ReportResultTopDto `json:"result,omitempty" xml:"result>report_result_top_dto,omitempty"`
	// 提示
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 总条数
	TotalCount int64 `json:"total_count,omitempty" xml:"total_count,omitempty"`
}

TaobaoSubwayKeywordOfflineLayeredfindAPIResponseModel is 查询关键词离线报表30天转化周期 成功返回结果

type TaobaoSubwayMarshLandRptGetAPIRequest

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

TaobaoSubwayMarshLandRptGetAPIRequest 获取捡漏词包分时报表数据 API请求 taobao.subway.marsh.land.rpt.get

获取捡漏词包分时报表数据

func NewTaobaoSubwayMarshLandRptGetRequest

func NewTaobaoSubwayMarshLandRptGetRequest() *TaobaoSubwayMarshLandRptGetAPIRequest

NewTaobaoSubwayMarshLandRptGetRequest 初始化TaobaoSubwayMarshLandRptGetAPIRequest对象

func (TaobaoSubwayMarshLandRptGetAPIRequest) GetAdgroupIdEqual

func (r TaobaoSubwayMarshLandRptGetAPIRequest) GetAdgroupIdEqual() string

GetAdgroupIdEqual AdgroupIdEqual Getter

func (TaobaoSubwayMarshLandRptGetAPIRequest) GetApiMethodName

func (r TaobaoSubwayMarshLandRptGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayMarshLandRptGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayMarshLandRptGetAPIRequest) GetCampaignIdEqual

func (r TaobaoSubwayMarshLandRptGetAPIRequest) GetCampaignIdEqual() string

GetCampaignIdEqual CampaignIdEqual Getter

func (TaobaoSubwayMarshLandRptGetAPIRequest) GetEndDate

GetEndDate EndDate Getter

func (TaobaoSubwayMarshLandRptGetAPIRequest) GetIsAutoMatchEqual

func (r TaobaoSubwayMarshLandRptGetAPIRequest) GetIsAutoMatchEqual() string

GetIsAutoMatchEqual IsAutoMatchEqual Getter

func (TaobaoSubwayMarshLandRptGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSubwayMarshLandRptGetAPIRequest) GetStartDate

GetStartDate StartDate Getter

func (*TaobaoSubwayMarshLandRptGetAPIRequest) SetAdgroupIdEqual

func (r *TaobaoSubwayMarshLandRptGetAPIRequest) SetAdgroupIdEqual(_adgroupIdEqual string) error

SetAdgroupIdEqual is AdgroupIdEqual Setter 推广组id

func (*TaobaoSubwayMarshLandRptGetAPIRequest) SetCampaignIdEqual

func (r *TaobaoSubwayMarshLandRptGetAPIRequest) SetCampaignIdEqual(_campaignIdEqual string) error

SetCampaignIdEqual is CampaignIdEqual Setter 计划id

func (*TaobaoSubwayMarshLandRptGetAPIRequest) SetEndDate

func (r *TaobaoSubwayMarshLandRptGetAPIRequest) SetEndDate(_endDate string) error

SetEndDate is EndDate Setter 2021-05-11

func (*TaobaoSubwayMarshLandRptGetAPIRequest) SetIsAutoMatchEqual

func (r *TaobaoSubwayMarshLandRptGetAPIRequest) SetIsAutoMatchEqual(_isAutoMatchEqual string) error

SetIsAutoMatchEqual is IsAutoMatchEqual Setter 词包类型(捡漏词包填19)

func (*TaobaoSubwayMarshLandRptGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSubwayMarshLandRptGetAPIRequest) SetStartDate

func (r *TaobaoSubwayMarshLandRptGetAPIRequest) SetStartDate(_startDate string) error

SetStartDate is StartDate Setter 2021-05-05

type TaobaoSubwayMarshLandRptGetAPIResponse

type TaobaoSubwayMarshLandRptGetAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayMarshLandRptGetAPIResponseModel
}

TaobaoSubwayMarshLandRptGetAPIResponse 获取捡漏词包分时报表数据 API返回值 taobao.subway.marsh.land.rpt.get

获取捡漏词包分时报表数据

type TaobaoSubwayMarshLandRptGetAPIResponseModel

type TaobaoSubwayMarshLandRptGetAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_marsh_land_rpt_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 捡漏词包分时报表数据列表
	ResultList []RptResult `json:"result_list,omitempty" xml:"result_list>rpt_result,omitempty"`
}

TaobaoSubwayMarshLandRptGetAPIResponseModel is 获取捡漏词包分时报表数据 成功返回结果

type TaobaoSubwayVideoStateGetAPIRequest added in v1.2.5

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

TaobaoSubwayVideoStateGetAPIRequest 获取视频状态 API请求 taobao.subway.video.state.get

获取已上传视频的状态

func NewTaobaoSubwayVideoStateGetRequest added in v1.2.5

func NewTaobaoSubwayVideoStateGetRequest() *TaobaoSubwayVideoStateGetAPIRequest

NewTaobaoSubwayVideoStateGetRequest 初始化TaobaoSubwayVideoStateGetAPIRequest对象

func (TaobaoSubwayVideoStateGetAPIRequest) GetApiMethodName added in v1.2.5

func (r TaobaoSubwayVideoStateGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayVideoStateGetAPIRequest) GetApiParams added in v1.2.5

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayVideoStateGetAPIRequest) GetNick added in v1.2.5

GetNick Nick Getter

func (TaobaoSubwayVideoStateGetAPIRequest) GetVideoId added in v1.2.5

GetVideoId VideoId Getter

func (*TaobaoSubwayVideoStateGetAPIRequest) SetNick added in v1.2.5

SetNick is Nick Setter 账号昵称

func (*TaobaoSubwayVideoStateGetAPIRequest) SetVideoId added in v1.2.5

func (r *TaobaoSubwayVideoStateGetAPIRequest) SetVideoId(_videoId int64) error

SetVideoId is VideoId Setter videoId

type TaobaoSubwayVideoStateGetAPIResponse added in v1.2.5

type TaobaoSubwayVideoStateGetAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayVideoStateGetAPIResponseModel
}

TaobaoSubwayVideoStateGetAPIResponse 获取视频状态 API返回值 taobao.subway.video.state.get

获取已上传视频的状态

type TaobaoSubwayVideoStateGetAPIResponseModel added in v1.2.5

type TaobaoSubwayVideoStateGetAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_video_state_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 1, "等待转码"     2, "转码中"     3, "转码失败"     4, "等待审核"     5, "未通过审核"     6, "通过审核"     7, "已删除"     8, "不符合规范"
	Result int64 `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoSubwayVideoStateGetAPIResponseModel is 获取视频状态 成功返回结果

type TaobaoSubwayWordpackageGetAPIRequest

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

TaobaoSubwayWordpackageGetAPIRequest 获取词包列表 API请求 taobao.subway.wordpackage.get

获取流量智选、捡漏词包等词包列表

func NewTaobaoSubwayWordpackageGetRequest

func NewTaobaoSubwayWordpackageGetRequest() *TaobaoSubwayWordpackageGetAPIRequest

NewTaobaoSubwayWordpackageGetRequest 初始化TaobaoSubwayWordpackageGetAPIRequest对象

func (TaobaoSubwayWordpackageGetAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSubwayWordpackageGetAPIRequest) GetApiMethodName

func (r TaobaoSubwayWordpackageGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayWordpackageGetAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayWordpackageGetAPIRequest) GetNick

GetNick Nick Getter

func (*TaobaoSubwayWordpackageGetAPIRequest) SetAdgroupId

func (r *TaobaoSubwayWordpackageGetAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组id

func (*TaobaoSubwayWordpackageGetAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

type TaobaoSubwayWordpackageGetAPIResponse

type TaobaoSubwayWordpackageGetAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayWordpackageGetAPIResponseModel
}

TaobaoSubwayWordpackageGetAPIResponse 获取词包列表 API返回值 taobao.subway.wordpackage.get

获取流量智选、捡漏词包等词包列表

type TaobaoSubwayWordpackageGetAPIResponseModel

type TaobaoSubwayWordpackageGetAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_wordpackage_get_response"`
	// 平台颁发的每次请求访问的唯一标识
	RequestId string `json:"request_id,omitempty" xml:"request_id,omitempty"`
	// 词包结果列表
	ResultList []SiriusItemWordPackageDto `json:"result_list,omitempty" xml:"result_list>sirius_item_word_package_dto,omitempty"`
}

TaobaoSubwayWordpackageGetAPIResponseModel is 获取词包列表 成功返回结果

type TaobaoSubwayWordpackageUpdateAPIRequest

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

TaobaoSubwayWordpackageUpdateAPIRequest 批量更新词包 API请求 taobao.subway.wordpackage.update

批量更新词包

func NewTaobaoSubwayWordpackageUpdateRequest

func NewTaobaoSubwayWordpackageUpdateRequest() *TaobaoSubwayWordpackageUpdateAPIRequest

NewTaobaoSubwayWordpackageUpdateRequest 初始化TaobaoSubwayWordpackageUpdateAPIRequest对象

func (TaobaoSubwayWordpackageUpdateAPIRequest) GetAdgroupId

GetAdgroupId AdgroupId Getter

func (TaobaoSubwayWordpackageUpdateAPIRequest) GetApiMethodName

func (r TaobaoSubwayWordpackageUpdateAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayWordpackageUpdateAPIRequest) GetApiParams

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayWordpackageUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSubwayWordpackageUpdateAPIRequest) GetWordPackageDTOS

GetWordPackageDTOS WordPackageDTOS Getter

func (*TaobaoSubwayWordpackageUpdateAPIRequest) SetAdgroupId

func (r *TaobaoSubwayWordpackageUpdateAPIRequest) SetAdgroupId(_adgroupId int64) error

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSubwayWordpackageUpdateAPIRequest) SetNick

SetNick is Nick Setter 主人昵称

func (*TaobaoSubwayWordpackageUpdateAPIRequest) SetWordPackageDTOS

func (r *TaobaoSubwayWordpackageUpdateAPIRequest) SetWordPackageDTOS(_wordPackageDTOS []ItemWordPackageDto) error

SetWordPackageDTOS is WordPackageDTOS Setter 词包列表

type TaobaoSubwayWordpackageUpdateAPIResponse

type TaobaoSubwayWordpackageUpdateAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayWordpackageUpdateAPIResponseModel
}

TaobaoSubwayWordpackageUpdateAPIResponse 批量更新词包 API返回值 taobao.subway.wordpackage.update

批量更新词包

type TaobaoSubwayWordpackageUpdateAPIResponseModel

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

TaobaoSubwayWordpackageUpdateAPIResponseModel is 批量更新词包 成功返回结果

type TaobaoSubwayWordpackageUpdateResult

type TaobaoSubwayWordpackageUpdateResult struct {
	// 更新数目
	Result int64 `json:"result,omitempty" xml:"result,omitempty"`
}

TaobaoSubwayWordpackageUpdateResult 结构体

type VideoFeedDto added in v1.2.5

type VideoFeedDto struct {
	// 视频状态描述
	StateDesc string `json:"state_desc,omitempty" xml:"state_desc,omitempty"`
	// 视频比例
	Ratio string `json:"ratio,omitempty" xml:"ratio,omitempty"`
	// 视频类型
	SizeType int64 `json:"size_type,omitempty" xml:"size_type,omitempty"`
	// 视频ID
	VideoId int64 `json:"video_id,omitempty" xml:"video_id,omitempty"`
	// itemId
	ItemId int64 `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 视频宽度
	Width int64 `json:"width,omitempty" xml:"width,omitempty"`
	// 视频状态码
	State int64 `json:"state,omitempty" xml:"state,omitempty"`
	// 视频高度
	Height int64 `json:"height,omitempty" xml:"height,omitempty"`
}

VideoFeedDto 结构体

type Wordscorelist

type Wordscorelist struct {
	// 移动质量得分(另外值为-1:所属的campaign没有该投放设备,且所属的adgroup有该投放设备的投放中的创意、-2:所属的campaign有该投放设备,且所属的adgroup没有该投放设备的投放中的创意、-3:所属的campaign没有该投放设备,且所属的adgroup没有该投放设备的投放中的创意)
	WirelessQscore string `json:"wireless_qscore,omitempty" xml:"wireless_qscore,omitempty"`
	// 移动点击转化率(买家体验)
	WirelessCvrscore string `json:"wireless_cvrscore,omitempty" xml:"wireless_cvrscore,omitempty"`
	// 移动创意质量(创意效果)
	WirelessCreativescore string `json:"wireless_creativescore,omitempty" xml:"wireless_creativescore,omitempty"`
	// 移动店铺质量(账户表现)
	WirelessCustscore string `json:"wireless_custscore,omitempty" xml:"wireless_custscore,omitempty"`
	// 移动相关性,同kwscore
	WirelessRelescore string `json:"wireless_relescore,omitempty" xml:"wireless_relescore,omitempty"`
	// 昵称
	Nick string `json:"nick,omitempty" xml:"nick,omitempty"`
	// 类目质量得分
	Catscore string `json:"catscore,omitempty" xml:"catscore,omitempty"`
	// 词相关性分数
	Kwscore string `json:"kwscore,omitempty" xml:"kwscore,omitempty"`
	// PC质量得分(另外值为-1:所属的campaign没有该投放设备,且所属的adgroup有该投放设备的投放中的创意、-2:所属的campaign有该投放设备,且所属的adgroup没有该投放设备的投放中的创意、-3:所属的campaign没有该投放设备,且所属的adgroup没有该投放设备的投放中的创意)
	Qscore string `json:"qscore,omitempty" xml:"qscore,omitempty"`
	// 关键词
	Word string `json:"word,omitempty" xml:"word,omitempty"`
	// 点击转化率(买家体验)
	Cvrscore string `json:"cvrscore,omitempty" xml:"cvrscore,omitempty"`
	// 创意质量(创意效果)
	Creativescore string `json:"creativescore,omitempty" xml:"creativescore,omitempty"`
	// 店铺质量(账户表现)
	Custscore string `json:"custscore,omitempty" xml:"custscore,omitempty"`
	// 属性得分
	Pscore string `json:"pscore,omitempty" xml:"pscore,omitempty"`
	// 相关性,同kwscore
	Relescore string `json:"relescore,omitempty" xml:"relescore,omitempty"`
	// 广告类型  单品: "tbuad"; 店铺: "addp";
	AdType string `json:"ad_type,omitempty" xml:"ad_type,omitempty"`
	// 词id
	KeywordId int64 `json:"keyword_id,omitempty" xml:"keyword_id,omitempty"`
	// 推广组id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 计划id
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 客户id
	CustomerId int64 `json:"customer_id,omitempty" xml:"customer_id,omitempty"`
	// 词是否能推左
	Plflag int64 `json:"plflag,omitempty" xml:"plflag,omitempty"`
	// 词是否有首屏展示机会。值含义(4: 有展现机会,且能上首屏 2: 有展示机会,上不了首屏、1: 无展现机会,更上不了首屏)
	WirelessMatchflag int64 `json:"wireless_matchflag,omitempty" xml:"wireless_matchflag,omitempty"`
	// 最低展现出价
	MinPrice int64 `json:"min_price,omitempty" xml:"min_price,omitempty"`
	// 词在pc端是否能首页推左(0:不能推左、1:可以推左),此标记仅代表首页推左标
	PcLeftFlag int64 `json:"pc_left_flag,omitempty" xml:"pc_left_flag,omitempty"`
}

Wordscorelist 结构体

type YesterdayInfo

type YesterdayInfo struct {
	// 昨日点击量
	Click string `json:"click,omitempty" xml:"click,omitempty"`
	// 昨日展现量
	Impression string `json:"impression,omitempty" xml:"impression,omitempty"`
}

YesterdayInfo 结构体

Source Files

Jump to

Keyboard shortcuts

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