simba

package
v1.3.3 Latest Latest
Warning

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

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

Documentation

Overview

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

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

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Adgroup added in v1.3.1

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 AdgroupOcpcVo added in v1.2.9

type AdgroupOcpcVo struct {
	// OCPC溢价比例
	OcpcRatio int64 `json:"ocpc_ratio,omitempty" xml:"ocpc_ratio,omitempty"`
	// OCPC是否开启,false:否,true:是
	EnableOcpc bool `json:"enable_ocpc,omitempty" xml:"enable_ocpc,omitempty"`
}

AdgroupOcpcVo 结构体

type AdgroupPage added in v1.3.1

type AdgroupPage struct {
	// 商品对象列表
	AdgroupList []Adgroup `json:"adgroup_list,omitempty" xml:"adgroup_list>adgroup,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 AdgroupQueryVo added in v1.2.9

type AdgroupQueryVo struct {
	// 计划id集合
	CampaignIdList []int64 `json:"campaign_id_list,omitempty" xml:"campaign_id_list>int64,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
}

AdgroupQueryVo 结构体

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 AdgroupVo added in v1.2.9

type AdgroupVo struct {
	// 计划名称
	CampaignName string `json:"campaign_name,omitempty" xml:"campaign_name,omitempty"`
	// 单元名称
	AdgroupName string `json:"adgroup_name,omitempty" xml:"adgroup_name,omitempty"`
	// 前端展示状态,pause:暂停推广,start:正在推广,terminate:结束推广,wait:等待推广,pending:准备推广,wait_pay:计划未付款
	DisplayStatus string `json:"display_status,omitempty" xml:"display_status,omitempty"`
	// 审核拒绝原因
	AuditReason string `json:"audit_reason,omitempty" xml:"audit_reason,omitempty"`
	// 推广主体类型,item:商品,item_private_mini:独享橱窗,shop:店铺,content:内容,short_video:短视频,user_define:自定义;
	PromotionType string `json:"promotion_type,omitempty" xml:"promotion_type,omitempty"`
	// 推广子主体类型,item:商品,item_private_mini:独享橱窗,shop:店铺,you_hao_huo:有好货,picture:图文,short_video:短视频,live_room:直播间,live_spot:看点,tao_blocks:淘积木,user_define_url:自定义url
	SubPromotionType string `json:"sub_promotion_type,omitempty" xml:"sub_promotion_type,omitempty"`
	// 视频组件名称
	AliveGroupName string `json:"alive_group_name,omitempty" xml:"alive_group_name,omitempty"`
	// 智能创意生成状态,success:合成成功,fail:合成失败
	BlackCreativeStatus string `json:"black_creative_status,omitempty" xml:"black_creative_status,omitempty"`
	// 计划id,计划已经存在场景必填,eg:添加主体、编辑计划状态等场景
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 单元id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 投放状态,-1:未进入投放状态,0:用户设置状态-下线,1:用户设置状态-上线,2:合同未生效,9:投放结束,105:待支付
	OnlineStatus int64 `json:"online_status,omitempty" xml:"online_status,omitempty"`
	// 风控审核状态,-1:待审核,0:后台下线状态,1:后台上线状态
	AuditStatus int64 `json:"audit_status,omitempty" xml:"audit_status,omitempty"`
	// 单元智能出价信息
	AdgroupOcpc *AdgroupOcpcVo `json:"adgroup_ocpc,omitempty" xml:"adgroup_ocpc,omitempty"`
	// 主体类型对应的物料信息
	Material *CommonMaterialVo `json:"material,omitempty" xml:"material,omitempty"`
	// 视频组件id,0:宝贝链接,3:订阅店铺,5:直播,6:加购,7:收藏加购,8:入会有礼,12:关注有礼,11:直播联动,10:自定义模板,13:同店搜
	AliveGroupId int64 `json:"alive_group_id,omitempty" xml:"alive_group_id,omitempty"`
}

AdgroupVo 结构体

type AdzoneConfigVo added in v1.2.9

type AdzoneConfigVo struct {
	// 描述
	AimDesc string `json:"aim_desc,omitempty" xml:"aim_desc,omitempty"`
	// 资源包id
	AdzoneId int64 `json:"adzone_id,omitempty" xml:"adzone_id,omitempty"`
	// 是否支持溢价
	Discount bool `json:"discount,omitempty" xml:"discount,omitempty"`
}

AdzoneConfigVo 结构体

type AdzoneRefQueryVo added in v1.2.9

type AdzoneRefQueryVo struct {
	// 计划id集合
	CampaignIdList []int64 `json:"campaign_id_list,omitempty" xml:"campaign_id_list>int64,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
}

AdzoneRefQueryVo 结构体

type AdzoneRefVo added in v1.2.9

type AdzoneRefVo struct {
	// 操作按钮列表
	OperationList []Integer `json:"operation_list,omitempty" xml:"operation_list>integer,omitempty"`
	// 资源包名字
	AdzoneName string `json:"adzone_name,omitempty" xml:"adzone_name,omitempty"`
	// 计划名称
	CampaignName string `json:"campaign_name,omitempty" xml:"campaign_name,omitempty"`
	// 出价方式,custom_bid:手动出价,max_amount:最大化拿量,cost_control:控成本,roi_control:控投产比
	BidType string `json:"bid_type,omitempty" xml:"bid_type,omitempty"`
	// 状态,start:投放,pause:暂停
	Status string `json:"status,omitempty" xml:"status,omitempty"`
	// 资源包id
	AdzoneId int64 `json:"adzone_id,omitempty" xml:"adzone_id,omitempty"`
	// 计划id,计划已经存在场景必填,eg:添加主体、编辑计划状态等场景
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 资源位/包 溢价
	Discount int64 `json:"discount,omitempty" xml:"discount,omitempty"`
	// 资源位支持的最低溢价
	MinDiscount int64 `json:"min_discount,omitempty" xml:"min_discount,omitempty"`
	// 资源位支持的最高溢价
	MaxDiscount int64 `json:"max_discount,omitempty" xml:"max_discount,omitempty"`
}

AdzoneRefVo 结构体

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 AuditVo added in v1.2.9

type AuditVo struct {
	// 状态,PW:待送审,W:待审核,P:审核通过,R:审核拒绝,AW:合成中,AP:合成通过,AR:合成失败,T:排查中,PP:部分通过,E:创意过期,A:创意故障
	Status string `json:"status,omitempty" xml:"status,omitempty"`
	// 生效时间
	EffectiveTime string `json:"effective_time,omitempty" xml:"effective_time,omitempty"`
	// 创意过期时间
	ExpireTime string `json:"expire_time,omitempty" xml:"expire_time,omitempty"`
	// 审核原因
	AuditReason string `json:"audit_reason,omitempty" xml:"audit_reason,omitempty"`
	// 创意审核状态,-10:to_promote,-4:tobeadd,-3:feed_handle,-2:reject,-1:handle,0:notchecked,1:passed,-9:qa_reject,-5:uneffect,-7:item_offshelf,-11:business_reject,-12:to_outer_audit,-13:handle_tanx,-14:part_reject,-15:to_rational_audit,-16:part_passed
	AuditStatus int64 `json:"audit_status,omitempty" xml:"audit_status,omitempty"`
}

AuditVo 结构体

type BidStrategyVo added in v1.2.9

type BidStrategyVo struct {
	// 名称
	RankName string `json:"rank_name,omitempty" xml:"rank_name,omitempty"`
	// 溢价
	Dicount int64 `json:"dicount,omitempty" xml:"dicount,omitempty"`
	// 0停止,1生效
	Status int64 `json:"status,omitempty" xml:"status,omitempty"`
	// 抢位排名
	Rank int64 `json:"rank,omitempty" xml:"rank,omitempty"`
}

BidStrategyVo 结构体

type BidwordDefaultQueryVo added in v1.2.9

type BidwordDefaultQueryVo struct {
	// 宝贝id集合
	MaterialIdList []int64 `json:"material_id_list,omitempty" xml:"material_id_list>int64,omitempty"`
}

BidwordDefaultQueryVo 结构体

type BidwordSuggestItemVo added in v1.2.9

type BidwordSuggestItemVo struct {
	// 关键词建议条目集合
	WordList []SuggestBidwordVo `json:"word_list,omitempty" xml:"word_list>suggest_bidword_vo,omitempty"`
	// 宝贝id
	MaterialId int64 `json:"material_id,omitempty" xml:"material_id,omitempty"`
}

BidwordSuggestItemVo 结构体

type BidwordSuggestQueryVo added in v1.2.9

type BidwordSuggestQueryVo struct {
	// 人群id
	CrowdIdList []int64 `json:"crowd_id_list,omitempty" xml:"crowd_id_list>int64,omitempty"`
	// 类型,kr_overall:综合推荐,kr_flow:精准引流,kr_category:类目优质词,kr_industry:行业机会词,kr_mta:助攻词,kr_search:搜索词联想,kr_byword:以词推词,kr_bycrowd:以人群词,new_default:新建流程默认推词
	Type string `json:"type,omitempty" xml:"type,omitempty"`
	// 宝贝id
	MaterialId int64 `json:"material_id,omitempty" xml:"material_id,omitempty"`
	// 单元id,单元已经存在场景必填
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 计划id,计划已经存在场景必填
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
}

BidwordSuggestQueryVo 结构体

type BrandInfoVo added in v1.2.9

type BrandInfoVo struct {
	// 品牌ID
	BrandId string `json:"brand_id,omitempty" xml:"brand_id,omitempty"`
	// 品牌名称
	BrandName string `json:"brand_name,omitempty" xml:"brand_name,omitempty"`
}

BrandInfoVo 结构体

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 CampaignBrandFilterVo added in v1.2.9

type CampaignBrandFilterVo struct {
	// deeplink维度过滤,Discover:Discover 发现,Engage:Engage 种草,Enthuse:Enthuse 互动,Perform:Perform 行动,Initial:Initial 首购,Numerous:Numerous 复购,Keen:Keen 至爱
	DeeplinkList []string `json:"deeplink_list,omitempty" xml:"deeplink_list>string,omitempty"`
	// 品牌id
	BrandId string `json:"brand_id,omitempty" xml:"brand_id,omitempty"`
}

CampaignBrandFilterVo 结构体

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 CampaignCrowdFilterVo added in v1.2.9

type CampaignCrowdFilterVo struct {
	// 行为,purchase:购买人群,cart:加购人群,collection:收藏人群,arrival:进店人群
	Behavior string `json:"behavior,omitempty" xml:"behavior,omitempty"`
	// 时间窗口,7:7天,15:15天,30:30天,90:90天,180:180天,365:365天
	Window string `json:"window,omitempty" xml:"window,omitempty"`
}

CampaignCrowdFilterVo 结构体

type CampaignGenderAgeFilterVo added in v1.2.9

type CampaignGenderAgeFilterVo struct {
	// 年龄段,0:,1,2,3,4,5,6
	AgeList []string `json:"age_list,omitempty" xml:"age_list>string,omitempty"`
	// 性别,man:男性人群,woman:女性人群
	Gender string `json:"gender,omitempty" xml:"gender,omitempty"`
}

CampaignGenderAgeFilterVo 结构体

type CampaignGroupQueryVo added in v1.2.9

type CampaignGroupQueryVo struct {
	// 业务身份,枚举信息同'account.get.can.use.bizcode'服务返回结果
	BizCode string `json:"biz_code,omitempty" xml:"biz_code,omitempty"`
	// 计划组名称
	CampaignGroupName string `json:"campaign_group_name,omitempty" xml:"campaign_group_name,omitempty"`
}

CampaignGroupQueryVo 结构体

type CampaignGroupVo added in v1.2.9

type CampaignGroupVo struct {
	// 业务身份,枚举信息同'account.get.can.use.bizcode'服务返回结果
	BizCode string `json:"biz_code,omitempty" xml:"biz_code,omitempty"`
	// 计划组名称
	CampaignGroupName string `json:"campaign_group_name,omitempty" xml:"campaign_group_name,omitempty"`
	// 计划组id
	CampaignGroupId int64 `json:"campaign_group_id,omitempty" xml:"campaign_group_id,omitempty"`
}

CampaignGroupVo 结构体

type CampaignLaunchTimeVo added in v1.2.9

type CampaignLaunchTimeVo struct {
	// 计划开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 计划结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 是否长期投放,true:是,false:否
	LaunchForever bool `json:"launch_forever,omitempty" xml:"launch_forever,omitempty"`
}

CampaignLaunchTimeVo 结构体

type CampaignMiniDetailVo added in v1.2.9

type CampaignMiniDetailVo struct {
	// 橱窗宝贝id列表
	PrivateMiniItemIdList []int64 `json:"private_mini_item_id_list,omitempty" xml:"private_mini_item_id_list>int64,omitempty"`
	// 橱窗宝贝里面置顶的id列表
	PrivateMiniTopItemIdList []int64 `json:"private_mini_top_item_id_list,omitempty" xml:"private_mini_top_item_id_list>int64,omitempty"`
	// 橱窗主题,1:默认主题,7:品牌定制主题,4:店铺主题,5:拉新主题,2:新品主题
	MiniDetailTheme string `json:"mini_detail_theme,omitempty" xml:"mini_detail_theme,omitempty"`
	// 手动选宝贝还是智能,0:黑名单,1:白名单
	PrivateMiniType int64 `json:"private_mini_type,omitempty" xml:"private_mini_type,omitempty"`
}

CampaignMiniDetailVo 结构体

type CampaignOcpcVo added in v1.2.9

type CampaignOcpcVo struct {
	// OCPC是否开启,0:否,1:是
	EnableOcpc string `json:"enable_ocpc,omitempty" xml:"enable_ocpc,omitempty"`
	// OCPC溢价比例
	OcpcRatio int64 `json:"ocpc_ratio,omitempty" xml:"ocpc_ratio,omitempty"`
}

CampaignOcpcVo 结构体

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 CampaignQueryVo added in v1.2.9

type CampaignQueryVo struct {
	// 筛选项-主体类型
	StatusList []string `json:"status_list,omitempty" xml:"status_list>string,omitempty"`
	// 筛选项-主体类型
	PromotionTypeList []string `json:"promotion_type_list,omitempty" xml:"promotion_type_list>string,omitempty"`
	// 计划id
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
}

CampaignQueryVo 结构体

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 CampaignVo added in v1.2.9

type CampaignVo struct {
	// 主体类型,支持一个计划下存在多种类型
	PromotionTypeList []string `json:"promotion_type_list,omitempty" xml:"promotion_type_list>string,omitempty"`
	// 子主体类型,支持一个计划下存在多种类型
	SubPromotionTypeList []string `json:"sub_promotion_type_list,omitempty" xml:"sub_promotion_type_list>string,omitempty"`
	// 地域码
	LaunchAreaStrList []string `json:"launch_area_str_list,omitempty" xml:"launch_area_str_list>string,omitempty"`
	// 投放折扣时段设置
	LaunchPeriodList []LaunchPeriodVo `json:"launch_period_list,omitempty" xml:"launch_period_list>launch_period_vo,omitempty"`
	// 人群过滤
	CrowdFilterList []CampaignCrowdFilterVo `json:"crowd_filter_list,omitempty" xml:"crowd_filter_list>campaign_crowd_filter_vo,omitempty"`
	// 品牌过滤
	BrandFilterList []CampaignBrandFilterVo `json:"brand_filter_list,omitempty" xml:"brand_filter_list>campaign_brand_filter_vo,omitempty"`
	// 品牌正向过滤
	DeeplinkBrandList []DeeplinkBrandVo `json:"deeplink_brand_list,omitempty" xml:"deeplink_brand_list>deeplink_brand_vo,omitempty"`
	// 性别年龄过滤
	GenderAgeFilterList []CampaignGenderAgeFilterVo `json:"gender_age_filter_list,omitempty" xml:"gender_age_filter_list>campaign_gender_age_filter_vo,omitempty"`
	// 自动化选品时屏蔽宝贝
	ShieldItems []int64 `json:"shield_items,omitempty" xml:"shield_items>int64,omitempty"`
	// 宝贝优选里面的指定宝贝
	ScopeItems []int64 `json:"scope_items,omitempty" xml:"scope_items>int64,omitempty"`
	// 单元信息
	AdgroupList []AdgroupVo `json:"adgroup_list,omitempty" xml:"adgroup_list>adgroup_vo,omitempty"`
	// 业务身份,枚举信息同'account.get.can.use.bizcode'服务返回结果
	BizCode string `json:"biz_code,omitempty" xml:"biz_code,omitempty"`
	// 计划组名称
	CampaignGroupName string `json:"campaign_group_name,omitempty" xml:"campaign_group_name,omitempty"`
	// 计划名称
	CampaignName string `json:"campaign_name,omitempty" xml:"campaign_name,omitempty"`
	// 推广场景,promotion_scene_crowd:人群方舟,promotion_scene_item:店铺宝贝运营,promotion_scene_traffic:宝藏场景,AD_STRATEGY_LAXIN:策略中心拉新场景,AD_STRATEGY_SHANGXINLI:策略中心上新礼场景,AD_STRATEGY_FRESH_BOX:策略中心小黑盒场景,AD_STRATEGY_LAXIN_XINXIANG:策略中心拉新新享一笔钱场景,AD_STRATEGY_RUHUI_NEW:策略中心入会快新会员场景,AD_STRATEGY_RUHUI_OLD:策略中心入会快老会员场景,AD_STRATEGY_LIUZI:策略中心留资快场景,AD_STRATEGY_YURE:策略中心活动加速场景,AD_STRATEGY_HUODONG_ESCORT:活动全周期护航计划,AD_STRATEGY_CROWD_INDUSTRY:策略中心行业人群通,AD_STRATEGY_WHOLE_SHOP_SMART:策略中心全店放心推-智能托管,AD_STRATEGY_WHOLE_SHOP_CUSTOM:策略中心全店放心推-自定义,AD_STRATEGY_EVEN_BUDGET:策略中心均匀曝光场景,AD_STRATEGY_SXK_GUARANTEE:万相台上新快确定性保障,AD_STRATEGY_HPJS_GUARANTEE:万相台货品加速确定性保障,AD_STRATEGY_HPJS_TIME_LIMIT:万相台货品加速限时加速,AD_STRATEGY_FANS_HEADLINES:万相台粉丝头条,WXT_AGENCY_XST_CPC:服务商版一键起量(CPC),WXT_AGENCY_XST_CPA:服务商版客源多(CPA),WXT_AGENCY_SHEQUN:服务商版社群(CPA+CPS)
	PromotionScene string `json:"promotion_scene,omitempty" xml:"promotion_scene,omitempty"`
	// 推广目标,shop_item:全店宝贝推广,new_item_speed_car:新品飞车,shop_crowd:店铺人群运营,brand_crowd:品牌人群运营,traffic_shoujiao:淘系焦点图,traffic_nd:全屏微详情
	PromotionGoals string `json:"promotion_goals,omitempty" xml:"promotion_goals,omitempty"`
	// 推广类型
	PromotionModel string `json:"promotion_model,omitempty" xml:"promotion_model,omitempty"`
	// 推广主体类型,item:商品,item_private_mini:独享橱窗,shop:店铺,content:内容,short_video:短视频,user_define:自定义;
	PromotionType string `json:"promotion_type,omitempty" xml:"promotion_type,omitempty"`
	// 推广子主体类型,item:商品,item_private_mini:独享橱窗,shop:店铺,you_hao_huo:有好货,picture:图文,short_video:短视频,live_room:直播间,live_spot:看点,tao_blocks:淘积木,user_define_url:自定义url
	SubPromotionType string `json:"sub_promotion_type,omitempty" xml:"sub_promotion_type,omitempty"`
	// 优化目标,conv:促进成交,coll_cart:促进加购,click:促进点击,deal_count:促进成交笔数,exposure_pv:促进曝光,mini_view:促进橱窗宝贝浏览个数,mini_interactive:促进橱窗宝贝互动,ad_strategy_wangwang:策略中心旺旺咨询,shop_potential:提升潜客人数,shop_interest_new:提升兴趣新客人数,shop_purchase_new:提升首购新客人数,shop_visit_new:提升访问新客人数,shop_repurchase:提升复购人数,high_cvr:提升高转换人群成交人数,deeplink_d:提升品牌发现人数-D,deeplink_e1:提升品牌种草人数-E,deeplink_e2:提升品牌互动人数-E,deeplink_p:提升品牌行动人数-P,deeplink_i:提升品牌首购人数-I,deeplink_n:提升品牌复购人数-N,deeplink_k:提升品牌挚爱人数-K,hf_grass_plant:预热种草,hf_impoundment:预售蓄水,hf_harvest:爆发收割,nd_click:提高互动量,nd_cart:提高加购量,nd_deal:提高成交量,ad_strategy_ruhui_count:策略中心入会快新会员场景入会量目标,ad_strategy_lzl:策略中心留资快留资量目标,ad_strategy_try:策略中心派样量,ad_strategy_view:策略中心优化展现,ad_strategy_auto_trans:策略中心自动流转,ad_strategy_trial_order:策略中心表单获客成本,ad_strategy_liuzi_cost:策略中心广义留资目标,ad_strategy_cool_start:策略中心自动冷启动,ad_strategy_cool_start_mini_aim:策略中心冷启动分阶段目标流转,wxt_agency_ai:A转I人群流转,wxt_agency_smart:自定义场景,form_submit:表单提交,trial_order:试用下单,wangwang_liuzi:旺旺留资
	OptimizeTarget string `json:"optimize_target,omitempty" xml:"optimize_target,omitempty"`
	// 前端展示状态,pause:暂停推广,start:正在推广,terminate:结束推广,wait:等待推广,pending:准备推广,wait_pay:计划未付款
	DisplayStatus string `json:"display_status,omitempty" xml:"display_status,omitempty"`
	// 预算类型,normal:日预算,total:总预算,cycle:活动周期预算,day_freeze:日预算冻结,unlimit:不限预算
	DmcType string `json:"dmc_type,omitempty" xml:"dmc_type,omitempty"`
	// 日预算金额
	DayBudget string `json:"day_budget,omitempty" xml:"day_budget,omitempty"`
	// 日预算投放方式, quick:天内尽快,smooth:天内平滑
	SmoothOption string `json:"smooth_option,omitempty" xml:"smooth_option,omitempty"`
	// 周期预算金额
	TotalBudget string `json:"total_budget,omitempty" xml:"total_budget,omitempty"`
	// 周期预算投放方式, quick:天内尽快,smooth:天内平滑
	PeriodSmooth string `json:"period_smooth,omitempty" xml:"period_smooth,omitempty"`
	// 出价方式,custom_bid:手动出价,max_amount:最大化拿量,cost_control:控成本,roi_control:控投产比
	BidType string `json:"bid_type,omitempty" xml:"bid_type,omitempty"`
	// 手动出价时,最大金额
	MaxPrice string `json:"max_price,omitempty" xml:"max_price,omitempty"`
	// 手动出价时,最小金额
	MinPrice string `json:"min_price,omitempty" xml:"min_price,omitempty"`
	// 出价单位
	BidUnit string `json:"bid_unit,omitempty" xml:"bid_unit,omitempty"`
	// 出价约束类型,non:无约束,click:点击成本,coll_cart:收藏加购成本(非场景推广),cart:收藏加购成本(场景推广),conv:成交成本(非场景推广),deal:成交成本(场景推广),dir_conv:直接成交成本,roi:投产比约束
	ConstraintType string `json:"constraint_type,omitempty" xml:"constraint_type,omitempty"`
	// 出价约束值
	ConstraintValue string `json:"constraint_value,omitempty" xml:"constraint_value,omitempty"`
	// 冷启动时间
	ColdBootTime string `json:"cold_boot_time,omitempty" xml:"cold_boot_time,omitempty"`
	// 当前计划冷启动阶段,cold:冷启动期,mature:成熟期,acc_fail:冷启动失败,acc_success:冷启动成功,accelerate:加速中
	ColdBootStage string `json:"cold_boot_stage,omitempty" xml:"cold_boot_stage,omitempty"`
	// 分时折扣比例(取当前时刻对应的实际折扣,格式:80%)
	LaunchPeriodDiscount string `json:"launch_period_discount,omitempty" xml:"launch_period_discount,omitempty"`
	// 分时折扣展示时段(取当前时刻对应的半小时区间,格式:09:00-09:30)
	LaunchPeriodDisplayTime string `json:"launch_period_display_time,omitempty" xml:"launch_period_display_time,omitempty"`
	// 选品方式,shop:全店优选,user_define:用户自定义选品,scope:范围圈选,trend:趋势选品
	ItemSelectedMode string `json:"item_selected_mode,omitempty" xml:"item_selected_mode,omitempty"`
	// 优选集合,effect:效果优选,growing:全店成长,activity:活动选品,industry:行业尖货,scope:定义选品
	ShopItemType string `json:"shop_item_type,omitempty" xml:"shop_item_type,omitempty"`
	// 置顶时间
	TopTime string `json:"top_time,omitempty" xml:"top_time,omitempty"`
	// 计划组id
	CampaignGroupId int64 `json:"campaign_group_id,omitempty" xml:"campaign_group_id,omitempty"`
	// 计划id,计划已经存在场景必填,eg:添加主体、编辑计划状态等场景
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 投放状态,-1:未进入投放状态,0:用户设置状态-下线,1:用户设置状态-上线,2:合同未生效,9:投放结束,105:待支付
	OnlineStatus int64 `json:"online_status,omitempty" xml:"online_status,omitempty"`
	// 周期预算周期天数
	BudgetPeriod int64 `json:"budget_period,omitempty" xml:"budget_period,omitempty"`
	// ocpc出价
	CampaignOcpc *CampaignOcpcVo `json:"campaign_ocpc,omitempty" xml:"campaign_ocpc,omitempty"`
	// 冷启动标识,0:否,1:是
	ColdBoot int64 `json:"cold_boot,omitempty" xml:"cold_boot,omitempty"`
	// 计划投放时间
	LaunchTime *CampaignLaunchTimeVo `json:"launch_time,omitempty" xml:"launch_time,omitempty"`
	// 橱窗相关
	MiniDetail *CampaignMiniDetailVo `json:"mini_detail,omitempty" xml:"mini_detail,omitempty"`
	// 置顶状态,true:置顶,false:不置顶
	TopStatus bool `json:"top_status,omitempty" xml:"top_status,omitempty"`
}

CampaignVo 结构体

type CategoryQueryVo added in v1.2.9

type CategoryQueryVo struct {
	// 类目名称
	CatName string `json:"cat_name,omitempty" xml:"cat_name,omitempty"`
	// 类目id
	CatId int64 `json:"cat_id,omitempty" xml:"cat_id,omitempty"`
	// 类目级别,一级类目、二级目录
	CatLevel int64 `json:"cat_level,omitempty" xml:"cat_level,omitempty"`
}

CategoryQueryVo 结构体

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 CommonMaterialVo added in v1.2.9

type CommonMaterialVo struct {
	// 生命周期指标-越迁阶段列表,列表中最多有2个元素。在页面上展示的时候,按照元素的索引,从左到右依次展示即
	LifeCycleList []ItemLifeCycleViewVo `json:"life_cycle_list,omitempty" xml:"life_cycle_list>item_life_cycle_view_vo,omitempty"`
	// 物料名称
	MaterialName string `json:"material_name,omitempty" xml:"material_name,omitempty"`
	// 标题
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 图片地址
	ImgUrl string `json:"img_url,omitempty" xml:"img_url,omitempty"`
	// 跳转链接
	LinkUrl string `json:"link_url,omitempty" xml:"link_url,omitempty"`
	// 价格
	Price string `json:"price,omitempty" xml:"price,omitempty"`
	// 首次上架时间
	FirstStartsTime string `json:"first_starts_time,omitempty" xml:"first_starts_time,omitempty"`
	// 最近上架时间
	Starts string `json:"starts,omitempty" xml:"starts,omitempty"`
	// 主站类目路径,空格分隔多级
	CategoryId string `json:"category_id,omitempty" xml:"category_id,omitempty"`
	// 推广主体类型,item:商品,item_private_mini:独享橱窗,shop:店铺,content:内容,short_video:短视频,user_define:自定义;
	PromotionType string `json:"promotion_type,omitempty" xml:"promotion_type,omitempty"`
	// 推广子主体类型,item:商品,item_private_mini:独享橱窗,shop:店铺,you_hao_huo:有好货,picture:图文,short_video:短视频,live_room:直播间,live_spot:看点,tao_blocks:淘积木,user_define_url:自定义url
	SubPromotionType string `json:"sub_promotion_type,omitempty" xml:"sub_promotion_type,omitempty"`
	// 生命周期指标-同叶子类目均值对比
	LifeCycleDiffWithAvg string `json:"life_cycle_diff_with_avg,omitempty" xml:"life_cycle_diff_with_avg,omitempty"`
	// 生命周期指标-同叶子类目均值对比提示文案
	LifeCycleDiffWithAvgTips string `json:"life_cycle_diff_with_avg_tips,omitempty" xml:"life_cycle_diff_with_avg_tips,omitempty"`
	// 商品成长指标-成长文案
	GrowDesc string `json:"grow_desc,omitempty" xml:"grow_desc,omitempty"`
	// 物料id
	MaterialId int64 `json:"material_id,omitempty" xml:"material_id,omitempty"`
	// 物料类型,1:淘宝宝贝,2:淘宝店铺,3:cms LandingPage页面,4:cms 分流总页面,5:自定义,201:PC店铺LandingPage页面,202:无线店铺LandingPage页面,203:内容LandingPage页面,204:淘宝直播,210:淘宝直播用户ID,205:有好货,209:无线店铺Tab3页面,212:超级品牌日LandingPage页面,211:超级发布会LandingPage页面,301:ICBU商品,302:ICBU PC店铺LandingPage页面,303:ICBU PC店铺,8:用户ID,9:信息流淘积木用户ID,10:口碑用户ID,206:店铺优惠券,207:商品优惠券,208:直播单品,309:直播间商品半屏卡,304:1688商品,305:内容平台-短视频,306:附近门店-用户ID,307:饿了么-菜品,401:LAZADA商品,501:飞猪酒店,502:飞猪商品,503:飞猪短信,601:淘积木页面,1001:AE宝贝,1101:淘宝宝贝SKU,310:内容平台-订阅内容
	MaterialType int64 `json:"material_type,omitempty" xml:"material_type,omitempty"`
	// 销量
	BidCount int64 `json:"bid_count,omitempty" xml:"bid_count,omitempty"`
	// 库存
	Quantity int64 `json:"quantity,omitempty" xml:"quantity,omitempty"`
	// 生命周期指标-天数
	LifeCycleDays int64 `json:"life_cycle_days,omitempty" xml:"life_cycle_days,omitempty"`
	// 商品成长指标-成交排名
	GrowRank int64 `json:"grow_rank,omitempty" xml:"grow_rank,omitempty"`
}

CommonMaterialVo 结构体

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"`
	// 视频url
	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"`
	// 视频id
	VideoId int64 `json:"video_id,omitempty" xml:"video_id,omitempty"`
}

Creative 结构体

type CreativeAdzonePreviewVo added in v1.2.9

type CreativeAdzonePreviewVo struct {
	// 创意预览返回前端展示对象
	PreviewDataList []CreativePreviewResultVo `json:"preview_data_list,omitempty" xml:"preview_data_list>creative_preview_result_vo,omitempty"`
	// 资源包名字
	AdzoneName string `json:"adzone_name,omitempty" xml:"adzone_name,omitempty"`
	// 资源位类型,1:首焦,2:猜你喜欢,3:NewDetail
	AdzoneType int64 `json:"adzone_type,omitempty" xml:"adzone_type,omitempty"`
	// 资源包id
	AdzoneId int64 `json:"adzone_id,omitempty" xml:"adzone_id,omitempty"`
}

CreativeAdzonePreviewVo 结构体

type CreativeChildrenVo added in v1.2.9

type CreativeChildrenVo struct {
	// 素材集合
	MaterialList []ItemMaterialVo `json:"material_list,omitempty" xml:"material_list>item_material_vo,omitempty"`
}

CreativeChildrenVo 结构体

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 CreativePreviewResultVo added in v1.2.9

type CreativePreviewResultVo struct {
	// 预览创意图片地址
	PreviewImgUrl string `json:"preview_img_url,omitempty" xml:"preview_img_url,omitempty"`
	// 预览落地页地址
	PreviewClickUrl string `json:"preview_click_url,omitempty" xml:"preview_click_url,omitempty"`
	// 预览创意尺寸
	PreviewSize string `json:"preview_size,omitempty" xml:"preview_size,omitempty"`
	// 预览创意尺寸
	PreviewScale string `json:"preview_scale,omitempty" xml:"preview_scale,omitempty"`
	// 视频地址
	PreviewVideoPath string `json:"preview_video_path,omitempty" xml:"preview_video_path,omitempty"`
	// 视频封面
	PreviewVideoImage string `json:"preview_video_image,omitempty" xml:"preview_video_image,omitempty"`
	// 预览创意类型,2:图片,10:创意模板,12:微视频
	PreviewFormat int64 `json:"preview_format,omitempty" xml:"preview_format,omitempty"`
}

CreativePreviewResultVo 结构体

type CreativePromotionEntityVo added in v1.2.9

type CreativePromotionEntityVo struct {
	// 推广主体类型,item:商品,item_private_mini:独享橱窗,shop:店铺,content:内容,short_video:短视频,user_define:自定义;
	PromotionType string `json:"promotion_type,omitempty" xml:"promotion_type,omitempty"`
	// 推广子主体类型,item:商品,item_private_mini:独享橱窗,shop:店铺,you_hao_huo:有好货,picture:图文,short_video:短视频,live_room:直播间,live_spot:看点,tao_blocks:淘积木,user_define_url:自定义url
	SubPromotionType string `json:"sub_promotion_type,omitempty" xml:"sub_promotion_type,omitempty"`
	// 推广主体id
	PromotionEntityId int64 `json:"promotion_entity_id,omitempty" xml:"promotion_entity_id,omitempty"`
	// 主体物料信息
	Material *PromotionMaterialInfoVo `json:"material,omitempty" xml:"material,omitempty"`
}

CreativePromotionEntityVo 结构体

type CreativeQueryVo added in v1.2.9

type CreativeQueryVo struct {
	// 单元id集合
	AdgroupIdList []int64 `json:"adgroup_id_list,omitempty" xml:"adgroup_id_list>int64,omitempty"`
	// 计划id集合
	CampaignIdList []int64 `json:"campaign_id_list,omitempty" xml:"campaign_id_list>int64,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 报表查询条件
	RptQuery *RptQueryVo `json:"rpt_query,omitempty" xml:"rpt_query,omitempty"`
	// 创意id
	CreativeId int64 `json:"creative_id,omitempty" xml:"creative_id,omitempty"`
}

CreativeQueryVo 结构体

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 CreativeRefVo added in v1.2.9

type CreativeRefVo struct {
	// 单品创意素材
	MaterialList []ItemMaterialVo `json:"material_list,omitempty" xml:"material_list>item_material_vo,omitempty"`
	// 跳转地址媒体类型,1:PC,2:无线,3:PC和无线
	ClickurlMediaTypeList []string `json:"clickurl_media_type_list,omitempty" xml:"clickurl_media_type_list>string,omitempty"`
	// 审核信息
	AdzoneAuditResultList []AuditVo `json:"adzone_audit_result_list,omitempty" xml:"adzone_audit_result_list>audit_vo,omitempty"`
	// 创意预览信息
	PreviewList []CreativeAdzonePreviewVo `json:"preview_list,omitempty" xml:"preview_list>creative_adzone_preview_vo,omitempty"`
	// 单品创意视频
	ItemVideos []ItemVideoVo `json:"item_videos,omitempty" xml:"item_videos>item_video_vo,omitempty"`
	// 创意关联宝贝
	ItemIdList []int64 `json:"item_id_list,omitempty" xml:"item_id_list>int64,omitempty"`
	// 关键词推广素材
	Children []CreativeChildrenVo `json:"children,omitempty" xml:"children>creative_children_vo,omitempty"`
	// 计划名称
	CampaignName string `json:"campaign_name,omitempty" xml:"campaign_name,omitempty"`
	// 单元名称
	AdgroupName string `json:"adgroup_name,omitempty" xml:"adgroup_name,omitempty"`
	// 创意名称
	CreativeName string `json:"creative_name,omitempty" xml:"creative_name,omitempty"`
	// 前端创意中心id
	CreativeCenterId string `json:"creative_center_id,omitempty" xml:"creative_center_id,omitempty"`
	// 从海棠获取的地址
	JsInHtml string `json:"js_in_html,omitempty" xml:"js_in_html,omitempty"`
	// 从海棠获取的templateData
	TemplateData string `json:"template_data,omitempty" xml:"template_data,omitempty"`
	// 创意尺寸
	CreativeSize string `json:"creative_size,omitempty" xml:"creative_size,omitempty"`
	// 创意开始时间,用户设置
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 创意结束时间,用户设置
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 更新时间
	UpdateTime string `json:"update_time,omitempty" xml:"update_time,omitempty"`
	// 扩展数据
	ExtendData string `json:"extend_data,omitempty" xml:"extend_data,omitempty"`
	// 推广标题
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 一跳地址
	ImagePath string `json:"image_path,omitempty" xml:"image_path,omitempty"`
	// 二跳地址
	ClickUrl string `json:"click_url,omitempty" xml:"click_url,omitempty"`
	// 视频时长
	VideoDuration string `json:"video_duration,omitempty" xml:"video_duration,omitempty"`
	// 视频地址
	VideoPath string `json:"video_path,omitempty" xml:"video_path,omitempty"`
	// 视频封面地址
	VideoImagePath string `json:"video_image_path,omitempty" xml:"video_image_path,omitempty"`
	// tab类型,101:竖版大图800x1200,102:竖版视频800x1200,103:竖版长图513x750,104:竖版视频512x750,105:竖版模板513x750,113:方图800x800,114:方视频800x800,115:横版大图320x90,116:横版大图240x100,117:横版大图140x120,118:横版大图730x350,119:横版大图846x220,120:横版大图780x210,121:横版大图840x90,122:横版大图180x100,124:横版大图980x200,125:横版大图820x90,126:竖版视频750x1000,127:竖版视频720x960,128:竖版视频1080x1440,129:竖版视频720x1280,130:竖版视频1080x1920
	TabType string `json:"tab_type,omitempty" xml:"tab_type,omitempty"`
	// tab类型名称,101:竖版大图800x1200,102:竖版视频800x1200,103:竖版长图513x750,104:竖版视频512x750,105:竖版模板513x750,113:方图800x800,114:方视频800x800,115:横版大图320x90,116:横版大图240x100,117:横版大图140x120,118:横版大图730x350,119:横版大图846x220,120:横版大图780x210,121:横版大图840x90,122:横版大图180x100,124:横版大图980x200,125:横版大图820x90,126:竖版视频750x1000,127:竖版视频720x960,128:竖版视频1080x1440,129:竖版视频720x1280,130:竖版视频1080x1920
	TabTypeName string `json:"tab_type_name,omitempty" xml:"tab_type_name,omitempty"`
	// 创意类型名称,1:自定义创意,1:主副图创意,1:主图视频创意,5:智能创意
	TypeName string `json:"type_name,omitempty" xml:"type_name,omitempty"`
	// 创意类型名称,1:自定义创意,1:主副图创意,1:主图视频创意,5:智能创意
	Type string `json:"type,omitempty" xml:"type,omitempty"`
	// 创意是否为主图视频创意,异步创建,1:是,其他不是
	MainPicVideo string `json:"main_pic_video,omitempty" xml:"main_pic_video,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:PSD创意,4:动态文案创意,5:自动化创意,6:智能创意,7:综合静态创意,8:综合智能创意,9:自动直播创意,10:元素化创意,11:素材类创意,12:钻展多图创意
	CreativeType int64 `json:"creative_type,omitempty" xml:"creative_type,omitempty"`
	// 创意来源,1:本地上传,2:BannerMaker,3:CreativeCenter,4:LuBan,5:直播广场,6:活动招商,7:海棠,8:原生创意
	Source int64 `json:"source,omitempty" xml:"source,omitempty"`
	// 创意格式,1:文字,2:图片,3:Flash,4:视频,5:文字链,9:FLASH不遮盖,10:创意模板,11:视频直播,12:微视频,203:智能创意-三图创意
	Format int64 `json:"format,omitempty" xml:"format,omitempty"`
	// 创意模板ID,
	TemplateId int64 `json:"template_id,omitempty" xml:"template_id,omitempty"`
	// 外部实体id,eg:前端创意中心id
	OuterId int64 `json:"outer_id,omitempty" xml:"outer_id,omitempty"`
	// 审核信息
	Audit *AuditVo `json:"audit,omitempty" xml:"audit,omitempty"`
	// 创意状态,1:ON,-1:ARCHIVE
	OnlineStatus int64 `json:"online_status,omitempty" xml:"online_status,omitempty"`
	// 推广主体
	CreativePromotionEntity *CreativePromotionEntityVo `json:"creative_promotion_entity,omitempty" xml:"creative_promotion_entity,omitempty"`
	// 物料图片信息
	MaterialImageInfo *MaterialImageInfoVo `json:"material_image_info,omitempty" xml:"material_image_info,omitempty"`
	// 视频id
	VideoId int64 `json:"video_id,omitempty" xml:"video_id,omitempty"`
}

CreativeRefVo 结构体

type CreativeVo added in v1.2.9

type CreativeVo struct {
	// 单品创意素材
	MaterialList []ItemMaterialVo `json:"material_list,omitempty" xml:"material_list>item_material_vo,omitempty"`
	// 跳转地址媒体类型,1:PC,2:无线,3:PC和无线
	ClickurlMediaTypeList []string `json:"clickurl_media_type_list,omitempty" xml:"clickurl_media_type_list>string,omitempty"`
	// 审核信息
	AdzoneAuditResultList []AuditVo `json:"adzone_audit_result_list,omitempty" xml:"adzone_audit_result_list>audit_vo,omitempty"`
	// 创意预览信息
	PreviewList []CreativeAdzonePreviewVo `json:"preview_list,omitempty" xml:"preview_list>creative_adzone_preview_vo,omitempty"`
	// 单品创意视频
	ItemVideos []ItemVideoVo `json:"item_videos,omitempty" xml:"item_videos>item_video_vo,omitempty"`
	// 创意关联宝贝
	ItemIdList []int64 `json:"item_id_list,omitempty" xml:"item_id_list>int64,omitempty"`
	// 关键词推广素材
	Children []CreativeChildrenVo `json:"children,omitempty" xml:"children>creative_children_vo,omitempty"`
	// 创意名称
	CreativeName string `json:"creative_name,omitempty" xml:"creative_name,omitempty"`
	// 前端创意中心id
	CreativeCenterId string `json:"creative_center_id,omitempty" xml:"creative_center_id,omitempty"`
	// 从海棠获取的地址
	JsInHtml string `json:"js_in_html,omitempty" xml:"js_in_html,omitempty"`
	// 从海棠获取的templateData
	TemplateData string `json:"template_data,omitempty" xml:"template_data,omitempty"`
	// 创意尺寸
	CreativeSize string `json:"creative_size,omitempty" xml:"creative_size,omitempty"`
	// 创意开始时间,用户设置
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 创意结束时间,用户设置
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 创建时间
	CreateTime string `json:"create_time,omitempty" xml:"create_time,omitempty"`
	// 更新时间
	UpdateTime string `json:"update_time,omitempty" xml:"update_time,omitempty"`
	// 扩展数据
	ExtendData string `json:"extend_data,omitempty" xml:"extend_data,omitempty"`
	// 推广标题
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 一跳地址
	ImagePath string `json:"image_path,omitempty" xml:"image_path,omitempty"`
	// 二跳地址
	ClickUrl string `json:"click_url,omitempty" xml:"click_url,omitempty"`
	// 视频时长
	VideoDuration string `json:"video_duration,omitempty" xml:"video_duration,omitempty"`
	// 视频地址
	VideoPath string `json:"video_path,omitempty" xml:"video_path,omitempty"`
	// 视频封面地址
	VideoImagePath string `json:"video_image_path,omitempty" xml:"video_image_path,omitempty"`
	// tab类型,101:竖版大图800x1200,102:竖版视频800x1200,103:竖版长图513x750,104:竖版视频512x750,105:竖版模板513x750,113:方图800x800,114:方视频800x800,115:横版大图320x90,116:横版大图240x100,117:横版大图140x120,118:横版大图730x350,119:横版大图846x220,120:横版大图780x210,121:横版大图840x90,122:横版大图180x100,124:横版大图980x200,125:横版大图820x90,126:竖版视频750x1000,127:竖版视频720x960,128:竖版视频1080x1440,129:竖版视频720x1280,130:竖版视频1080x1920
	TabType string `json:"tab_type,omitempty" xml:"tab_type,omitempty"`
	// tab类型名称,101:竖版大图800x1200,102:竖版视频800x1200,103:竖版长图513x750,104:竖版视频512x750,105:竖版模板513x750,113:方图800x800,114:方视频800x800,115:横版大图320x90,116:横版大图240x100,117:横版大图140x120,118:横版大图730x350,119:横版大图846x220,120:横版大图780x210,121:横版大图840x90,122:横版大图180x100,124:横版大图980x200,125:横版大图820x90,126:竖版视频750x1000,127:竖版视频720x960,128:竖版视频1080x1440,129:竖版视频720x1280,130:竖版视频1080x1920
	TabTypeName string `json:"tab_type_name,omitempty" xml:"tab_type_name,omitempty"`
	// 创意类型名称,1:自定义创意,1:主副图创意,1:主图视频创意,5:智能创意
	TypeName string `json:"type_name,omitempty" xml:"type_name,omitempty"`
	// 创意类型名称,1:自定义创意,1:主副图创意,1:主图视频创意,5:智能创意
	Type string `json:"type,omitempty" xml:"type,omitempty"`
	// 创意是否为主图视频创意,异步创建,1:是,其他不是
	MainPicVideo string `json:"main_pic_video,omitempty" xml:"main_pic_video,omitempty"`
	// 创意id
	CreativeId int64 `json:"creative_id,omitempty" xml:"creative_id,omitempty"`
	// 创意分类,1:静态创意,2:智能创意,3:PSD创意,4:动态文案创意,5:自动化创意,6:智能创意,7:综合静态创意,8:综合智能创意,9:自动直播创意,10:元素化创意,11:素材类创意,12:钻展多图创意
	CreativeType int64 `json:"creative_type,omitempty" xml:"creative_type,omitempty"`
	// 创意来源,1:本地上传,2:BannerMaker,3:CreativeCenter,4:LuBan,5:直播广场,6:活动招商,7:海棠,8:原生创意
	Source int64 `json:"source,omitempty" xml:"source,omitempty"`
	// 创意格式,1:文字,2:图片,3:Flash,4:视频,5:文字链,9:FLASH不遮盖,10:创意模板,11:视频直播,12:微视频,203:智能创意-三图创意
	Format int64 `json:"format,omitempty" xml:"format,omitempty"`
	// 创意模板ID,
	TemplateId int64 `json:"template_id,omitempty" xml:"template_id,omitempty"`
	// 外部实体id,eg:前端创意中心id
	OuterId int64 `json:"outer_id,omitempty" xml:"outer_id,omitempty"`
	// 审核信息
	Audit *AuditVo `json:"audit,omitempty" xml:"audit,omitempty"`
	// 创意状态,1:ON,-1:ARCHIVE
	OnlineStatus int64 `json:"online_status,omitempty" xml:"online_status,omitempty"`
	// 推广主体
	CreativePromotionEntity *CreativePromotionEntityVo `json:"creative_promotion_entity,omitempty" xml:"creative_promotion_entity,omitempty"`
	// 物料图片信息
	MaterialImageInfo *MaterialImageInfoVo `json:"material_image_info,omitempty" xml:"material_image_info,omitempty"`
	// 视频id
	VideoId int64 `json:"video_id,omitempty" xml:"video_id,omitempty"`
}

CreativeVo 结构体

type CrowdBindQueryVo added in v1.2.9

type CrowdBindQueryVo struct {
	// 计划id集合
	CampaignIdList []int64 `json:"campaign_id_list,omitempty" xml:"campaign_id_list>int64,omitempty"`
	// 单元id集合,单元已经存在场景必填
	AdgroupIdList []int64 `json:"adgroup_id_list,omitempty" xml:"adgroup_id_list>int64,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 计划id,计划已经存在场景必填
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
}

CrowdBindQueryVo 结构体

type CrowdBindResultVo added in v1.2.9

type CrowdBindResultVo struct {
	// 定向关联关系
	CrowdList []CrowdRefVo `json:"crowd_list,omitempty" xml:"crowd_list>crowd_ref_vo,omitempty"`
	// 计划id,计划已经存在场景必填,eg:添加主体、编辑计划状态等场景
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 单元id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
}

CrowdBindResultVo 结构体

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 CrowdRecQueryVo added in v1.2.9

type CrowdRecQueryVo struct {
	// 推荐场景,bd_sys:系统推荐人群,bd_ctr:行业榜单-点击率,bd_col_cart_rate:行业榜单-收藏加购,bd_cvr:行业榜单-转化率,bd_assist:行业榜单-助攻率,recSceneNew:关键词推广-新建流程,recSceneEffect:效果榜单,recSceneHeat:热度榜单,recSceneActivity:大促人群推荐,recSceneHomePage:首页榜单,recSceneAdgroupQualityOptions:单元列表智能拉新人群-优质组合推荐
	RecSceneList []string `json:"rec_scene_list,omitempty" xml:"rec_scene_list>string,omitempty"`
	// 宝贝id集合
	MaterialIdList []int64 `json:"material_id_list,omitempty" xml:"material_id_list>int64,omitempty"`
	// 选品方式,shop:全店优选,user_define:用户自定义选品,scope:范围圈选,trend:趋势选品
	ItemSelectedMode string `json:"item_selected_mode,omitempty" xml:"item_selected_mode,omitempty"`
	// 优选集合,effect:效果优选,growing:全店成长,activity:活动选品,industry:行业尖货,scope:定义选品
	ShopItemType string `json:"shop_item_type,omitempty" xml:"shop_item_type,omitempty"`
	// 推广主体类型
	PromotionType string `json:"promotion_type,omitempty" xml:"promotion_type,omitempty"`
	// 主体类型,支持一个计划下存在多种类型
	SubPromotionType string `json:"sub_promotion_type,omitempty" xml:"sub_promotion_type,omitempty"`
	// 优化目标,conv:促进成交,coll_cart:促进加购,click:促进点击,deal_count:促进成交笔数,exposure_pv:促进曝光,mini_view:促进橱窗宝贝浏览个数,mini_interactive:促进橱窗宝贝互动,ad_strategy_wangwang:策略中心旺旺咨询,shop_potential:提升潜客人数,shop_interest_new:提升兴趣新客人数,shop_purchase_new:提升首购新客人数,shop_visit_new:提升访问新客人数,shop_repurchase:提升复购人数,high_cvr:提升高转换人群成交人数,deeplink_d:提升品牌发现人数-D,deeplink_e1:提升品牌种草人数-E,deeplink_e2:提升品牌互动人数-E,deeplink_p:提升品牌行动人数-P,deeplink_i:提升品牌首购人数-I,deeplink_n:提升品牌复购人数-N,deeplink_k:提升品牌挚爱人数-K,hf_grass_plant:预热种草,hf_impoundment:预售蓄水,hf_harvest:爆发收割,nd_click:提高互动量,nd_cart:提高加购量,nd_deal:提高成交量,ad_strategy_ruhui_count:策略中心入会快新会员场景入会量目标,ad_strategy_lzl:策略中心留资快留资量目标,ad_strategy_try:策略中心派样量,ad_strategy_view:策略中心优化展现,ad_strategy_auto_trans:策略中心自动流转,ad_strategy_trial_order:策略中心表单获客成本,ad_strategy_liuzi_cost:策略中心广义留资目标,ad_strategy_cool_start:策略中心自动冷启动,ad_strategy_cool_start_mini_aim:策略中心冷启动分阶段目标流转,wxt_agency_ai:A转I人群流转,wxt_agency_smart:自定义场景,form_submit:表单提交,trial_order:试用下单,wangwang_liuzi:旺旺留资
	OptimizeTarget string `json:"optimize_target,omitempty" xml:"optimize_target,omitempty"`
	// 推广场景,promotion_scene_crowd:人群方舟,promotion_scene_item:店铺宝贝运营,promotion_scene_traffic:宝藏场景,AD_STRATEGY_LAXIN:策略中心拉新场景,AD_STRATEGY_SHANGXINLI:策略中心上新礼场景,AD_STRATEGY_FRESH_BOX:策略中心小黑盒场景,AD_STRATEGY_LAXIN_XINXIANG:策略中心拉新新享一笔钱场景,AD_STRATEGY_RUHUI_NEW:策略中心入会快新会员场景,AD_STRATEGY_RUHUI_OLD:策略中心入会快老会员场景,AD_STRATEGY_LIUZI:策略中心留资快场景,AD_STRATEGY_YURE:策略中心活动加速场景,AD_STRATEGY_HUODONG_ESCORT:活动全周期护航计划,AD_STRATEGY_CROWD_INDUSTRY:策略中心行业人群通,AD_STRATEGY_WHOLE_SHOP_SMART:策略中心全店放心推-智能托管,AD_STRATEGY_WHOLE_SHOP_CUSTOM:策略中心全店放心推-自定义,AD_STRATEGY_EVEN_BUDGET:策略中心均匀曝光场景,AD_STRATEGY_SXK_GUARANTEE:万相台上新快确定性保障,AD_STRATEGY_HPJS_GUARANTEE:万相台货品加速确定性保障,AD_STRATEGY_HPJS_TIME_LIMIT:万相台货品加速限时加速,AD_STRATEGY_FANS_HEADLINES:万相台粉丝头条,WXT_AGENCY_XST_CPC:服务商版一键起量(CPC),WXT_AGENCY_XST_CPA:服务商版客源多(CPA),WXT_AGENCY_SHEQUN:服务商版社群(CPA+CPS)
	PromotionScene string `json:"promotion_scene,omitempty" xml:"promotion_scene,omitempty"`
	// 计划id
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 类目查询
	Category *CategoryQueryVo `json:"category,omitempty" xml:"category,omitempty"`
}

CrowdRecQueryVo 结构体

type CrowdRefVo added in v1.2.9

type CrowdRefVo struct {
	// 横向管理
	ShowTagList []ShowTagVo `json:"show_tag_list,omitempty" xml:"show_tag_list>show_tag_vo,omitempty"`
	// 计划id
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 单元id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 人群主键id
	CrowdId int64 `json:"crowd_id,omitempty" xml:"crowd_id,omitempty"`
	// 定向状态,0:下线 1:上线
	OnlineStatus int64 `json:"online_status,omitempty" xml:"online_status,omitempty"`
	// 人群
	Crowd *CrowdVo `json:"crowd,omitempty" xml:"crowd,omitempty"`
	// 出价
	Price *PriceVo `json:"price,omitempty" xml:"price,omitempty"`
}

CrowdRefVo 结构体

type CrowdVo added in v1.2.9

type CrowdVo struct {
	// 种子人群关联信息
	ExtendSeedCrowdList []ExtendSeedCrowdRefVo `json:"extend_seed_crowd_list,omitempty" xml:"extend_seed_crowd_list>extend_seed_crowd_ref_vo,omitempty"`
	// 子人群信息
	SubCrowdList []SubCrowdVo `json:"sub_crowd_list,omitempty" xml:"sub_crowd_list>sub_crowd_vo,omitempty"`
	// 人群名称
	CrowdName string `json:"crowd_name,omitempty" xml:"crowd_name,omitempty"`
	// 人群值
	CrowdValue string `json:"crowd_value,omitempty" xml:"crowd_value,omitempty"`
	// 扩展倍数。低中高对应不同的倍数,由产品定义具体值,未来业务可支持滑动条。注意:倍数是指最终人数/种子人数,比如种子人群100万,扩展比种子多了50万,也就是总共150万,这时候扩展倍数是1.5而不是0.5
	LookalikeMultiple string `json:"lookalike_multiple,omitempty" xml:"lookalike_multiple,omitempty"`
	// 人群主键id
	CrowdId int64 `json:"crowd_id,omitempty" xml:"crowd_id,omitempty"`
	// 定向类型
	TargetType int64 `json:"target_type,omitempty" xml:"target_type,omitempty"`
	// 定向标签
	Label *LabelVo `json:"label,omitempty" xml:"label,omitempty"`
}

CrowdVo 结构体

type DeeplinkBrandVo added in v1.2.9

type DeeplinkBrandVo struct {
	// 品牌id
	DeeplinkBrandId string `json:"deeplink_brand_id,omitempty" xml:"deeplink_brand_id,omitempty"`
	// 品牌名字
	DeeplinkBrandName string `json:"deeplink_brand_name,omitempty" xml:"deeplink_brand_name,omitempty"`
}

DeeplinkBrandVo 结构体

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 DmpBaseOptionalSelectVo added in v1.2.9

type DmpBaseOptionalSelectVo struct {
	// 数据来源app
	AppIdList []int64 `json:"app_id_list,omitempty" xml:"app_id_list>int64,omitempty"`
	// 来源展示名称
	DisplayName string `json:"display_name,omitempty" xml:"display_name,omitempty"`
}

DmpBaseOptionalSelectVo 结构体

type DmpModuleConfigVo added in v1.2.9

type DmpModuleConfigVo struct {
	// dmp数据来源选项
	DmpBaseOptionalSelectAppList []DmpBaseOptionalSelectVo `` /* 128-byte string literal not displayed */
	// 投放渠道id,筛在达摩盘平台上创建且同步到业务线的人群
	DeliverAppId int64 `json:"deliver_app_id,omitempty" xml:"deliver_app_id,omitempty"`
}

DmpModuleConfigVo 结构体

type ExtendSeedCrowdRefVo added in v1.2.9

type ExtendSeedCrowdRefVo struct {
	// 种子人群信息
	Crowd *ExtendSeedCrowdVo `json:"crowd,omitempty" xml:"crowd,omitempty"`
}

ExtendSeedCrowdRefVo 结构体

type ExtendSeedCrowdVo added in v1.2.9

type ExtendSeedCrowdVo struct {
	// 人群名称
	CrowdName string `json:"crowd_name,omitempty" xml:"crowd_name,omitempty"`
	// 人群主键id
	CrowdId int64 `json:"crowd_id,omitempty" xml:"crowd_id,omitempty"`
	// 种子人群label信息
	Label *ExtendSeedLabelVo `json:"label,omitempty" xml:"label,omitempty"`
}

ExtendSeedCrowdVo 结构体

type ExtendSeedLabelVo added in v1.2.9

type ExtendSeedLabelVo struct {
}

ExtendSeedLabelVo 结构体

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 Integer added in v1.2.9

type Integer struct {
	// 操作项code
	Code string `json:"code,omitempty" xml:"code,omitempty"`
	// 操作项名称
	Name string `json:"name,omitempty" xml:"name,omitempty"`
	// 悬浮提示
	Tips string `json:"tips,omitempty" xml:"tips,omitempty"`
	// 是否可操作
	Disabled string `json:"disabled,omitempty" xml:"disabled,omitempty"`
	// 扩展属性
	Properties string `json:"properties,omitempty" xml:"properties,omitempty"`
}

Integer 结构体

type ItemLifeCycleViewVo added in v1.2.9

type ItemLifeCycleViewVo struct {
	// 周期文案
	LifeCycleDesc string `json:"life_cycle_desc,omitempty" xml:"life_cycle_desc,omitempty"`
	// 文案颜色
	Color string `json:"color,omitempty" xml:"color,omitempty"`
	// 周期提示文案
	Tips string `json:"tips,omitempty" xml:"tips,omitempty"`
}

ItemLifeCycleViewVo 结构体

type ItemMaterialVo added in v1.2.9

type ItemMaterialVo struct {
	// url
	Url string `json:"url,omitempty" xml:"url,omitempty"`
	// 封面url
	CoverUrl string `json:"cover_url,omitempty" xml:"cover_url,omitempty"`
	// 物料id
	MaterialId int64 `json:"material_id,omitempty" xml:"material_id,omitempty"`
	// 视频id
	VideoId int64 `json:"video_id,omitempty" xml:"video_id,omitempty"`
	// 创意来源,1:本地上传,2:BannerMaker,3:CreativeCenter,4:LuBan,5:直播广场,6:活动招商,7:海棠,8:原生创意
	Source int64 `json:"source,omitempty" xml:"source,omitempty"`
	// 对应的海棠id
	HaitangId int64 `json:"haitang_id,omitempty" xml:"haitang_id,omitempty"`
	// 格式类型,1:图片,2:抄底文案,3:产品词,4:属性词,5:链接,51:淘积木URL,6:文案,7:长图,8:短文本,9:长文本,10:LOGO,11:视频,12:底图,13:tag,14:智能文案,15:促销词,16:标签词,17:优惠券,18:原价,19:折扣价,20:智能标题候选词,21:宝贝图 包括主图 长图 副图,22:宝贝标题,23:智能图,24:美观图,32:短标题,33:算法产出,仅供审核用图,34:淘宝素材中心图片,35:店铺名称,36:商品SKU图,37:商品详情页图,38:创意图,39:算法加工后的直播间封面图,40:算法加工后的直播间宝贝图,41:算法加工后的直播间宝贝标题文案,42:长图3:4,44:创意样式,45:主搜商品卡片轮播图,46:主搜商品3比4图,47:图标图片,48:二跳短视频,101:用户主标题,102:用户副标题,103:用户标题3,25:长图微视频,26:方图微视频,27:审核通过后原图做成的ppt视频,28:账号头像,29:素材组下非审核素材内容,主要传递数据用,30:鹿班商品图,31:算法剪辑视频,60:创意中心打包的图(只有外审使用),50:视频ID素材,124:自动审核通过,125:仅合理性审核的图片,126:仅合理性审核的文案
	FormatType int64 `json:"format_type,omitempty" xml:"format_type,omitempty"`
}

ItemMaterialVo 结构体

type ItemQueryVo added in v1.2.9

type ItemQueryVo struct {
	// 宝贝id集合
	ItemIdList []int64 `json:"item_id_list,omitempty" xml:"item_id_list>int64,omitempty"`
	// 宝贝名称,支持模糊查询
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 推广场景,promotion_scene_crowd:人群方舟,promotion_scene_item:店铺宝贝运营,promotion_scene_traffic:宝藏场景,AD_STRATEGY_LAXIN:策略中心拉新场景,AD_STRATEGY_SHANGXINLI:策略中心上新礼场景,AD_STRATEGY_FRESH_BOX:策略中心小黑盒场景,AD_STRATEGY_LAXIN_XINXIANG:策略中心拉新新享一笔钱场景,AD_STRATEGY_RUHUI_NEW:策略中心入会快新会员场景,AD_STRATEGY_RUHUI_OLD:策略中心入会快老会员场景,AD_STRATEGY_LIUZI:策略中心留资快场景,AD_STRATEGY_YURE:策略中心活动加速场景,AD_STRATEGY_HUODONG_ESCORT:活动全周期护航计划,AD_STRATEGY_CROWD_INDUSTRY:策略中心行业人群通,AD_STRATEGY_WHOLE_SHOP_SMART:策略中心全店放心推-智能托管,AD_STRATEGY_WHOLE_SHOP_CUSTOM:策略中心全店放心推-自定义,AD_STRATEGY_EVEN_BUDGET:策略中心均匀曝光场景,AD_STRATEGY_SXK_GUARANTEE:万相台上新快确定性保障,AD_STRATEGY_HPJS_GUARANTEE:万相台货品加速确定性保障,AD_STRATEGY_HPJS_TIME_LIMIT:万相台货品加速限时加速,AD_STRATEGY_FANS_HEADLINES:万相台粉丝头条,WXT_AGENCY_XST_CPC:服务商版一键起量(CPC),WXT_AGENCY_XST_CPA:服务商版客源多(CPA),WXT_AGENCY_SHEQUN:服务商版社群(CPA+CPS)
	PromotionScene string `json:"promotion_scene,omitempty" xml:"promotion_scene,omitempty"`
	// 优化目标,conv:促进成交,coll_cart:促进加购,click:促进点击,deal_count:促进成交笔数,exposure_pv:促进曝光,mini_view:促进橱窗宝贝浏览个数,mini_interactive:促进橱窗宝贝互动,ad_strategy_wangwang:策略中心旺旺咨询,shop_potential:提升潜客人数,shop_interest_new:提升兴趣新客人数,shop_purchase_new:提升首购新客人数,shop_visit_new:提升访问新客人数,shop_repurchase:提升复购人数,high_cvr:提升高转换人群成交人数,deeplink_d:提升品牌发现人数-D,deeplink_e1:提升品牌种草人数-E,deeplink_e2:提升品牌互动人数-E,deeplink_p:提升品牌行动人数-P,deeplink_i:提升品牌首购人数-I,deeplink_n:提升品牌复购人数-N,deeplink_k:提升品牌挚爱人数-K,hf_grass_plant:预热种草,hf_impoundment:预售蓄水,hf_harvest:爆发收割,nd_click:提高互动量,nd_cart:提高加购量,nd_deal:提高成交量,ad_strategy_ruhui_count:策略中心入会快新会员场景入会量目标,ad_strategy_lzl:策略中心留资快留资量目标,ad_strategy_try:策略中心派样量,ad_strategy_view:策略中心优化展现,ad_strategy_auto_trans:策略中心自动流转,ad_strategy_trial_order:策略中心表单获客成本,ad_strategy_liuzi_cost:策略中心广义留资目标,ad_strategy_cool_start:策略中心自动冷启动,ad_strategy_cool_start_mini_aim:策略中心冷启动分阶段目标流转,wxt_agency_ai:A转I人群流转,wxt_agency_smart:自定义场景,form_submit:表单提交,trial_order:试用下单,wangwang_liuzi:旺旺留资
	OptimizeTarget string `json:"optimize_target,omitempty" xml:"optimize_target,omitempty"`
	// 选品方式,shop:全店优选,user_define:用户自定义选品,scope:范围圈选,trend:趋势选品
	ItemSelectedMode string `json:"item_selected_mode,omitempty" xml:"item_selected_mode,omitempty"`
	// 优选集合,effect:效果优选,growing:全店成长,activity:活动选品,industry:行业尖货,scope:定义选品
	ShopItemType string `json:"shop_item_type,omitempty" xml:"shop_item_type,omitempty"`
	// 物料来源标识,1:全部宝贝,2:推荐宝贝,3:活动宝贝,4:有好货宝贝,5:图文,6:有好货帖子,7:直播,8:淘积木,9:短视频,10:图文手猜,11:可用津贴券商品,12:全部新品,13:618活动商品,14:可用店铺券宝贝,15:推荐新品,16:首页新品推荐,20:首页推荐,21:图文V任务,22:短视频V任务,23:直播V任务,25:店铺微淘,26:直播合作,24:落地页,27:活动商品,28:首页大促商品,29:投中探测爆款商品,30:已报名的新享宝贝,31:店铺视频,32:包含单元宝贝的淘积木列表,34:达人视频,33:不计入最低价新品,35:首猜精品库,36:首猜精品中的新品,37:行业优选,38:大促推荐新品,39:推广有礼":关于推广有礼,40:效果优选,41:潜力爆品,42:全店成长,43:双11,44:推广有礼,49:新品飞车数据,50:效果优选,53:全店优选二期,55:首单礼金,56:新品直降,57:限时优惠,58:618大促,59:扩容后新品飞车商品池,101:全部,102:优选宝贝":根据该宝贝历史数据预测为适合推广的宝贝。,103:优选流量":根据该宝贝历史数据预测为在引流方面有潜力宝贝。,104:优选转化":根据该宝贝历史数据预测为在转化方面有潜力宝贝。,105:生意参谋":根据店铺宝贝历史数据优选推荐的适合推广的宝贝。,106:生意参谋-物流红包,1000:组件tag开始index,1999:组件tag结束,209:策略中心货品加速单品,201:策略中心推荐宝贝,202:策略中心推荐相似宝贝,203:策略中心智能营销推荐宝贝,204:策略中心大快消TOP单品,205:策略中心新享报名商品,206:策略中心未报名商品,207:策略中心上新单品,214:策略中心上新礼,224:策略中心小黑盒上新,212:策略中心产业带单品,210:策略中心货品加速新的tag,211:策略中心货品加速版本2,213:策略中心大快消入会快,215:策略中心大快消留资快,216:策略中心大快消派样快,219:策略中心大快消预热蓄水,217:策略中心大快消爆发现货,218:策略中心大快消爆发预售,220:策略中心大快消测款,221:策略中心销量明星商品,222:策略中心测款均匀曝光,223:策略中心大测款均匀预算,225:策略中心上新数智经营争霸赛,226:策略中心货品加速数智经营争霸赛,227:策略中心数预热蓄水智经营争霸赛,228:策略中心爆发现货数智经营争霸赛,229:策略中心爆发预售数智经营争霸赛,230:策略中心大快消数智经营争霸赛,1016001:系统优选,1016002:相似宝贝,1100001:极速推宝贝推荐,101111301:冷启动新品,101111302:好货推荐,101111303:趋势主题选品
	TagId int64 `json:"tag_id,omitempty" xml:"tag_id,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
}

ItemQueryVo 结构体

type ItemVideoVo added in v1.2.9

type ItemVideoVo struct {
	// 封面url
	CoverUrl string `json:"cover_url,omitempty" xml:"cover_url,omitempty"`
	// 封面url(海棠)
	Poster string `json:"poster,omitempty" xml:"poster,omitempty"`
	// 视频url
	VideoUrl string `json:"video_url,omitempty" xml:"video_url,omitempty"`
	// 审核描述
	AuditDesc string `json:"audit_desc,omitempty" xml:"audit_desc,omitempty"`
	// 商品
	ItemId int64 `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 创意审核状态,-10:to_promote,-4:tobeadd,-3:feed_handle,-2:reject,-1:handle,0:notchecked,1:passed,-9:qa_reject,-5:uneffect,-7:item_offshelf,-11:business_reject,-12:to_outer_audit,-13:handle_tanx,-14:part_reject,-15:to_rational_audit,-16:part_passed
	AuditState int64 `json:"audit_state,omitempty" xml:"audit_state,omitempty"`
	// 视频id
	VideoId int64 `json:"video_id,omitempty" xml:"video_id,omitempty"`
	// 创意来源,1:本地上传,2:BannerMaker,3:CreativeCenter,4:LuBan,5:直播广场,6:活动招商,7:海棠,8:原生创意
	Source int64 `json:"source,omitempty" xml:"source,omitempty"`
	// 格式类型,1:图片,2:抄底文案,3:产品词,4:属性词,5:链接,51:淘积木URL,6:文案,7:长图,8:短文本,9:长文本,10:LOGO,11:视频,12:底图,13:tag,14:智能文案,15:促销词,16:标签词,17:优惠券,18:原价,19:折扣价,20:智能标题候选词,21:宝贝图 包括主图 长图 副图,22:宝贝标题,23:智能图,24:美观图,32:短标题,33:算法产出,仅供审核用图,34:淘宝素材中心图片,35:店铺名称,36:商品SKU图,37:商品详情页图,38:创意图,39:算法加工后的直播间封面图,40:算法加工后的直播间宝贝图,41:算法加工后的直播间宝贝标题文案,42:长图3:4,44:创意样式,45:主搜商品卡片轮播图,46:主搜商品3比4图,47:图标图片,48:二跳短视频,101:用户主标题,102:用户副标题,103:用户标题3,25:长图微视频,26:方图微视频,27:审核通过后原图做成的ppt视频,28:账号头像,29:素材组下非审核素材内容,主要传递数据用,30:鹿班商品图,31:算法剪辑视频,60:创意中心打包的图(只有外审使用),50:视频ID素材,124:自动审核通过,125:仅合理性审核的图片,126:仅合理性审核的文案
	Type int64 `json:"type,omitempty" xml:"type,omitempty"`
	// 视频宽度
	Width int64 `json:"width,omitempty" xml:"width,omitempty"`
	// 视频高度
	Height int64 `json:"height,omitempty" xml:"height,omitempty"`
	// 视频时长
	Duration int64 `json:"duration,omitempty" xml:"duration,omitempty"`
	// 对应的海棠id
	HaitangId int64 `json:"haitang_id,omitempty" xml:"haitang_id,omitempty"`
}

ItemVideoVo 结构体

type ItemVo added in v1.2.9

type ItemVo struct {
	// 商品标题
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 商品图片
	ImgUrl string `json:"img_url,omitempty" xml:"img_url,omitempty"`
	// 商品地址
	LinkUrl string `json:"link_url,omitempty" xml:"link_url,omitempty"`
	// 首次上架时间
	FirstStartsTime string `json:"first_starts_time,omitempty" xml:"first_starts_time,omitempty"`
	// 最近上架时间
	Starts string `json:"starts,omitempty" xml:"starts,omitempty"`
	// 主站类目路径,空格分隔多级
	CategoryId string `json:"category_id,omitempty" xml:"category_id,omitempty"`
	// 商品id
	ItemId int64 `json:"item_id,omitempty" xml:"item_id,omitempty"`
	// 价格
	Price int64 `json:"price,omitempty" xml:"price,omitempty"`
	// 销量
	BidCount int64 `json:"bid_count,omitempty" xml:"bid_count,omitempty"`
	// 库存
	Quantity int64 `json:"quantity,omitempty" xml:"quantity,omitempty"`
	// 是否定时上架,true:是,false:否
	Timing bool `json:"timing,omitempty" xml:"timing,omitempty"`
}

ItemVo 结构体

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"`
	// 匹配模式: 1 精确匹配,4 广泛匹配
	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 LabelConfigVo added in v1.2.9

type LabelConfigVo struct {
	// 标签tab名称
	LabelGroupName string `json:"label_group_name,omitempty" xml:"label_group_name,omitempty"`
	// 标签业务类型,extend:扩展人群,seed:种子人群
	BusinessType string `json:"business_type,omitempty" xml:"business_type,omitempty"`
	// 标签id
	LabelId int64 `json:"label_id,omitempty" xml:"label_id,omitempty"`
}

LabelConfigVo 结构体

type LabelOptionProperties added in v1.2.9

type LabelOptionProperties struct {
	// dmp选项分组id
	DmpOptionGroupId string `json:"dmp_option_group_id,omitempty" xml:"dmp_option_group_id,omitempty"`
	// 物料id
	CateName string `json:"cate_name,omitempty" xml:"cate_name,omitempty"`
	// 物料id
	CateId string `json:"cate_id,omitempty" xml:"cate_id,omitempty"`
}

LabelOptionProperties 结构体

type LabelVo added in v1.2.9

type LabelVo struct {
	// 标签选项分组
	OptionGroupList []OptionGroupVo `json:"option_group_list,omitempty" xml:"option_group_list>option_group_vo,omitempty"`
	// 标签选项
	OptionList []OptionVo `json:"option_list,omitempty" xml:"option_list>option_vo,omitempty"`
	// 标签tag
	ShowTagList []ShowTagVo `json:"show_tag_list,omitempty" xml:"show_tag_list>show_tag_vo,omitempty"`
	// 定向标签名称
	LabelName string `json:"label_name,omitempty" xml:"label_name,omitempty"`
	// 定向标签描述
	LabelDesc string `json:"label_desc,omitempty" xml:"label_desc,omitempty"`
	// 定向标签值
	LabelValue string `json:"label_value,omitempty" xml:"label_value,omitempty"`
	// 出价维度,OPTION:标签出价,多个子人群同时出价、LABEL:选项出价,以子人群为出价最小单位
	PriceDimension string `json:"price_dimension,omitempty" xml:"price_dimension,omitempty"`
	// 人群类型,所属类型
	LabelGroupName string `json:"label_group_name,omitempty" xml:"label_group_name,omitempty"`
	// 定向标签类型
	TargetType int64 `json:"target_type,omitempty" xml:"target_type,omitempty"`
	// 定向标签id
	LabelId int64 `json:"label_id,omitempty" xml:"label_id,omitempty"`
	// 透传属性
	LabelOptionProperties *LabelOptionProperties `json:"label_option_properties,omitempty" xml:"label_option_properties,omitempty"`
	// 是否可以绑定多个定向,获取不到 默认为否,true:是 false:否
	IsMulti bool `json:"is_multi,omitempty" xml:"is_multi,omitempty"`
}

LabelVo 结构体

type LaunchPeriodVo added in v1.2.9

type LaunchPeriodVo struct {
	// 第x天各时段的折扣情况
	TimeSpanList []TimeSpanQueryResVo `json:"time_span_list,omitempty" xml:"time_span_list>time_span_query_res_vo,omitempty"`
	// 本周的第x天
	DayOfWeek int64 `json:"day_of_week,omitempty" xml:"day_of_week,omitempty"`
}

LaunchPeriodVo 结构体

type MaterialAccessAllowQueryVo added in v1.2.9

type MaterialAccessAllowQueryVo struct {
	// 宝贝id集合
	MaterialIdList []int64 `json:"material_id_list,omitempty" xml:"material_id_list>int64,omitempty"`
	// 推广主体类型,item:商品,item_private_mini:独享橱窗,shop:店铺,content:内容,short_video:短视频,user_define:自定义;
	PromotionType string `json:"promotion_type,omitempty" xml:"promotion_type,omitempty"`
	// 推广子主体类型,item:商品,item_private_mini:独享橱窗,shop:店铺,you_hao_huo:有好货,picture:图文,short_video:短视频,live_room:直播间,live_spot:看点,tao_blocks:淘积木,user_define_url:自定义url
	SubPromotionType string `json:"sub_promotion_type,omitempty" xml:"sub_promotion_type,omitempty"`
	// 物料类型,1:淘宝宝贝,2:淘宝店铺,3:cms LandingPage页面,4:cms 分流总页面,5:自定义,201:PC店铺LandingPage页面,202:无线店铺LandingPage页面,203:内容LandingPage页面,204:淘宝直播,210:淘宝直播用户ID,205:有好货,209:无线店铺Tab3页面,212:超级品牌日LandingPage页面,211:超级发布会LandingPage页面,301:ICBU商品,302:ICBU PC店铺LandingPage页面,303:ICBU PC店铺,8:用户ID,9:信息流淘积木用户ID,10:口碑用户ID,206:店铺优惠券,207:商品优惠券,208:直播单品,309:直播间商品半屏卡,304:1688商品,305:内容平台-短视频,306:附近门店-用户ID,307:饿了么-菜品,401:LAZADA商品,501:飞猪酒店,502:飞猪商品,503:飞猪短信,601:淘积木页面,1001:AE宝贝,1101:淘宝宝贝SKU,310:内容平台-订阅内容
	MaterialType int64 `json:"material_type,omitempty" xml:"material_type,omitempty"`
	// 是否需要校验资质,true:校验,false:不校验
	NeedQualification bool `json:"need_qualification,omitempty" xml:"need_qualification,omitempty"`
}

MaterialAccessAllowQueryVo 结构体

type MaterialAccessAllowVo added in v1.2.9

type MaterialAccessAllowVo struct {
	// 准入不通过原因
	Reason string `json:"reason,omitempty" xml:"reason,omitempty"`
	// 物料id
	MaterialId int64 `json:"material_id,omitempty" xml:"material_id,omitempty"`
	// 是否通过准入,true:是,false:否
	AccessAllowed bool `json:"access_allowed,omitempty" xml:"access_allowed,omitempty"`
}

MaterialAccessAllowVo 结构体

type MaterialImageInfoVo added in v1.2.9

type MaterialImageInfoVo struct {
	// 图片链接
	ImgUrl string `json:"img_url,omitempty" xml:"img_url,omitempty"`
	// 物料链接
	LinkUrl string `json:"link_url,omitempty" xml:"link_url,omitempty"`
	// 物料名称
	MaterialName string `json:"material_name,omitempty" xml:"material_name,omitempty"`
	// 物料id
	MaterialId int64 `json:"material_id,omitempty" xml:"material_id,omitempty"`
	// 主副图图片位置,主图0,副图从1开始
	ImagePosition int64 `json:"image_position,omitempty" xml:"image_position,omitempty"`
}

MaterialImageInfoVo 结构体

type OptionGroupVo added in v1.2.9

type OptionGroupVo struct {
	// 标签选项
	OptionList []OptionVo `json:"option_list,omitempty" xml:"option_list>option_vo,omitempty"`
	// 标签分组名称
	OptionGroupName string `json:"option_group_name,omitempty" xml:"option_group_name,omitempty"`
}

OptionGroupVo 结构体

type OptionVo added in v1.2.9

type OptionVo struct {
	// 选项名称
	OptionName string `json:"option_name,omitempty" xml:"option_name,omitempty"`
	// 选项值
	OptionValue string `json:"option_value,omitempty" xml:"option_value,omitempty"`
	// 选项描述
	OptionDesc string `json:"option_desc,omitempty" xml:"option_desc,omitempty"`
	// 标签分组名称
	OptionGroupName string `json:"option_group_name,omitempty" xml:"option_group_name,omitempty"`
	// 额外的属性参数
	Properties string `json:"properties,omitempty" xml:"properties,omitempty"`
	// 选项id,(用于关键词推广静态标签生成人群)如基础属性人群标签组合
	TagId int64 `json:"tag_id,omitempty" xml:"tag_id,omitempty"`
	// 透传属性
	LabelOptionProperties *LabelOptionProperties `json:"label_option_properties,omitempty" xml:"label_option_properties,omitempty"`
}

OptionVo 结构体

type PreAddItemCreativeVo added in v1.2.9

type PreAddItemCreativeVo struct {
	// 单品创意素材
	Material *ItemMaterialVo `json:"material,omitempty" xml:"material,omitempty"`
	// 是否有长素材
	HaveLongSucai bool `json:"have_long_sucai,omitempty" xml:"have_long_sucai,omitempty"`
}

PreAddItemCreativeVo 结构体

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 PriceVo added in v1.2.9

type PriceVo struct {
	// 出价
	BidPrice string `json:"bid_price,omitempty" xml:"bid_price,omitempty"`
	// 建议出价
	FitBidPrice string `json:"fit_bid_price,omitempty" xml:"fit_bid_price,omitempty"`
	// 溢价
	Discount string `json:"discount,omitempty" xml:"discount,omitempty"`
	// 建议溢价
	FitDiscount string `json:"fit_discount,omitempty" xml:"fit_discount,omitempty"`
}

PriceVo 结构体

type PromotionMaterialInfoVo added in v1.2.9

type PromotionMaterialInfoVo struct {
	// 图片地址
	ImgUrl string `json:"img_url,omitempty" xml:"img_url,omitempty"`
	// 跳转链接
	LinkUrl string `json:"link_url,omitempty" xml:"link_url,omitempty"`
	// 物料名称
	MaterialName string `json:"material_name,omitempty" xml:"material_name,omitempty"`
	// 标题
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 物料id
	MaterialId int64 `json:"material_id,omitempty" xml:"material_id,omitempty"`
}

PromotionMaterialInfoVo 结构体

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 QscoreSplitDto added in v1.3.1

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 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 ReportQueryVo added in v1.2.9

type ReportQueryVo struct {
	// 场景筛选code
	BizCodeInList []string `json:"biz_code_in_list,omitempty" xml:"biz_code_in_list>string,omitempty"`
	// 优化目标筛选
	StrategyOptimizeTargetInList []int64 `json:"strategy_optimize_target_in_list,omitempty" xml:"strategy_optimize_target_in_list>int64,omitempty"`
	// 计划id筛选
	StrategyCampaignIdInList []int64 `json:"strategy_campaign_id_in_list,omitempty" xml:"strategy_campaign_id_in_list>int64,omitempty"`
	// 单元id筛选
	StrategyAdgroupIdInList []int64 `json:"strategy_adgroup_id_in_list,omitempty" xml:"strategy_adgroup_id_in_list>int64,omitempty"`
	// 主体类型筛选,ITEM_PRIVATE_MINIL-橱窗,SHOP-店铺,USER_DEFINE_URL-自定义
	SubPromotionTypes []string `json:"sub_promotion_types,omitempty" xml:"sub_promotion_types>string,omitempty"`
	// 宝贝id筛选
	ItemIds []int64 `json:"item_ids,omitempty" xml:"item_ids>int64,omitempty"`
	// 流量来源资源包id筛选
	AdzonePkgIdInList []int64 `json:"adzone_pkg_id_in_list,omitempty" xml:"adzone_pkg_id_in_list>int64,omitempty"`
	// 词包还是词
	BidWordTypeInList []string `json:"bid_word_type_in_list,omitempty" xml:"bid_word_type_in_list>string,omitempty"`
	// 省份筛选
	ProvinceIdInList []int64 `json:"province_id_in_list,omitempty" xml:"province_id_in_list>int64,omitempty"`
	// 聚合维度,可用值和选择对应报表类型一致
	QueryDomains []string `json:"query_domains,omitempty" xml:"query_domains>string,omitempty"`
	// 需要下载的指标数据
	QueryFieldInList []string `json:"query_field_in_list,omitempty" xml:"query_field_in_list>string,omitempty"`
	// 汇总类型 sum-汇总,hour-分时,day-分天,week-分周,month-分月
	SplitType string `json:"split_type,omitempty" xml:"split_type,omitempty"`
	// 归因口径,zhai-末次点击归因, mta-mta归因
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 单元id或者名称筛选
	StrategyAdgroupIdOrName string `json:"strategy_adgroup_id_or_name,omitempty" xml:"strategy_adgroup_id_or_name,omitempty"`
	// 人群名称模糊过滤
	StrategyTargetTitleLike string `json:"strategy_target_title_like,omitempty" xml:"strategy_target_title_like,omitempty"`
	// 仅创意报表有效,创意筛选
	StrategyCreativeIdOrName string `json:"strategy_creative_id_or_name,omitempty" xml:"strategy_creative_id_or_name,omitempty"`
	// 词模糊筛选
	StrategyBidwordNameLike string `json:"strategy_bidword_name_like,omitempty" xml:"strategy_bidword_name_like,omitempty"`
	// 词包模糊筛选
	StrategyBidwordPkgNameLike string `json:"strategy_bidword_pkg_name_like,omitempty" xml:"strategy_bidword_pkg_name_like,omitempty"`
	// 报表异步下载文件名称,下载时必填
	ExcelName string `json:"excel_name,omitempty" xml:"excel_name,omitempty"`
	// 下载指标设置, all-全部指标,selected-下载传入指标
	FieldType string `json:"field_type,omitempty" xml:"field_type,omitempty"`
	// 报表下载需要的参数,必填, report_frame_account-账户,report_frame_campaign-计划,report_frame_adgroup-单元,report_frame_bidword-关键词,report_frame_crowd-人群,report_frame_item_promotion-宝贝主体,report_frame_other_promotion-其他主体,report_frame_creative-创意,report_frame_area-地域
	ParentAdcName string `json:"parent_adc_name,omitempty" xml:"parent_adc_name,omitempty"`
	// 归因周期,1、3、7、15、30
	EffectEqual int64 `json:"effect_equal,omitempty" xml:"effect_equal,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
}

ReportQueryVo 结构体

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 RptQueryConditionVo added in v1.2.9

type RptQueryConditionVo struct {
	// 流量来源(资源位包id),可为空
	AdzonePkgIdList []string `json:"adzone_pkg_id_list,omitempty" xml:"adzone_pkg_id_list>string,omitempty"`
	// 归因口径
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 是否查询实时报表,true查实时、false查离线,不传则默认查离线
	IsRt bool `json:"is_rt,omitempty" xml:"is_rt,omitempty"`
}

RptQueryConditionVo 结构体

type RptQueryVo added in v1.2.9

type RptQueryVo struct {
	// 查询条件列表;场景1、实体列表中只需填充汇总报表数据,此时条件列表传一个即可;场景2、实体列表中需同时查询两天的数据做对比,此时条件列表内传两天各自的查询条件;
	ConditionList []RptQueryConditionVo `json:"condition_list,omitempty" xml:"condition_list>rpt_query_condition_vo,omitempty"`
	// 查询指标字段
	Fields string `json:"fields,omitempty" xml:"fields,omitempty"`
}

RptQueryVo 结构体

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"`
	// 流量类型 1: PC站内, 2: PC站外 , 4: 无线站内, 5: 无线站外
	Traffictype string `json:"traffictype,omitempty" xml:"traffictype,omitempty"`
}

RtRptResultEntityDto 结构体

type ShopCategoryVo added in v1.2.9

type ShopCategoryVo struct {
	// 类目名称
	CategoryName string `json:"category_name,omitempty" xml:"category_name,omitempty"`
	// 类目id
	CategoryId int64 `json:"category_id,omitempty" xml:"category_id,omitempty"`
	// 父级类目id
	ParentCategoryId int64 `json:"parent_category_id,omitempty" xml:"parent_category_id,omitempty"`
}

ShopCategoryVo 结构体

type ShopInfoVo added in v1.2.9

type ShopInfoVo struct {
	// 店铺名称
	Title string `json:"title,omitempty" xml:"title,omitempty"`
	// 店铺id
	ShopId int64 `json:"shop_id,omitempty" xml:"shop_id,omitempty"`
}

ShopInfoVo 结构体

type ShowTagVo added in v1.2.9

type ShowTagVo struct {
	// 标签code
	Code string `json:"code,omitempty" xml:"code,omitempty"`
	// 展示文案,不为空则展示
	Name string `json:"name,omitempty" xml:"name,omitempty"`
	// 悬浮描述
	Tips string `json:"tips,omitempty" xml:"tips,omitempty"`
	// 标签左侧图标地址,不为空则展示
	Icon string `json:"icon,omitempty" xml:"icon,omitempty"`
	// 背景颜色
	Color string `json:"color,omitempty" xml:"color,omitempty"`
	// 标签类型
	Type string `json:"type,omitempty" xml:"type,omitempty"`
	// 扩展属性
	Properties string `json:"properties,omitempty" xml:"properties,omitempty"`
}

ShowTagVo 结构体

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 StdCategoryQueryVo added in v1.2.9

type StdCategoryQueryVo struct {
	// 宝贝id集合
	MaterialIdList []int64 `json:"material_id_list,omitempty" xml:"material_id_list>int64,omitempty"`
	// 推广主体类型,item:商品,item_private_mini:独享橱窗,shop:店铺,content:内容,short_video:短视频,user_define:自定义;
	PromotionType string `json:"promotion_type,omitempty" xml:"promotion_type,omitempty"`
	// 父级类目级别
	ParentCatLevel int64 `json:"parent_cat_level,omitempty" xml:"parent_cat_level,omitempty"`
}

StdCategoryQueryVo 结构体

type StdCategoryVo added in v1.2.9

type StdCategoryVo struct {
	// 类目名称
	CatName string `json:"cat_name,omitempty" xml:"cat_name,omitempty"`
	// 类目id
	CatId int64 `json:"cat_id,omitempty" xml:"cat_id,omitempty"`
	// 类目级别,一级类目、二级目录
	CatLevel int64 `json:"cat_level,omitempty" xml:"cat_level,omitempty"`
}

StdCategoryVo 结构体

type SubCrowdVo added in v1.2.9

type SubCrowdVo struct {
	// 子定向名称
	SubcrowdName string `json:"subcrowd_name,omitempty" xml:"subcrowd_name,omitempty"`
	// 子定向值
	SubcrowdValue string `json:"subcrowd_value,omitempty" xml:"subcrowd_value,omitempty"`
}

SubCrowdVo 结构体

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 SuggestBidwordVo added in v1.2.9

type SuggestBidwordVo struct {
	// 关键词
	Word string `json:"word,omitempty" xml:"word,omitempty"`
	// 关键词
	BidPrice string `json:"bid_price,omitempty" xml:"bid_price,omitempty"`
	// 市场平均出价
	AvgPrice string `json:"avg_price,omitempty" xml:"avg_price,omitempty"`
	// 预估展现
	Impression string `json:"impression,omitempty" xml:"impression,omitempty"`
	// 点击率
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// 点击转化率
	Cvr string `json:"cvr,omitempty" xml:"cvr,omitempty"`
	// 相关性,1:差,2:中,3:好
	RelevanceType int64 `json:"relevance_type,omitempty" xml:"relevance_type,omitempty"`
	// 分类,0:宝贝,1:店铺
	Type int64 `json:"type,omitempty" xml:"type,omitempty"`
}

SuggestBidwordVo 结构体

type SuggestWordPackageVo added in v1.2.9

type SuggestWordPackageVo struct {
	// 主题词
	ThemeWordList []string `json:"theme_word_list,omitempty" xml:"theme_word_list>string,omitempty"`
	// 关键词举例
	SimpleWordList []string `json:"simple_word_list,omitempty" xml:"simple_word_list>string,omitempty"`
	// 词包名称
	WordPackageName string `json:"word_package_name,omitempty" xml:"word_package_name,omitempty"`
	// 建议出价
	BidPrice string `json:"bid_price,omitempty" xml:"bid_price,omitempty"`
	// 预估展现
	Impression string `json:"impression,omitempty" xml:"impression,omitempty"`
	// 流量放大系数
	MultiFactor string `json:"multi_factor,omitempty" xml:"multi_factor,omitempty"`
	// 词包id
	WordPackageId int64 `json:"word_package_id,omitempty" xml:"word_package_id,omitempty"`
	// 词包类型,0:流量智选,20:卖点词包
	WordPackageType int64 `json:"word_package_type,omitempty" xml:"word_package_type,omitempty"`
	// 相关性,1:差,2:中,3:好
	RelevanceType int64 `json:"relevance_type,omitempty" xml:"relevance_type,omitempty"`
}

SuggestWordPackageVo 结构体

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAccountBalanceGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAccountBalanceGetAPIRequest) GetRawParams added in v1.2.8

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

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(params 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) GetRawParams added in v1.2.8

func (r TaobaoSimbaAdgroupAddAPIRequest) GetRawParams() model.Params

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupDeleteAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupDeleteAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupidsChangedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupidsChangedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaAdgroupidsChangedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaAdgroupidsChangedGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupidsDeletedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupidsDeletedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaAdgroupidsDeletedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaAdgroupidsDeletedGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaAdgroupsChangedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaAdgroupsChangedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaAdgroupsChangedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaAdgroupsChangedGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

func (*TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) SetAdgroupIds

func (r *TaobaoSimbaAdgroupsbyadgroupidsGetAPIRequest) SetAdgroupIds(_adgroupIds []string) 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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaBidwordPricetoolsAPIRequest) GetBidwordId

GetBidwordId BidwordId Getter

func (TaobaoSimbaBidwordPricetoolsAPIRequest) GetRawParams added in v1.2.8

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

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(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignAddAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignAddAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignAreaGetAPIRequest) GetCampaignId

func (r TaobaoSimbaCampaignAreaGetAPIRequest) GetCampaignId() int64

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignAreaGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignAreaGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignAreaUpdateAPIRequest) GetArea

GetArea Area Getter

func (TaobaoSimbaCampaignAreaUpdateAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignAreaUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignAreaUpdateAPIRequest) GetRawParams added in v1.2.8

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

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参数

func (TaobaoSimbaCampaignAreaoptionsGetAPIRequest) GetRawParams added in v1.2.8

GetRawParams 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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignBudgetGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignBudgetGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignBudgetGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignBudgetUpdateAPIRequest) GetBudget

GetBudget Budget Getter

func (TaobaoSimbaCampaignBudgetUpdateAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignBudgetUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignBudgetUpdateAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignPlatformGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignPlatformGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignPlatformGetAPIRequest) GetRawParams added in v1.2.8

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

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() []string

GetNonsearchChannels NonsearchChannels Getter

func (TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetOutsideDiscount

func (r TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetOutsideDiscount() int64

GetOutsideDiscount OutsideDiscount Getter

func (TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetRawParams added in v1.2.8

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

func (TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetSearchChannels

func (r TaobaoSimbaCampaignPlatformUpdateAPIRequest) GetSearchChannels() []string

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 []string) 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 []string) 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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignScheduleGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaCampaignScheduleGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignScheduleGetAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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参数

func (TaobaoSimbaCampaignTimetemplateFindAPIRequest) GetRawParams added in v1.2.8

GetRawParams 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>adgroup_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

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

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) GetRawParams added in v1.2.8

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

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(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCampaignsGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCampaignsGetAPIRequest) GetRawParams added in v1.2.8

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

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(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCreativeAddAPIRequest) GetImgUrl

GetImgUrl ImgUrl Getter

func (TaobaoSimbaCreativeAddAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCreativeAddAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCreativeDeleteAPIRequest) GetCreativeId

func (r TaobaoSimbaCreativeDeleteAPIRequest) GetCreativeId() int64

GetCreativeId CreativeId Getter

func (TaobaoSimbaCreativeDeleteAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCreativeDeleteAPIRequest) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCreativeidsDeletedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCreativeidsDeletedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaCreativeidsDeletedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaCreativeidsDeletedGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCreativesChangedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCreativesChangedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaCreativesChangedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaCreativesChangedGetAPIRequest) GetRawParams added in v1.2.8

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

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(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCreativesGetAPIRequest) GetCreativeIds

func (r TaobaoSimbaCreativesGetAPIRequest) GetCreativeIds() []string

GetCreativeIds CreativeIds Getter

func (TaobaoSimbaCreativesGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaCreativesGetAPIRequest) GetRawParams added in v1.2.8

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

func (*TaobaoSimbaCreativesGetAPIRequest) SetAdgroupId

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

SetAdgroupId is AdgroupId Setter 推广组Id

func (*TaobaoSimbaCreativesGetAPIRequest) SetCreativeIds

func (r *TaobaoSimbaCreativesGetAPIRequest) SetCreativeIds(_creativeIds []string) 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参数

func (TaobaoSimbaCustomersAuthorizedGetAPIRequest) GetRawParams added in v1.2.8

GetRawParams 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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaCustomersSidGetAPIRequest) GetRawParams added in v1.2.8

GetRawParams 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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaHourReportAccountGetAPIRequest) GetHour

GetHour Hour Getter

func (TaobaoSimbaHourReportAccountGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaHourReportAccountGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaHourReportAdgroupGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaHourReportAdgroupGetAPIRequest) GetHour

GetHour Hour Getter

func (TaobaoSimbaHourReportAdgroupGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaHourReportAdgroupGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaHourReportCampaignGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaHourReportCampaignGetAPIRequest) GetHour

GetHour Hour Getter

func (TaobaoSimbaHourReportCampaignGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaHourReportCampaignGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightCatsdataGetAPIRequest) GetCategoryIdList

func (r TaobaoSimbaInsightCatsdataGetAPIRequest) GetCategoryIdList() []string

GetCategoryIdList CategoryIdList Getter

func (TaobaoSimbaInsightCatsdataGetAPIRequest) GetEndDate

GetEndDate EndDate Getter

func (TaobaoSimbaInsightCatsdataGetAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightCatsinfoGetAPIRequest) GetCategoryIdList

func (r TaobaoSimbaInsightCatsinfoGetAPIRequest) GetCategoryIdList() []string

GetCategoryIdList CategoryIdList Getter

func (TaobaoSimbaInsightCatsinfoGetAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaInsightWordsdataGetAPIRequest) GetBidwordList

func (r TaobaoSimbaInsightWordsdataGetAPIRequest) GetBidwordList() []string

GetBidwordList BidwordList Getter

func (TaobaoSimbaInsightWordsdataGetAPIRequest) GetEndDate

GetEndDate EndDate Getter

func (TaobaoSimbaInsightWordsdataGetAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordAddAPIRequest) GetBidwords

GetBidwords Bidwords Getter

func (TaobaoSimbaKeywordAddAPIRequest) GetRawParams added in v1.2.8

func (r TaobaoSimbaKeywordAddAPIRequest) GetRawParams() model.Params

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

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) GetRawParams added in v1.2.8

GetRawParams 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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordFindbyidsAPIRequest) GetBidwordIds

func (r TaobaoSimbaKeywordFindbyidsAPIRequest) GetBidwordIds() []string

GetBidwordIds BidwordIds Getter

func (TaobaoSimbaKeywordFindbyidsAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordUpdateAPIRequest) GetBidwords

GetBidwords Bidwords Getter

func (TaobaoSimbaKeywordUpdateAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordidsChangedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaKeywordidsChangedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaKeywordidsChangedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaKeywordidsChangedGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordidsDeletedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaKeywordidsDeletedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaKeywordidsDeletedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaKeywordidsDeletedGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsChangedGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaKeywordsChangedGetAPIRequest) GetPageNo

GetPageNo PageNo Getter

func (TaobaoSimbaKeywordsChangedGetAPIRequest) GetPageSize

GetPageSize PageSize Getter

func (TaobaoSimbaKeywordsChangedGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsPricevonSetAPIRequest) GetKeywordidPrices

func (r TaobaoSimbaKeywordsPricevonSetAPIRequest) GetKeywordidPrices() string

GetKeywordidPrices KeywordidPrices Getter

func (TaobaoSimbaKeywordsPricevonSetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaKeywordsPricevonSetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsQscoreGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaKeywordsQscoreGetAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

func (*TaobaoSimbaKeywordsbykeywordidsGetAPIRequest) SetKeywordIds

func (r *TaobaoSimbaKeywordsbykeywordidsGetAPIRequest) SetKeywordIds(_keywordIds []string) 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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordscatQscoreGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaKeywordscatQscoreGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaKeywordsvonAddAPIRequest) GetKeywordPrices

func (r TaobaoSimbaKeywordsvonAddAPIRequest) GetKeywordPrices() string

GetKeywordPrices KeywordPrices Getter

func (TaobaoSimbaKeywordsvonAddAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaKeywordsvonAddAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaLoginAuthsignGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaLoginAuthsignGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetEndTime

GetEndTime EndTime Getter

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRptTargetingtagGetAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRtrptBidwordGetAPIRequest) GetCampaignId

func (r TaobaoSimbaRtrptBidwordGetAPIRequest) GetCampaignId() int64

GetCampaignId CampaignId Getter

func (TaobaoSimbaRtrptBidwordGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRtrptBidwordGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRtrptCampaignGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRtrptCampaignGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRtrptCreativeGetAPIRequest) GetCampaignId

func (r TaobaoSimbaRtrptCreativeGetAPIRequest) GetCampaignId() int64

GetCampaignId CampaignId Getter

func (TaobaoSimbaRtrptCreativeGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRtrptCreativeGetAPIRequest) GetRawParams added in v1.2.8

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

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(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRtrptCustGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRtrptCustGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaRtrptTargetingtagGetAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaRtrptTargetingtagGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaRtrptTargetingtagGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarAdgroupAddAPIRequest) GetCampaignId

GetCampaignId CampaignId Getter

func (TaobaoSimbaSalestarAdgroupAddAPIRequest) GetImgUrl

GetImgUrl ImgUrl Getter

func (TaobaoSimbaSalestarAdgroupAddAPIRequest) GetItemId

GetItemId ItemId Getter

func (TaobaoSimbaSalestarAdgroupAddAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarAdgroupDeleteAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSalestarAdgroupDeleteAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarAdgroupUpdateAPIRequest) GetOnlineStatus

GetOnlineStatus OnlineStatus Getter

func (TaobaoSimbaSalestarAdgroupUpdateAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarCreativeAddAPIRequest) GetImgUrl

GetImgUrl ImgUrl Getter

func (TaobaoSimbaSalestarCreativeAddAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSalestarCreativeAddAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSalestarCreativesGetAPIRequest) GetCreativeIds

func (r TaobaoSimbaSalestarCreativesGetAPIRequest) GetCreativeIds() []int64

GetCreativeIds CreativeIds Getter

func (TaobaoSimbaSalestarCreativesGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSalestarCreativesGetAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSearchcrowdBatchAddAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSearchcrowdBatchAddAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSearchtagtemplateGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSearchtagtemplateGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSerchcrowdBatchDeleteAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaSerchcrowdGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaSerchcrowdGetAPIRequest) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSimbaToolsItemsTopGetAPIRequest) GetIp

GetIp Ip Getter

func (TaobaoSimbaToolsItemsTopGetAPIRequest) GetKeyword

GetKeyword Keyword Getter

func (TaobaoSimbaToolsItemsTopGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSimbaToolsItemsTopGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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 TaobaoSubwayCampaignOfflineFindAPIRequest added in v1.2.8

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

TaobaoSubwayCampaignOfflineFindAPIRequest 查询某计划离线多日汇总列表 API请求 taobao.subway.campaign.offline.find

查询某计划离线列表

func NewTaobaoSubwayCampaignOfflineFindRequest added in v1.2.8

func NewTaobaoSubwayCampaignOfflineFindRequest() *TaobaoSubwayCampaignOfflineFindAPIRequest

NewTaobaoSubwayCampaignOfflineFindRequest 初始化TaobaoSubwayCampaignOfflineFindAPIRequest对象

func (TaobaoSubwayCampaignOfflineFindAPIRequest) GetApiMethodName added in v1.2.8

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoSubwayCampaignOfflineFindAPIRequest) GetApiParams added in v1.2.8

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayCampaignOfflineFindAPIRequest) GetCampaignIdEqual added in v1.2.8

func (r TaobaoSubwayCampaignOfflineFindAPIRequest) GetCampaignIdEqual() int64

GetCampaignIdEqual CampaignIdEqual Getter

func (TaobaoSubwayCampaignOfflineFindAPIRequest) GetCampaignTypeNotIn added in v1.2.8

func (r TaobaoSubwayCampaignOfflineFindAPIRequest) GetCampaignTypeNotIn() int64

GetCampaignTypeNotIn CampaignTypeNotIn Getter

func (TaobaoSubwayCampaignOfflineFindAPIRequest) GetEffect added in v1.2.8

GetEffect Effect Getter

func (TaobaoSubwayCampaignOfflineFindAPIRequest) GetEndTime added in v1.2.8

GetEndTime EndTime Getter

func (TaobaoSubwayCampaignOfflineFindAPIRequest) GetOffset added in v1.2.8

GetOffset Offset Getter

func (TaobaoSubwayCampaignOfflineFindAPIRequest) GetPageSize added in v1.2.8

GetPageSize PageSize Getter

func (TaobaoSubwayCampaignOfflineFindAPIRequest) GetPvTypeIn added in v1.2.8

GetPvTypeIn PvTypeIn Getter

func (TaobaoSubwayCampaignOfflineFindAPIRequest) GetRawParams added in v1.2.8

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

func (TaobaoSubwayCampaignOfflineFindAPIRequest) GetStartTime added in v1.2.8

GetStartTime StartTime Getter

func (*TaobaoSubwayCampaignOfflineFindAPIRequest) SetCampaignIdEqual added in v1.2.8

func (r *TaobaoSubwayCampaignOfflineFindAPIRequest) SetCampaignIdEqual(_campaignIdEqual int64) error

SetCampaignIdEqual is CampaignIdEqual Setter 需要查询的计划id,不传表示不限制

func (*TaobaoSubwayCampaignOfflineFindAPIRequest) SetCampaignTypeNotIn added in v1.2.8

func (r *TaobaoSubwayCampaignOfflineFindAPIRequest) SetCampaignTypeNotIn(_campaignTypeNotIn int64) error

SetCampaignTypeNotIn is CampaignTypeNotIn Setter 计划类型(直通车搜索-无线/pc:0;智能推广计划:8;销量明星计划:16;口碑L店计划:17;新享一键推广计划-独立结算账户(策略中心):21;大快消一键推广计划(策略中心):23;合约广告、流量卡计划:31;极速推计划:37;)

func (*TaobaoSubwayCampaignOfflineFindAPIRequest) SetEffect added in v1.2.8

SetEffect is Effect Setter 转化周期-1-15累计天数,1-1转化天数,3-3转化天数,7-7转化天数,15-15转化天数,不传默认为15累计天数

func (*TaobaoSubwayCampaignOfflineFindAPIRequest) SetEndTime added in v1.2.8

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

SetEndTime is EndTime Setter 结束时间

func (*TaobaoSubwayCampaignOfflineFindAPIRequest) SetOffset added in v1.2.8

SetOffset is Offset Setter 页码(0为第一页)

func (*TaobaoSubwayCampaignOfflineFindAPIRequest) SetPageSize added in v1.2.8

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

SetPageSize is PageSize Setter 每页显示的记录条数

func (*TaobaoSubwayCampaignOfflineFindAPIRequest) SetPvTypeIn added in v1.2.8

func (r *TaobaoSubwayCampaignOfflineFindAPIRequest) SetPvTypeIn(_pvTypeIn int64) error

SetPvTypeIn is PvTypeIn Setter 数据来源(pc站内:1;pc站外:2;无限站内:4;无限站内:5;销量明星:6)

func (*TaobaoSubwayCampaignOfflineFindAPIRequest) SetStartTime added in v1.2.8

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

SetStartTime is StartTime Setter 开始时间

type TaobaoSubwayCampaignOfflineFindAPIResponse added in v1.2.8

type TaobaoSubwayCampaignOfflineFindAPIResponse struct {
	model.CommonResponse
	TaobaoSubwayCampaignOfflineFindAPIResponseModel
}

TaobaoSubwayCampaignOfflineFindAPIResponse 查询某计划离线多日汇总列表 API返回值 taobao.subway.campaign.offline.find

查询某计划离线列表

type TaobaoSubwayCampaignOfflineFindAPIResponseModel added in v1.2.8

type TaobaoSubwayCampaignOfflineFindAPIResponseModel struct {
	XMLName xml.Name `xml:"subway_campaign_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"`
}

TaobaoSubwayCampaignOfflineFindAPIResponseModel 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) GetRawParams added in v1.2.8

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

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(params url.Values)

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayCiaGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSubwayCiaGetAPIRequest) GetRawParams added in v1.2.8

func (r TaobaoSubwayCiaGetAPIRequest) GetRawParams() model.Params

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

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(params 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) GetRawParams added in v1.2.8

func (r TaobaoSubwayCiaUpdateAPIRequest) GetRawParams() model.Params

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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) GetRawParams added in v1.2.8

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

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

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

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) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayVideoStateGetAPIRequest) GetNick added in v1.2.5

GetNick Nick Getter

func (TaobaoSubwayVideoStateGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayWordpackageGetAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSubwayWordpackageGetAPIRequest) GetRawParams added in v1.2.8

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

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

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoSubwayWordpackageUpdateAPIRequest) GetNick

GetNick Nick Getter

func (TaobaoSubwayWordpackageUpdateAPIRequest) GetRawParams added in v1.2.8

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

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 TaobaoUniversalbpAccountGetBalanceAPIRequest added in v1.2.9

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

TaobaoUniversalbpAccountGetBalanceAPIRequest 获取账户余额,现金余额 API请求 taobao.universalbp.account.get.balance

获取账户实时现金余额

func NewTaobaoUniversalbpAccountGetBalanceRequest added in v1.2.9

func NewTaobaoUniversalbpAccountGetBalanceRequest() *TaobaoUniversalbpAccountGetBalanceAPIRequest

NewTaobaoUniversalbpAccountGetBalanceRequest 初始化TaobaoUniversalbpAccountGetBalanceAPIRequest对象

func (TaobaoUniversalbpAccountGetBalanceAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpAccountGetBalanceAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpAccountGetBalanceAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpAccountGetBalanceAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpAccountGetBalanceAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpAccountGetBalanceAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpAccountGetBalanceAPIResponse added in v1.2.9

type TaobaoUniversalbpAccountGetBalanceAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpAccountGetBalanceAPIResponseModel
}

TaobaoUniversalbpAccountGetBalanceAPIResponse 获取账户余额,现金余额 API返回值 taobao.universalbp.account.get.balance

获取账户实时现金余额

type TaobaoUniversalbpAccountGetBalanceAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpAccountGetBalanceAPIResponseModel is 获取账户余额,现金余额 成功返回结果

type TaobaoUniversalbpAccountGetBalanceTopResult added in v1.2.9

type TaobaoUniversalbpAccountGetBalanceTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopAccountBalanceVO *TopAccountBalanceVo `json:"top_account_balance_v_o,omitempty" xml:"top_account_balance_v_o,omitempty"`
}

TaobaoUniversalbpAccountGetBalanceTopResult 结构体

type TaobaoUniversalbpAccountGetCanUseBizcodeAPIRequest added in v1.2.9

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

TaobaoUniversalbpAccountGetCanUseBizcodeAPIRequest 获取账户可用的bizCode API请求 taobao.universalbp.account.get.can.use.bizcode

查询账户可用场景,查询场景名称和场景bizcode的对应关系。其中bizcode在几乎所有接口的context中需要传入。

func NewTaobaoUniversalbpAccountGetCanUseBizcodeRequest added in v1.2.9

func NewTaobaoUniversalbpAccountGetCanUseBizcodeRequest() *TaobaoUniversalbpAccountGetCanUseBizcodeAPIRequest

NewTaobaoUniversalbpAccountGetCanUseBizcodeRequest 初始化TaobaoUniversalbpAccountGetCanUseBizcodeAPIRequest对象

func (TaobaoUniversalbpAccountGetCanUseBizcodeAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpAccountGetCanUseBizcodeAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpAccountGetCanUseBizcodeAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpAccountGetCanUseBizcodeAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpAccountGetCanUseBizcodeAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpAccountGetCanUseBizcodeAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpAccountGetCanUseBizcodeAPIResponse added in v1.2.9

type TaobaoUniversalbpAccountGetCanUseBizcodeAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpAccountGetCanUseBizcodeAPIResponseModel
}

TaobaoUniversalbpAccountGetCanUseBizcodeAPIResponse 获取账户可用的bizCode API返回值 taobao.universalbp.account.get.can.use.bizcode

查询账户可用场景,查询场景名称和场景bizcode的对应关系。其中bizcode在几乎所有接口的context中需要传入。

type TaobaoUniversalbpAccountGetCanUseBizcodeAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpAccountGetCanUseBizcodeAPIResponseModel is 获取账户可用的bizCode 成功返回结果

type TaobaoUniversalbpAccountGetCanUseBizcodeTopResult added in v1.2.9

type TaobaoUniversalbpAccountGetCanUseBizcodeTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopMarketSceneVOTopBulkData *TopBulkData `json:"top_market_scene_v_o_top_bulk_data,omitempty" xml:"top_market_scene_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpAccountGetCanUseBizcodeTopResult 结构体

type TaobaoUniversalbpAccountIsUniversalUserAPIRequest added in v1.2.9

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

TaobaoUniversalbpAccountIsUniversalUserAPIRequest 判断用户是否迁移新bp API请求 taobao.universalbp.account.is.universal.user

获取客户是否应使用新接口。对于迁移了新bp的客户,使用新接口,没有迁移的,使用老bp接口。不可错乱使用。

func NewTaobaoUniversalbpAccountIsUniversalUserRequest added in v1.2.9

func NewTaobaoUniversalbpAccountIsUniversalUserRequest() *TaobaoUniversalbpAccountIsUniversalUserAPIRequest

NewTaobaoUniversalbpAccountIsUniversalUserRequest 初始化TaobaoUniversalbpAccountIsUniversalUserAPIRequest对象

func (TaobaoUniversalbpAccountIsUniversalUserAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpAccountIsUniversalUserAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpAccountIsUniversalUserAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpAccountIsUniversalUserAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpAccountIsUniversalUserAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpAccountIsUniversalUserAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpAccountIsUniversalUserAPIResponse added in v1.2.9

type TaobaoUniversalbpAccountIsUniversalUserAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpAccountIsUniversalUserAPIResponseModel
}

TaobaoUniversalbpAccountIsUniversalUserAPIResponse 判断用户是否迁移新bp API返回值 taobao.universalbp.account.is.universal.user

获取客户是否应使用新接口。对于迁移了新bp的客户,使用新接口,没有迁移的,使用老bp接口。不可错乱使用。

type TaobaoUniversalbpAccountIsUniversalUserAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpAccountIsUniversalUserAPIResponseModel is 判断用户是否迁移新bp 成功返回结果

type TaobaoUniversalbpAccountIsUniversalUserTopResult added in v1.2.9

type TaobaoUniversalbpAccountIsUniversalUserTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopAccountStatusVO *TopAccountStatusVo `json:"top_account_status_v_o,omitempty" xml:"top_account_status_v_o,omitempty"`
}

TaobaoUniversalbpAccountIsUniversalUserTopResult 结构体

type TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest added in v1.2.9

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

TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest 查询单元分页列表 API请求 taobao.universalbp.adgroup.horizontal.findpage

查询单元分页列表

func NewTaobaoUniversalbpAdgroupHorizontalFindpageRequest added in v1.2.9

func NewTaobaoUniversalbpAdgroupHorizontalFindpageRequest() *TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest

NewTaobaoUniversalbpAdgroupHorizontalFindpageRequest 初始化TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest对象

func (TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest) GetAdgroupQueryVO added in v1.2.9

GetAdgroupQueryVO AdgroupQueryVO Getter

func (TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest) SetAdgroupQueryVO added in v1.2.9

func (r *TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest) SetAdgroupQueryVO(_adgroupQueryVO *AdgroupQueryVo) error

SetAdgroupQueryVO is AdgroupQueryVO Setter adgroupQueryVO

func (*TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpAdgroupHorizontalFindpageAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpAdgroupHorizontalFindpageAPIResponse added in v1.2.9

type TaobaoUniversalbpAdgroupHorizontalFindpageAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpAdgroupHorizontalFindpageAPIResponseModel
}

TaobaoUniversalbpAdgroupHorizontalFindpageAPIResponse 查询单元分页列表 API返回值 taobao.universalbp.adgroup.horizontal.findpage

查询单元分页列表

type TaobaoUniversalbpAdgroupHorizontalFindpageAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpAdgroupHorizontalFindpageAPIResponseModel is 查询单元分页列表 成功返回结果

type TaobaoUniversalbpAdgroupHorizontalFindpageTopResult added in v1.2.9

type TaobaoUniversalbpAdgroupHorizontalFindpageTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	AdgroupVOTopBulkData *TopBulkData `json:"adgroup_v_o_top_bulk_data,omitempty" xml:"adgroup_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpAdgroupHorizontalFindpageTopResult 结构体

type TaobaoUniversalbpAdzoneFindconfiglistAPIRequest added in v1.2.9

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

TaobaoUniversalbpAdzoneFindconfiglistAPIRequest 查询所有可用资源包信息 API请求 taobao.universalbp.adzone.findconfiglist

查询该场景下,所有可用的资源包,可能存在数据重复。但是针对不同子场景和推广设置,可以选用的资源包有差异,建议关注补充文档,或者根据bp前端的限制,进行传参。

func NewTaobaoUniversalbpAdzoneFindconfiglistRequest added in v1.2.9

func NewTaobaoUniversalbpAdzoneFindconfiglistRequest() *TaobaoUniversalbpAdzoneFindconfiglistAPIRequest

NewTaobaoUniversalbpAdzoneFindconfiglistRequest 初始化TaobaoUniversalbpAdzoneFindconfiglistAPIRequest对象

func (TaobaoUniversalbpAdzoneFindconfiglistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpAdzoneFindconfiglistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpAdzoneFindconfiglistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpAdzoneFindconfiglistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpAdzoneFindconfiglistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpAdzoneFindconfiglistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpAdzoneFindconfiglistAPIResponse added in v1.2.9

type TaobaoUniversalbpAdzoneFindconfiglistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpAdzoneFindconfiglistAPIResponseModel
}

TaobaoUniversalbpAdzoneFindconfiglistAPIResponse 查询所有可用资源包信息 API返回值 taobao.universalbp.adzone.findconfiglist

查询该场景下,所有可用的资源包,可能存在数据重复。但是针对不同子场景和推广设置,可以选用的资源包有差异,建议关注补充文档,或者根据bp前端的限制,进行传参。

type TaobaoUniversalbpAdzoneFindconfiglistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpAdzoneFindconfiglistAPIResponseModel is 查询所有可用资源包信息 成功返回结果

type TaobaoUniversalbpAdzoneFindconfiglistTopResult added in v1.2.9

type TaobaoUniversalbpAdzoneFindconfiglistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	AdzoneConfigVOTopBulkData *TopBulkData `json:"adzone_config_v_o_top_bulk_data,omitempty" xml:"adzone_config_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpAdzoneFindconfiglistTopResult 结构体

type TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest added in v1.2.9

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

TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest 查看资源包列表 API请求 taobao.universalbp.adzone.horizontal.findpage

查看已存在的计划上设置的资源包列表

func NewTaobaoUniversalbpAdzoneHorizontalFindpageRequest added in v1.2.9

func NewTaobaoUniversalbpAdzoneHorizontalFindpageRequest() *TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest

NewTaobaoUniversalbpAdzoneHorizontalFindpageRequest 初始化TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest对象

func (TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest) GetAdzoneRefQueryVO added in v1.2.9

GetAdzoneRefQueryVO AdzoneRefQueryVO Getter

func (TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest) SetAdzoneRefQueryVO added in v1.2.9

func (r *TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest) SetAdzoneRefQueryVO(_adzoneRefQueryVO *AdzoneRefQueryVo) error

SetAdzoneRefQueryVO is AdzoneRefQueryVO Setter adzoneRefQueryVO

func (*TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpAdzoneHorizontalFindpageAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpAdzoneHorizontalFindpageAPIResponse added in v1.2.9

type TaobaoUniversalbpAdzoneHorizontalFindpageAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpAdzoneHorizontalFindpageAPIResponseModel
}

TaobaoUniversalbpAdzoneHorizontalFindpageAPIResponse 查看资源包列表 API返回值 taobao.universalbp.adzone.horizontal.findpage

查看已存在的计划上设置的资源包列表

type TaobaoUniversalbpAdzoneHorizontalFindpageAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpAdzoneHorizontalFindpageAPIResponseModel is 查看资源包列表 成功返回结果

type TaobaoUniversalbpAdzoneHorizontalFindpageTopResult added in v1.2.9

type TaobaoUniversalbpAdzoneHorizontalFindpageTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	AdzoneRefVOTopBulkData *TopBulkData `json:"adzone_ref_v_o_top_bulk_data,omitempty" xml:"adzone_ref_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpAdzoneHorizontalFindpageTopResult 结构体

type TaobaoUniversalbpBidwordFindlistAPIRequest added in v1.2.9

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

TaobaoUniversalbpBidwordFindlistAPIRequest 词列表查询 API请求 taobao.universalbp.bidword.findlist

根据计划+单元id,查绑定的词列表

func NewTaobaoUniversalbpBidwordFindlistRequest added in v1.2.9

func NewTaobaoUniversalbpBidwordFindlistRequest() *TaobaoUniversalbpBidwordFindlistAPIRequest

NewTaobaoUniversalbpBidwordFindlistRequest 初始化TaobaoUniversalbpBidwordFindlistAPIRequest对象

func (TaobaoUniversalbpBidwordFindlistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpBidwordFindlistAPIRequest) GetApiParams added in v1.2.9

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpBidwordFindlistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpBidwordFindlistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (TaobaoUniversalbpBidwordFindlistAPIRequest) GetWordQueryVO added in v1.2.9

GetWordQueryVO WordQueryVO Getter

func (*TaobaoUniversalbpBidwordFindlistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpBidwordFindlistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

func (*TaobaoUniversalbpBidwordFindlistAPIRequest) SetWordQueryVO added in v1.2.9

func (r *TaobaoUniversalbpBidwordFindlistAPIRequest) SetWordQueryVO(_wordQueryVO *WordQueryVo) error

SetWordQueryVO is WordQueryVO Setter wordQueryVO

type TaobaoUniversalbpBidwordFindlistAPIResponse added in v1.2.9

type TaobaoUniversalbpBidwordFindlistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpBidwordFindlistAPIResponseModel
}

TaobaoUniversalbpBidwordFindlistAPIResponse 词列表查询 API返回值 taobao.universalbp.bidword.findlist

根据计划+单元id,查绑定的词列表

type TaobaoUniversalbpBidwordFindlistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpBidwordFindlistAPIResponseModel is 词列表查询 成功返回结果

type TaobaoUniversalbpBidwordFindlistTopResult added in v1.2.9

type TaobaoUniversalbpBidwordFindlistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	WordVOTopBulkData *TopBulkData `json:"word_v_o_top_bulk_data,omitempty" xml:"word_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpBidwordFindlistTopResult 结构体

type TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest added in v1.2.9

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

TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest 建议默认关键词 API请求 taobao.universalbp.bidword.suggestdefaultlist

入参推广信息,出参建议的默认关键词

func NewTaobaoUniversalbpBidwordSuggestdefaultlistRequest added in v1.2.9

func NewTaobaoUniversalbpBidwordSuggestdefaultlistRequest() *TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest

NewTaobaoUniversalbpBidwordSuggestdefaultlistRequest 初始化TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest对象

func (TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest) GetBidwordDefaultQueryVO added in v1.2.9

GetBidwordDefaultQueryVO BidwordDefaultQueryVO Getter

func (TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest) SetBidwordDefaultQueryVO added in v1.2.9

func (r *TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest) SetBidwordDefaultQueryVO(_bidwordDefaultQueryVO *BidwordDefaultQueryVo) error

SetBidwordDefaultQueryVO is BidwordDefaultQueryVO Setter bidwordDefaultQueryVO

func (*TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpBidwordSuggestdefaultlistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpBidwordSuggestdefaultlistAPIResponse added in v1.2.9

type TaobaoUniversalbpBidwordSuggestdefaultlistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpBidwordSuggestdefaultlistAPIResponseModel
}

TaobaoUniversalbpBidwordSuggestdefaultlistAPIResponse 建议默认关键词 API返回值 taobao.universalbp.bidword.suggestdefaultlist

入参推广信息,出参建议的默认关键词

type TaobaoUniversalbpBidwordSuggestdefaultlistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpBidwordSuggestdefaultlistAPIResponseModel is 建议默认关键词 成功返回结果

type TaobaoUniversalbpBidwordSuggestdefaultlistTopResult added in v1.2.9

type TaobaoUniversalbpBidwordSuggestdefaultlistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	BidwordSuggestItemVOTopBulkData *TopBulkData `json:"bidword_suggest_item_v_o_top_bulk_data,omitempty" xml:"bidword_suggest_item_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpBidwordSuggestdefaultlistTopResult 结构体

type TaobaoUniversalbpBidwordSuggestkrlistAPIRequest added in v1.2.9

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

TaobaoUniversalbpBidwordSuggestkrlistAPIRequest 关键词建议 API请求 taobao.universalbp.bidword.suggestkrlist

入参推广信息,出参建议的全部关键词

func NewTaobaoUniversalbpBidwordSuggestkrlistRequest added in v1.2.9

func NewTaobaoUniversalbpBidwordSuggestkrlistRequest() *TaobaoUniversalbpBidwordSuggestkrlistAPIRequest

NewTaobaoUniversalbpBidwordSuggestkrlistRequest 初始化TaobaoUniversalbpBidwordSuggestkrlistAPIRequest对象

func (TaobaoUniversalbpBidwordSuggestkrlistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpBidwordSuggestkrlistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpBidwordSuggestkrlistAPIRequest) GetBidwordSuggestQueryVO added in v1.2.9

GetBidwordSuggestQueryVO BidwordSuggestQueryVO Getter

func (TaobaoUniversalbpBidwordSuggestkrlistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpBidwordSuggestkrlistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpBidwordSuggestkrlistAPIRequest) SetBidwordSuggestQueryVO added in v1.2.9

func (r *TaobaoUniversalbpBidwordSuggestkrlistAPIRequest) SetBidwordSuggestQueryVO(_bidwordSuggestQueryVO *BidwordSuggestQueryVo) error

SetBidwordSuggestQueryVO is BidwordSuggestQueryVO Setter bidwordSuggestQueryVO

func (*TaobaoUniversalbpBidwordSuggestkrlistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpBidwordSuggestkrlistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpBidwordSuggestkrlistAPIResponse added in v1.2.9

type TaobaoUniversalbpBidwordSuggestkrlistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpBidwordSuggestkrlistAPIResponseModel
}

TaobaoUniversalbpBidwordSuggestkrlistAPIResponse 关键词建议 API返回值 taobao.universalbp.bidword.suggestkrlist

入参推广信息,出参建议的全部关键词

type TaobaoUniversalbpBidwordSuggestkrlistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpBidwordSuggestkrlistAPIResponseModel is 关键词建议 成功返回结果

type TaobaoUniversalbpBidwordSuggestkrlistTopResult added in v1.2.9

type TaobaoUniversalbpBidwordSuggestkrlistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	SuggestBidwordVOTopBulkData *TopBulkData `json:"suggest_bidword_v_o_top_bulk_data,omitempty" xml:"suggest_bidword_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpBidwordSuggestkrlistTopResult 结构体

type TaobaoUniversalbpCampaignFindlistAPIRequest added in v1.2.9

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

TaobaoUniversalbpCampaignFindlistAPIRequest 查询全量计划列表(不分页) API请求 taobao.universalbp.campaign.findlist

查询场景内的全量计划列表

func NewTaobaoUniversalbpCampaignFindlistRequest added in v1.2.9

func NewTaobaoUniversalbpCampaignFindlistRequest() *TaobaoUniversalbpCampaignFindlistAPIRequest

NewTaobaoUniversalbpCampaignFindlistRequest 初始化TaobaoUniversalbpCampaignFindlistAPIRequest对象

func (TaobaoUniversalbpCampaignFindlistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpCampaignFindlistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpCampaignFindlistAPIRequest) GetCampaignQueryVO added in v1.2.9

GetCampaignQueryVO CampaignQueryVO Getter

func (TaobaoUniversalbpCampaignFindlistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpCampaignFindlistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpCampaignFindlistAPIRequest) SetCampaignQueryVO added in v1.2.9

func (r *TaobaoUniversalbpCampaignFindlistAPIRequest) SetCampaignQueryVO(_campaignQueryVO *CampaignQueryVo) error

SetCampaignQueryVO is CampaignQueryVO Setter campaignQueryVO

func (*TaobaoUniversalbpCampaignFindlistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpCampaignFindlistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpCampaignFindlistAPIResponse added in v1.2.9

type TaobaoUniversalbpCampaignFindlistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpCampaignFindlistAPIResponseModel
}

TaobaoUniversalbpCampaignFindlistAPIResponse 查询全量计划列表(不分页) API返回值 taobao.universalbp.campaign.findlist

查询场景内的全量计划列表

type TaobaoUniversalbpCampaignFindlistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpCampaignFindlistAPIResponseModel is 查询全量计划列表(不分页) 成功返回结果

type TaobaoUniversalbpCampaignFindlistTopResult added in v1.2.9

type TaobaoUniversalbpCampaignFindlistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	CampaignVOTopBulkData *TopBulkData `json:"campaign_v_o_top_bulk_data,omitempty" xml:"campaign_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpCampaignFindlistTopResult 结构体

type TaobaoUniversalbpCampaignFindpageAPIRequest added in v1.2.9

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

TaobaoUniversalbpCampaignFindpageAPIRequest 查询计划分页列表 API请求 taobao.universalbp.campaign.findpage

分页查询场景内的计划列表

func NewTaobaoUniversalbpCampaignFindpageRequest added in v1.2.9

func NewTaobaoUniversalbpCampaignFindpageRequest() *TaobaoUniversalbpCampaignFindpageAPIRequest

NewTaobaoUniversalbpCampaignFindpageRequest 初始化TaobaoUniversalbpCampaignFindpageAPIRequest对象

func (TaobaoUniversalbpCampaignFindpageAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpCampaignFindpageAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpCampaignFindpageAPIRequest) GetCampaignQueryVO added in v1.2.9

GetCampaignQueryVO CampaignQueryVO Getter

func (TaobaoUniversalbpCampaignFindpageAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpCampaignFindpageAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpCampaignFindpageAPIRequest) SetCampaignQueryVO added in v1.2.9

func (r *TaobaoUniversalbpCampaignFindpageAPIRequest) SetCampaignQueryVO(_campaignQueryVO *CampaignQueryVo) error

SetCampaignQueryVO is CampaignQueryVO Setter campaignQueryVO

func (*TaobaoUniversalbpCampaignFindpageAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpCampaignFindpageAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpCampaignFindpageAPIResponse added in v1.2.9

type TaobaoUniversalbpCampaignFindpageAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpCampaignFindpageAPIResponseModel
}

TaobaoUniversalbpCampaignFindpageAPIResponse 查询计划分页列表 API返回值 taobao.universalbp.campaign.findpage

分页查询场景内的计划列表

type TaobaoUniversalbpCampaignFindpageAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpCampaignFindpageAPIResponseModel is 查询计划分页列表 成功返回结果

type TaobaoUniversalbpCampaignFindpageTopResult added in v1.2.9

type TaobaoUniversalbpCampaignFindpageTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	CampaignVOTopBulkData *TopBulkData `json:"campaign_v_o_top_bulk_data,omitempty" xml:"campaign_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpCampaignFindpageTopResult 结构体

type TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest added in v1.2.9

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

TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest 查询无界版计划对应的原场景计划id API请求 taobao.universalbp.campaign.findsubcampaignid

查询该场景下,无界版计划对应的原场景的计划

func NewTaobaoUniversalbpCampaignFindsubcampaignidRequest added in v1.2.9

func NewTaobaoUniversalbpCampaignFindsubcampaignidRequest() *TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest

NewTaobaoUniversalbpCampaignFindsubcampaignidRequest 初始化TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest对象

func (TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest) GetTpLong added in v1.2.9

GetTpLong TpLong Getter

func (*TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

func (*TaobaoUniversalbpCampaignFindsubcampaignidAPIRequest) SetTpLong added in v1.2.9

SetTpLong is TpLong Setter long

type TaobaoUniversalbpCampaignFindsubcampaignidAPIResponse added in v1.2.9

type TaobaoUniversalbpCampaignFindsubcampaignidAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpCampaignFindsubcampaignidAPIResponseModel
}

TaobaoUniversalbpCampaignFindsubcampaignidAPIResponse 查询无界版计划对应的原场景计划id API返回值 taobao.universalbp.campaign.findsubcampaignid

查询该场景下,无界版计划对应的原场景的计划

type TaobaoUniversalbpCampaignFindsubcampaignidAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpCampaignFindsubcampaignidAPIResponseModel is 查询无界版计划对应的原场景计划id 成功返回结果

type TaobaoUniversalbpCampaignFindsubcampaignidTopResult added in v1.2.9

type TaobaoUniversalbpCampaignFindsubcampaignidTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	Data int64 `json:"data,omitempty" xml:"data,omitempty"`
}

TaobaoUniversalbpCampaignFindsubcampaignidTopResult 结构体

type TaobaoUniversalbpCampaignGetAPIRequest added in v1.2.9

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

TaobaoUniversalbpCampaignGetAPIRequest 查询单个计划详情 API请求 taobao.universalbp.campaign.get

查询单个计划详情信息(不包括报表数据)

func NewTaobaoUniversalbpCampaignGetRequest added in v1.2.9

func NewTaobaoUniversalbpCampaignGetRequest() *TaobaoUniversalbpCampaignGetAPIRequest

NewTaobaoUniversalbpCampaignGetRequest 初始化TaobaoUniversalbpCampaignGetAPIRequest对象

func (TaobaoUniversalbpCampaignGetAPIRequest) GetApiMethodName added in v1.2.9

func (r TaobaoUniversalbpCampaignGetAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpCampaignGetAPIRequest) GetApiParams added in v1.2.9

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpCampaignGetAPIRequest) GetCampaignQueryVO added in v1.2.9

GetCampaignQueryVO CampaignQueryVO Getter

func (TaobaoUniversalbpCampaignGetAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpCampaignGetAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpCampaignGetAPIRequest) SetCampaignQueryVO added in v1.2.9

func (r *TaobaoUniversalbpCampaignGetAPIRequest) SetCampaignQueryVO(_campaignQueryVO *CampaignQueryVo) error

SetCampaignQueryVO is CampaignQueryVO Setter campaignQueryVO

func (*TaobaoUniversalbpCampaignGetAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpCampaignGetAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpCampaignGetAPIResponse added in v1.2.9

type TaobaoUniversalbpCampaignGetAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpCampaignGetAPIResponseModel
}

TaobaoUniversalbpCampaignGetAPIResponse 查询单个计划详情 API返回值 taobao.universalbp.campaign.get

查询单个计划详情信息(不包括报表数据)

type TaobaoUniversalbpCampaignGetAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpCampaignGetAPIResponseModel is 查询单个计划详情 成功返回结果

type TaobaoUniversalbpCampaignGetTopResult added in v1.2.9

type TaobaoUniversalbpCampaignGetTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopCampaignVO *TopCampaignVo `json:"top_campaign_v_o,omitempty" xml:"top_campaign_v_o,omitempty"`
}

TaobaoUniversalbpCampaignGetTopResult 结构体

type TaobaoUniversalbpCampaigngroupFindlistAPIRequest added in v1.2.9

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

TaobaoUniversalbpCampaigngroupFindlistAPIRequest 查询计划组列表 API请求 taobao.universalbp.campaigngroup.findlist

查询某个场景内的计划组列表

func NewTaobaoUniversalbpCampaigngroupFindlistRequest added in v1.2.9

func NewTaobaoUniversalbpCampaigngroupFindlistRequest() *TaobaoUniversalbpCampaigngroupFindlistAPIRequest

NewTaobaoUniversalbpCampaigngroupFindlistRequest 初始化TaobaoUniversalbpCampaigngroupFindlistAPIRequest对象

func (TaobaoUniversalbpCampaigngroupFindlistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpCampaigngroupFindlistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpCampaigngroupFindlistAPIRequest) GetCampaignGroupQueryVO added in v1.2.9

GetCampaignGroupQueryVO CampaignGroupQueryVO Getter

func (TaobaoUniversalbpCampaigngroupFindlistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpCampaigngroupFindlistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpCampaigngroupFindlistAPIRequest) SetCampaignGroupQueryVO added in v1.2.9

func (r *TaobaoUniversalbpCampaigngroupFindlistAPIRequest) SetCampaignGroupQueryVO(_campaignGroupQueryVO *CampaignGroupQueryVo) error

SetCampaignGroupQueryVO is CampaignGroupQueryVO Setter campaignGroupQueryVO

func (*TaobaoUniversalbpCampaigngroupFindlistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpCampaigngroupFindlistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpCampaigngroupFindlistAPIResponse added in v1.2.9

type TaobaoUniversalbpCampaigngroupFindlistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpCampaigngroupFindlistAPIResponseModel
}

TaobaoUniversalbpCampaigngroupFindlistAPIResponse 查询计划组列表 API返回值 taobao.universalbp.campaigngroup.findlist

查询某个场景内的计划组列表

type TaobaoUniversalbpCampaigngroupFindlistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpCampaigngroupFindlistAPIResponseModel is 查询计划组列表 成功返回结果

type TaobaoUniversalbpCampaigngroupFindlistTopResult added in v1.2.9

type TaobaoUniversalbpCampaigngroupFindlistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	CampaignGroupVOTopBulkData *TopBulkData `json:"campaign_group_v_o_top_bulk_data,omitempty" xml:"campaign_group_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpCampaigngroupFindlistTopResult 结构体

type TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest added in v1.2.9

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

TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest 横向管理创意分页查询 API请求 taobao.universalbp.creative.horizontal.findpage

横向管理创意分页查询

func NewTaobaoUniversalbpCreativeHorizontalFindpageRequest added in v1.2.9

func NewTaobaoUniversalbpCreativeHorizontalFindpageRequest() *TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest

NewTaobaoUniversalbpCreativeHorizontalFindpageRequest 初始化TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest对象

func (TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest) GetCreativeQueryVO added in v1.2.9

GetCreativeQueryVO CreativeQueryVO Getter

func (TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest) SetCreativeQueryVO added in v1.2.9

func (r *TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest) SetCreativeQueryVO(_creativeQueryVO *CreativeQueryVo) error

SetCreativeQueryVO is CreativeQueryVO Setter creativeQueryVO

func (*TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpCreativeHorizontalFindpageAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpCreativeHorizontalFindpageAPIResponse added in v1.2.9

type TaobaoUniversalbpCreativeHorizontalFindpageAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpCreativeHorizontalFindpageAPIResponseModel
}

TaobaoUniversalbpCreativeHorizontalFindpageAPIResponse 横向管理创意分页查询 API返回值 taobao.universalbp.creative.horizontal.findpage

横向管理创意分页查询

type TaobaoUniversalbpCreativeHorizontalFindpageAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpCreativeHorizontalFindpageAPIResponseModel is 横向管理创意分页查询 成功返回结果

type TaobaoUniversalbpCreativeHorizontalFindpageTopResult added in v1.2.9

type TaobaoUniversalbpCreativeHorizontalFindpageTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	CreativeRefVOTopBulkData *TopBulkData `json:"creative_ref_v_o_top_bulk_data,omitempty" xml:"creative_ref_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpCreativeHorizontalFindpageTopResult 结构体

type TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest added in v1.2.9

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

TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest 创意库查询创意列表 API请求 taobao.universalbp.creative.manage.findmanagepage

创意库查询创意列表

func NewTaobaoUniversalbpCreativeManageFindmanagepageRequest added in v1.2.9

func NewTaobaoUniversalbpCreativeManageFindmanagepageRequest() *TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest

NewTaobaoUniversalbpCreativeManageFindmanagepageRequest 初始化TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest对象

func (TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest) GetCreativeQueryVO added in v1.2.9

GetCreativeQueryVO CreativeQueryVO Getter

func (TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest) SetCreativeQueryVO added in v1.2.9

func (r *TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest) SetCreativeQueryVO(_creativeQueryVO *CreativeQueryVo) error

SetCreativeQueryVO is CreativeQueryVO Setter creativeQueryVO

func (*TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpCreativeManageFindmanagepageAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpCreativeManageFindmanagepageAPIResponse added in v1.2.9

type TaobaoUniversalbpCreativeManageFindmanagepageAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpCreativeManageFindmanagepageAPIResponseModel
}

TaobaoUniversalbpCreativeManageFindmanagepageAPIResponse 创意库查询创意列表 API返回值 taobao.universalbp.creative.manage.findmanagepage

创意库查询创意列表

type TaobaoUniversalbpCreativeManageFindmanagepageAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpCreativeManageFindmanagepageAPIResponseModel is 创意库查询创意列表 成功返回结果

type TaobaoUniversalbpCreativeManageFindmanagepageTopResult added in v1.2.9

type TaobaoUniversalbpCreativeManageFindmanagepageTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	CreativeVOTopBulkData *TopBulkData `json:"creative_v_o_top_bulk_data,omitempty" xml:"creative_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpCreativeManageFindmanagepageTopResult 结构体

type TaobaoUniversalbpCreativePreaddAPIRequest added in v1.2.9

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

TaobaoUniversalbpCreativePreaddAPIRequest 创建单品创意前置信息 API请求 taobao.universalbp.creative.preadd

用于关键词场景创建单品创意前使用

func NewTaobaoUniversalbpCreativePreaddRequest added in v1.2.9

func NewTaobaoUniversalbpCreativePreaddRequest() *TaobaoUniversalbpCreativePreaddAPIRequest

NewTaobaoUniversalbpCreativePreaddRequest 初始化TaobaoUniversalbpCreativePreaddAPIRequest对象

func (TaobaoUniversalbpCreativePreaddAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpCreativePreaddAPIRequest) GetApiParams added in v1.2.9

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpCreativePreaddAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpCreativePreaddAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (TaobaoUniversalbpCreativePreaddAPIRequest) GetTpLong added in v1.2.9

GetTpLong TpLong Getter

func (*TaobaoUniversalbpCreativePreaddAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpCreativePreaddAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

func (*TaobaoUniversalbpCreativePreaddAPIRequest) SetTpLong added in v1.2.9

SetTpLong is TpLong Setter long

type TaobaoUniversalbpCreativePreaddAPIResponse added in v1.2.9

type TaobaoUniversalbpCreativePreaddAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpCreativePreaddAPIResponseModel
}

TaobaoUniversalbpCreativePreaddAPIResponse 创建单品创意前置信息 API返回值 taobao.universalbp.creative.preadd

用于关键词场景创建单品创意前使用

type TaobaoUniversalbpCreativePreaddAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpCreativePreaddAPIResponseModel is 创建单品创意前置信息 成功返回结果

type TaobaoUniversalbpCreativePreaddTopResult added in v1.2.9

type TaobaoUniversalbpCreativePreaddTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	PreAddItemCreativeVO *PreAddItemCreativeVo `json:"pre_add_item_creative_v_o,omitempty" xml:"pre_add_item_creative_v_o,omitempty"`
}

TaobaoUniversalbpCreativePreaddTopResult 结构体

type TaobaoUniversalbpCrowdFindlistAPIRequest added in v1.2.9

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

TaobaoUniversalbpCrowdFindlistAPIRequest 查询人群绑定列表 API请求 taobao.universalbp.crowd.findlist

查询计划和单元上绑定的人群列表

func NewTaobaoUniversalbpCrowdFindlistRequest added in v1.2.9

func NewTaobaoUniversalbpCrowdFindlistRequest() *TaobaoUniversalbpCrowdFindlistAPIRequest

NewTaobaoUniversalbpCrowdFindlistRequest 初始化TaobaoUniversalbpCrowdFindlistAPIRequest对象

func (TaobaoUniversalbpCrowdFindlistAPIRequest) GetApiMethodName added in v1.2.9

func (r TaobaoUniversalbpCrowdFindlistAPIRequest) GetApiMethodName() string

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpCrowdFindlistAPIRequest) GetApiParams added in v1.2.9

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpCrowdFindlistAPIRequest) GetDataList added in v1.2.9

GetDataList DataList Getter

func (TaobaoUniversalbpCrowdFindlistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpCrowdFindlistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpCrowdFindlistAPIRequest) SetDataList added in v1.2.9

SetDataList is DataList Setter list

func (*TaobaoUniversalbpCrowdFindlistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpCrowdFindlistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpCrowdFindlistAPIResponse added in v1.2.9

type TaobaoUniversalbpCrowdFindlistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpCrowdFindlistAPIResponseModel
}

TaobaoUniversalbpCrowdFindlistAPIResponse 查询人群绑定列表 API返回值 taobao.universalbp.crowd.findlist

查询计划和单元上绑定的人群列表

type TaobaoUniversalbpCrowdFindlistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpCrowdFindlistAPIResponseModel is 查询人群绑定列表 成功返回结果

type TaobaoUniversalbpCrowdFindlistTopResult added in v1.2.9

type TaobaoUniversalbpCrowdFindlistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	CrowdBindResultVOTopBulkData *TopBulkData `json:"crowd_bind_result_v_o_top_bulk_data,omitempty" xml:"crowd_bind_result_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpCrowdFindlistTopResult 结构体

type TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest added in v1.2.9

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

TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest 查询推荐人群 API请求 taobao.universalbp.crowd.findrecommendcrowd

入参推广信息,查询推荐人群,查出的推荐人群列表,不需转换,直接可用于入参其他计划创编类接口

func NewTaobaoUniversalbpCrowdFindrecommendcrowdRequest added in v1.2.9

func NewTaobaoUniversalbpCrowdFindrecommendcrowdRequest() *TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest

NewTaobaoUniversalbpCrowdFindrecommendcrowdRequest 初始化TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest对象

func (TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest) GetCrowdRecQueryVO added in v1.2.9

GetCrowdRecQueryVO CrowdRecQueryVO Getter

func (TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest) SetCrowdRecQueryVO added in v1.2.9

func (r *TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest) SetCrowdRecQueryVO(_crowdRecQueryVO *CrowdRecQueryVo) error

SetCrowdRecQueryVO is CrowdRecQueryVO Setter crowdRecQueryVO

func (*TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpCrowdFindrecommendcrowdAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpCrowdFindrecommendcrowdAPIResponse added in v1.2.9

type TaobaoUniversalbpCrowdFindrecommendcrowdAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpCrowdFindrecommendcrowdAPIResponseModel
}

TaobaoUniversalbpCrowdFindrecommendcrowdAPIResponse 查询推荐人群 API返回值 taobao.universalbp.crowd.findrecommendcrowd

入参推广信息,查询推荐人群,查出的推荐人群列表,不需转换,直接可用于入参其他计划创编类接口

type TaobaoUniversalbpCrowdFindrecommendcrowdAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpCrowdFindrecommendcrowdAPIResponseModel is 查询推荐人群 成功返回结果

type TaobaoUniversalbpCrowdFindrecommendcrowdTopResult added in v1.2.9

type TaobaoUniversalbpCrowdFindrecommendcrowdTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	CrowdRefVOTopBulkData *TopBulkData `json:"crowd_ref_v_o_top_bulk_data,omitempty" xml:"crowd_ref_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpCrowdFindrecommendcrowdTopResult 结构体

type TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIRequest added in v1.2.9

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

TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIRequest 查询dmp浮层配置 API请求 taobao.universalbp.label.dmp.finddmpmoduleconfig

入参账号信息,出参达摩盘相关配置信息

func NewTaobaoUniversalbpLabelDmpFinddmpmoduleconfigRequest added in v1.2.9

func NewTaobaoUniversalbpLabelDmpFinddmpmoduleconfigRequest() *TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIRequest

NewTaobaoUniversalbpLabelDmpFinddmpmoduleconfigRequest 初始化TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIRequest对象

func (TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIResponse added in v1.2.9

type TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIResponseModel
}

TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIResponse 查询dmp浮层配置 API返回值 taobao.universalbp.label.dmp.finddmpmoduleconfig

入参账号信息,出参达摩盘相关配置信息

type TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpLabelDmpFinddmpmoduleconfigAPIResponseModel is 查询dmp浮层配置 成功返回结果

type TaobaoUniversalbpLabelDmpFinddmpmoduleconfigTopResult added in v1.2.9

type TaobaoUniversalbpLabelDmpFinddmpmoduleconfigTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	DmpModuleConfigVO *DmpModuleConfigVo `json:"dmp_module_config_v_o,omitempty" xml:"dmp_module_config_v_o,omitempty"`
}

TaobaoUniversalbpLabelDmpFinddmpmoduleconfigTopResult 结构体

type TaobaoUniversalbpLabelFindconfiglistAPIRequest added in v1.2.9

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

TaobaoUniversalbpLabelFindconfiglistAPIRequest 查询可用标签id信息 API请求 taobao.universalbp.label.findconfiglist

入参账号信息,出参可用标签id,用于下游接口入参

func NewTaobaoUniversalbpLabelFindconfiglistRequest added in v1.2.9

func NewTaobaoUniversalbpLabelFindconfiglistRequest() *TaobaoUniversalbpLabelFindconfiglistAPIRequest

NewTaobaoUniversalbpLabelFindconfiglistRequest 初始化TaobaoUniversalbpLabelFindconfiglistAPIRequest对象

func (TaobaoUniversalbpLabelFindconfiglistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpLabelFindconfiglistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpLabelFindconfiglistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpLabelFindconfiglistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpLabelFindconfiglistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpLabelFindconfiglistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpLabelFindconfiglistAPIResponse added in v1.2.9

type TaobaoUniversalbpLabelFindconfiglistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpLabelFindconfiglistAPIResponseModel
}

TaobaoUniversalbpLabelFindconfiglistAPIResponse 查询可用标签id信息 API返回值 taobao.universalbp.label.findconfiglist

入参账号信息,出参可用标签id,用于下游接口入参

type TaobaoUniversalbpLabelFindconfiglistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpLabelFindconfiglistAPIResponseModel is 查询可用标签id信息 成功返回结果

type TaobaoUniversalbpLabelFindconfiglistTopResult added in v1.2.9

type TaobaoUniversalbpLabelFindconfiglistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	LabelConfigVOTopBulkData *TopBulkData `json:"label_config_v_o_top_bulk_data,omitempty" xml:"label_config_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpLabelFindconfiglistTopResult 结构体

type TaobaoUniversalbpMaterialAccessallowedAPIRequest added in v1.2.9

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

TaobaoUniversalbpMaterialAccessallowedAPIRequest 物料准入判断 API请求 taobao.universalbp.material.accessallowed

入参推广信息,出参相关主体是否可投放。如果投放了风控不准入的商品,无法正常投放。

func NewTaobaoUniversalbpMaterialAccessallowedRequest added in v1.2.9

func NewTaobaoUniversalbpMaterialAccessallowedRequest() *TaobaoUniversalbpMaterialAccessallowedAPIRequest

NewTaobaoUniversalbpMaterialAccessallowedRequest 初始化TaobaoUniversalbpMaterialAccessallowedAPIRequest对象

func (TaobaoUniversalbpMaterialAccessallowedAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpMaterialAccessallowedAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpMaterialAccessallowedAPIRequest) GetMaterialAccessAllowQueryVO added in v1.2.9

GetMaterialAccessAllowQueryVO MaterialAccessAllowQueryVO Getter

func (TaobaoUniversalbpMaterialAccessallowedAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpMaterialAccessallowedAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpMaterialAccessallowedAPIRequest) SetMaterialAccessAllowQueryVO added in v1.2.9

func (r *TaobaoUniversalbpMaterialAccessallowedAPIRequest) SetMaterialAccessAllowQueryVO(_materialAccessAllowQueryVO *MaterialAccessAllowQueryVo) error

SetMaterialAccessAllowQueryVO is MaterialAccessAllowQueryVO Setter materialAccessAllowQueryVO

func (*TaobaoUniversalbpMaterialAccessallowedAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpMaterialAccessallowedAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpMaterialAccessallowedAPIResponse added in v1.2.9

type TaobaoUniversalbpMaterialAccessallowedAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpMaterialAccessallowedAPIResponseModel
}

TaobaoUniversalbpMaterialAccessallowedAPIResponse 物料准入判断 API返回值 taobao.universalbp.material.accessallowed

入参推广信息,出参相关主体是否可投放。如果投放了风控不准入的商品,无法正常投放。

type TaobaoUniversalbpMaterialAccessallowedAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpMaterialAccessallowedAPIResponseModel is 物料准入判断 成功返回结果

type TaobaoUniversalbpMaterialAccessallowedTopResult added in v1.2.9

type TaobaoUniversalbpMaterialAccessallowedTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	MaterialAccessAllowVOTopBulkData *TopBulkData `json:"material_access_allow_v_o_top_bulk_data,omitempty" xml:"material_access_allow_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpMaterialAccessallowedTopResult 结构体

type TaobaoUniversalbpMaterialItemFindpageAPIRequest added in v1.2.9

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

TaobaoUniversalbpMaterialItemFindpageAPIRequest 分页查询商品信息 API请求 taobao.universalbp.material.item.findpage

分页获取店铺内的商品列表

func NewTaobaoUniversalbpMaterialItemFindpageRequest added in v1.2.9

func NewTaobaoUniversalbpMaterialItemFindpageRequest() *TaobaoUniversalbpMaterialItemFindpageAPIRequest

NewTaobaoUniversalbpMaterialItemFindpageRequest 初始化TaobaoUniversalbpMaterialItemFindpageAPIRequest对象

func (TaobaoUniversalbpMaterialItemFindpageAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpMaterialItemFindpageAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpMaterialItemFindpageAPIRequest) GetItemQueryVO added in v1.2.9

GetItemQueryVO ItemQueryVO Getter

func (TaobaoUniversalbpMaterialItemFindpageAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpMaterialItemFindpageAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpMaterialItemFindpageAPIRequest) SetItemQueryVO added in v1.2.9

func (r *TaobaoUniversalbpMaterialItemFindpageAPIRequest) SetItemQueryVO(_itemQueryVO *ItemQueryVo) error

SetItemQueryVO is ItemQueryVO Setter itemQueryVO

func (*TaobaoUniversalbpMaterialItemFindpageAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpMaterialItemFindpageAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpMaterialItemFindpageAPIResponse added in v1.2.9

type TaobaoUniversalbpMaterialItemFindpageAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpMaterialItemFindpageAPIResponseModel
}

TaobaoUniversalbpMaterialItemFindpageAPIResponse 分页查询商品信息 API返回值 taobao.universalbp.material.item.findpage

分页获取店铺内的商品列表

type TaobaoUniversalbpMaterialItemFindpageAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpMaterialItemFindpageAPIResponseModel is 分页查询商品信息 成功返回结果

type TaobaoUniversalbpMaterialItemFindpageTopResult added in v1.2.9

type TaobaoUniversalbpMaterialItemFindpageTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	ItemVOTopBulkData *TopBulkData `json:"item_v_o_top_bulk_data,omitempty" xml:"item_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpMaterialItemFindpageTopResult 结构体

type TaobaoUniversalbpMaterialShopGetAPIRequest added in v1.2.9

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

TaobaoUniversalbpMaterialShopGetAPIRequest 获取店铺信息 API请求 taobao.universalbp.material.shop.get

获取店铺信息

func NewTaobaoUniversalbpMaterialShopGetRequest added in v1.2.9

func NewTaobaoUniversalbpMaterialShopGetRequest() *TaobaoUniversalbpMaterialShopGetAPIRequest

NewTaobaoUniversalbpMaterialShopGetRequest 初始化TaobaoUniversalbpMaterialShopGetAPIRequest对象

func (TaobaoUniversalbpMaterialShopGetAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpMaterialShopGetAPIRequest) GetApiParams added in v1.2.9

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpMaterialShopGetAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpMaterialShopGetAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpMaterialShopGetAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpMaterialShopGetAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpMaterialShopGetAPIResponse added in v1.2.9

type TaobaoUniversalbpMaterialShopGetAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpMaterialShopGetAPIResponseModel
}

TaobaoUniversalbpMaterialShopGetAPIResponse 获取店铺信息 API返回值 taobao.universalbp.material.shop.get

获取店铺信息

type TaobaoUniversalbpMaterialShopGetAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpMaterialShopGetAPIResponseModel is 获取店铺信息 成功返回结果

type TaobaoUniversalbpMaterialShopGetTopResult added in v1.2.9

type TaobaoUniversalbpMaterialShopGetTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	ShopInfoVO *ShopInfoVo `json:"shop_info_v_o,omitempty" xml:"shop_info_v_o,omitempty"`
}

TaobaoUniversalbpMaterialShopGetTopResult 结构体

type TaobaoUniversalbpMemberFindbrandinfolistAPIRequest added in v1.2.9

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

TaobaoUniversalbpMemberFindbrandinfolistAPIRequest 查询可用品牌列表 API请求 taobao.universalbp.member.findbrandinfolist

查询账号对应的品牌,用于品牌人群屏蔽等

func NewTaobaoUniversalbpMemberFindbrandinfolistRequest added in v1.2.9

func NewTaobaoUniversalbpMemberFindbrandinfolistRequest() *TaobaoUniversalbpMemberFindbrandinfolistAPIRequest

NewTaobaoUniversalbpMemberFindbrandinfolistRequest 初始化TaobaoUniversalbpMemberFindbrandinfolistAPIRequest对象

func (TaobaoUniversalbpMemberFindbrandinfolistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpMemberFindbrandinfolistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpMemberFindbrandinfolistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpMemberFindbrandinfolistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpMemberFindbrandinfolistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpMemberFindbrandinfolistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpMemberFindbrandinfolistAPIResponse added in v1.2.9

type TaobaoUniversalbpMemberFindbrandinfolistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpMemberFindbrandinfolistAPIResponseModel
}

TaobaoUniversalbpMemberFindbrandinfolistAPIResponse 查询可用品牌列表 API返回值 taobao.universalbp.member.findbrandinfolist

查询账号对应的品牌,用于品牌人群屏蔽等

type TaobaoUniversalbpMemberFindbrandinfolistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpMemberFindbrandinfolistAPIResponseModel is 查询可用品牌列表 成功返回结果

type TaobaoUniversalbpMemberFindbrandinfolistTopResult added in v1.2.9

type TaobaoUniversalbpMemberFindbrandinfolistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	BrandInfoVOTopBulkData *TopBulkData `json:"brand_info_v_o_top_bulk_data,omitempty" xml:"brand_info_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpMemberFindbrandinfolistTopResult 结构体

type TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest added in v1.2.9

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

TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest 创建异步下载任务 API请求 taobao.universalbp.report.async.create.download.task

入参报表查询信息,出参下载任务id

func NewTaobaoUniversalbpReportAsyncCreateDownloadTaskRequest added in v1.2.9

func NewTaobaoUniversalbpReportAsyncCreateDownloadTaskRequest() *TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest

NewTaobaoUniversalbpReportAsyncCreateDownloadTaskRequest 初始化TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest对象

func (TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest) GetReportQueryVO added in v1.2.9

GetReportQueryVO ReportQueryVO Getter

func (TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest) SetReportQueryVO added in v1.2.9

SetReportQueryVO is ReportQueryVO Setter reportQueryVO

func (*TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIResponse added in v1.2.9

type TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIResponseModel
}

TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIResponse 创建异步下载任务 API返回值 taobao.universalbp.report.async.create.download.task

入参报表查询信息,出参下载任务id

type TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpReportAsyncCreateDownloadTaskAPIResponseModel is 创建异步下载任务 成功返回结果

type TaobaoUniversalbpReportAsyncCreateDownloadTaskTopResult added in v1.2.9

type TaobaoUniversalbpReportAsyncCreateDownloadTaskTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopReportDownloadVO *TopReportDownloadVo `json:"top_report_download_v_o,omitempty" xml:"top_report_download_v_o,omitempty"`
}

TaobaoUniversalbpReportAsyncCreateDownloadTaskTopResult 结构体

type TaobaoUniversalbpReportQueryAccountAPIRequest added in v1.2.9

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

TaobaoUniversalbpReportQueryAccountAPIRequest 账户报表查询 API请求 taobao.universalbp.report.query.account

账户报表查询

func NewTaobaoUniversalbpReportQueryAccountRequest added in v1.2.9

func NewTaobaoUniversalbpReportQueryAccountRequest() *TaobaoUniversalbpReportQueryAccountAPIRequest

NewTaobaoUniversalbpReportQueryAccountRequest 初始化TaobaoUniversalbpReportQueryAccountAPIRequest对象

func (TaobaoUniversalbpReportQueryAccountAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpReportQueryAccountAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpReportQueryAccountAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpReportQueryAccountAPIRequest) GetTopAccountReportQueryVO added in v1.2.9

GetTopAccountReportQueryVO TopAccountReportQueryVO Getter

func (TaobaoUniversalbpReportQueryAccountAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpReportQueryAccountAPIRequest) SetTopAccountReportQueryVO added in v1.2.9

func (r *TaobaoUniversalbpReportQueryAccountAPIRequest) SetTopAccountReportQueryVO(_topAccountReportQueryVO *TopAccountReportQueryVo) error

SetTopAccountReportQueryVO is TopAccountReportQueryVO Setter topAccountReportQueryVO

func (*TaobaoUniversalbpReportQueryAccountAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpReportQueryAccountAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpReportQueryAccountAPIResponse added in v1.2.9

type TaobaoUniversalbpReportQueryAccountAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpReportQueryAccountAPIResponseModel
}

TaobaoUniversalbpReportQueryAccountAPIResponse 账户报表查询 API返回值 taobao.universalbp.report.query.account

账户报表查询

type TaobaoUniversalbpReportQueryAccountAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpReportQueryAccountAPIResponseModel is 账户报表查询 成功返回结果

type TaobaoUniversalbpReportQueryAccountTopResult added in v1.2.9

type TaobaoUniversalbpReportQueryAccountTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopReportVOTopBulkData *TopBulkData `json:"top_report_v_o_top_bulk_data,omitempty" xml:"top_report_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpReportQueryAccountTopResult 结构体

type TaobaoUniversalbpReportQueryAdgroupAPIRequest added in v1.2.9

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

TaobaoUniversalbpReportQueryAdgroupAPIRequest 单元报表查询 API请求 taobao.universalbp.report.query.adgroup

单元报表查询

func NewTaobaoUniversalbpReportQueryAdgroupRequest added in v1.2.9

func NewTaobaoUniversalbpReportQueryAdgroupRequest() *TaobaoUniversalbpReportQueryAdgroupAPIRequest

NewTaobaoUniversalbpReportQueryAdgroupRequest 初始化TaobaoUniversalbpReportQueryAdgroupAPIRequest对象

func (TaobaoUniversalbpReportQueryAdgroupAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpReportQueryAdgroupAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpReportQueryAdgroupAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpReportQueryAdgroupAPIRequest) GetTopAdgroupReportQueryVO added in v1.2.9

GetTopAdgroupReportQueryVO TopAdgroupReportQueryVO Getter

func (TaobaoUniversalbpReportQueryAdgroupAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpReportQueryAdgroupAPIRequest) SetTopAdgroupReportQueryVO added in v1.2.9

func (r *TaobaoUniversalbpReportQueryAdgroupAPIRequest) SetTopAdgroupReportQueryVO(_topAdgroupReportQueryVO *TopAdgroupReportQueryVo) error

SetTopAdgroupReportQueryVO is TopAdgroupReportQueryVO Setter topAdgroupReportQueryVO

func (*TaobaoUniversalbpReportQueryAdgroupAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpReportQueryAdgroupAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpReportQueryAdgroupAPIResponse added in v1.2.9

type TaobaoUniversalbpReportQueryAdgroupAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpReportQueryAdgroupAPIResponseModel
}

TaobaoUniversalbpReportQueryAdgroupAPIResponse 单元报表查询 API返回值 taobao.universalbp.report.query.adgroup

单元报表查询

type TaobaoUniversalbpReportQueryAdgroupAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpReportQueryAdgroupAPIResponseModel is 单元报表查询 成功返回结果

type TaobaoUniversalbpReportQueryAdgroupTopResult added in v1.2.9

type TaobaoUniversalbpReportQueryAdgroupTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopReportVOTopBulkData *TopBulkData `json:"top_report_v_o_top_bulk_data,omitempty" xml:"top_report_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpReportQueryAdgroupTopResult 结构体

type TaobaoUniversalbpReportQueryAreaAPIRequest added in v1.2.9

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

TaobaoUniversalbpReportQueryAreaAPIRequest 地域报表查询 API请求 taobao.universalbp.report.query.area

地域报表查询

func NewTaobaoUniversalbpReportQueryAreaRequest added in v1.2.9

func NewTaobaoUniversalbpReportQueryAreaRequest() *TaobaoUniversalbpReportQueryAreaAPIRequest

NewTaobaoUniversalbpReportQueryAreaRequest 初始化TaobaoUniversalbpReportQueryAreaAPIRequest对象

func (TaobaoUniversalbpReportQueryAreaAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpReportQueryAreaAPIRequest) GetApiParams added in v1.2.9

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

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpReportQueryAreaAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpReportQueryAreaAPIRequest) GetTopAreaReportQueryVO added in v1.2.9

GetTopAreaReportQueryVO TopAreaReportQueryVO Getter

func (TaobaoUniversalbpReportQueryAreaAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpReportQueryAreaAPIRequest) SetTopAreaReportQueryVO added in v1.2.9

func (r *TaobaoUniversalbpReportQueryAreaAPIRequest) SetTopAreaReportQueryVO(_topAreaReportQueryVO *TopAreaReportQueryVo) error

SetTopAreaReportQueryVO is TopAreaReportQueryVO Setter topAreaReportQueryVO

func (*TaobaoUniversalbpReportQueryAreaAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpReportQueryAreaAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpReportQueryAreaAPIResponse added in v1.2.9

type TaobaoUniversalbpReportQueryAreaAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpReportQueryAreaAPIResponseModel
}

TaobaoUniversalbpReportQueryAreaAPIResponse 地域报表查询 API返回值 taobao.universalbp.report.query.area

地域报表查询

type TaobaoUniversalbpReportQueryAreaAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpReportQueryAreaAPIResponseModel is 地域报表查询 成功返回结果

type TaobaoUniversalbpReportQueryAreaTopResult added in v1.2.9

type TaobaoUniversalbpReportQueryAreaTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopReportVOTopBulkData *TopBulkData `json:"top_report_v_o_top_bulk_data,omitempty" xml:"top_report_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpReportQueryAreaTopResult 结构体

type TaobaoUniversalbpReportQueryBidwordAPIRequest added in v1.2.9

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

TaobaoUniversalbpReportQueryBidwordAPIRequest 关键词报表查询 API请求 taobao.universalbp.report.query.bidword

关键词报表查询

func NewTaobaoUniversalbpReportQueryBidwordRequest added in v1.2.9

func NewTaobaoUniversalbpReportQueryBidwordRequest() *TaobaoUniversalbpReportQueryBidwordAPIRequest

NewTaobaoUniversalbpReportQueryBidwordRequest 初始化TaobaoUniversalbpReportQueryBidwordAPIRequest对象

func (TaobaoUniversalbpReportQueryBidwordAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpReportQueryBidwordAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpReportQueryBidwordAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpReportQueryBidwordAPIRequest) GetTopBidWordReportQueryVO added in v1.2.9

GetTopBidWordReportQueryVO TopBidWordReportQueryVO Getter

func (TaobaoUniversalbpReportQueryBidwordAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpReportQueryBidwordAPIRequest) SetTopBidWordReportQueryVO added in v1.2.9

func (r *TaobaoUniversalbpReportQueryBidwordAPIRequest) SetTopBidWordReportQueryVO(_topBidWordReportQueryVO *TopBidWordReportQueryVo) error

SetTopBidWordReportQueryVO is TopBidWordReportQueryVO Setter topBidWordReportQueryVO

func (*TaobaoUniversalbpReportQueryBidwordAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpReportQueryBidwordAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpReportQueryBidwordAPIResponse added in v1.2.9

type TaobaoUniversalbpReportQueryBidwordAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpReportQueryBidwordAPIResponseModel
}

TaobaoUniversalbpReportQueryBidwordAPIResponse 关键词报表查询 API返回值 taobao.universalbp.report.query.bidword

关键词报表查询

type TaobaoUniversalbpReportQueryBidwordAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpReportQueryBidwordAPIResponseModel is 关键词报表查询 成功返回结果

type TaobaoUniversalbpReportQueryBidwordTopResult added in v1.2.9

type TaobaoUniversalbpReportQueryBidwordTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopReportVOTopBulkData *TopBulkData `json:"top_report_v_o_top_bulk_data,omitempty" xml:"top_report_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpReportQueryBidwordTopResult 结构体

type TaobaoUniversalbpReportQueryCampaignAPIRequest added in v1.2.9

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

TaobaoUniversalbpReportQueryCampaignAPIRequest 计划报表查询 API请求 taobao.universalbp.report.query.campaign

计划报表查询

func NewTaobaoUniversalbpReportQueryCampaignRequest added in v1.2.9

func NewTaobaoUniversalbpReportQueryCampaignRequest() *TaobaoUniversalbpReportQueryCampaignAPIRequest

NewTaobaoUniversalbpReportQueryCampaignRequest 初始化TaobaoUniversalbpReportQueryCampaignAPIRequest对象

func (TaobaoUniversalbpReportQueryCampaignAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpReportQueryCampaignAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpReportQueryCampaignAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpReportQueryCampaignAPIRequest) GetTopCampaignReportQueryVO added in v1.2.9

GetTopCampaignReportQueryVO TopCampaignReportQueryVO Getter

func (TaobaoUniversalbpReportQueryCampaignAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpReportQueryCampaignAPIRequest) SetTopCampaignReportQueryVO added in v1.2.9

func (r *TaobaoUniversalbpReportQueryCampaignAPIRequest) SetTopCampaignReportQueryVO(_topCampaignReportQueryVO *TopCampaignReportQueryVo) error

SetTopCampaignReportQueryVO is TopCampaignReportQueryVO Setter topCampaignReportQueryVO

func (*TaobaoUniversalbpReportQueryCampaignAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpReportQueryCampaignAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpReportQueryCampaignAPIResponse added in v1.2.9

type TaobaoUniversalbpReportQueryCampaignAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpReportQueryCampaignAPIResponseModel
}

TaobaoUniversalbpReportQueryCampaignAPIResponse 计划报表查询 API返回值 taobao.universalbp.report.query.campaign

计划报表查询

type TaobaoUniversalbpReportQueryCampaignAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpReportQueryCampaignAPIResponseModel is 计划报表查询 成功返回结果

type TaobaoUniversalbpReportQueryCampaignTopResult added in v1.2.9

type TaobaoUniversalbpReportQueryCampaignTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopReportVOTopBulkData *TopBulkData `json:"top_report_v_o_top_bulk_data,omitempty" xml:"top_report_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpReportQueryCampaignTopResult 结构体

type TaobaoUniversalbpReportQueryCreativeAPIRequest added in v1.2.9

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

TaobaoUniversalbpReportQueryCreativeAPIRequest 创意报表查询 API请求 taobao.universalbp.report.query.creative

创意报表查询

func NewTaobaoUniversalbpReportQueryCreativeRequest added in v1.2.9

func NewTaobaoUniversalbpReportQueryCreativeRequest() *TaobaoUniversalbpReportQueryCreativeAPIRequest

NewTaobaoUniversalbpReportQueryCreativeRequest 初始化TaobaoUniversalbpReportQueryCreativeAPIRequest对象

func (TaobaoUniversalbpReportQueryCreativeAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpReportQueryCreativeAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpReportQueryCreativeAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpReportQueryCreativeAPIRequest) GetTopCreativeReportQueryVO added in v1.2.9

GetTopCreativeReportQueryVO TopCreativeReportQueryVO Getter

func (TaobaoUniversalbpReportQueryCreativeAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpReportQueryCreativeAPIRequest) SetTopCreativeReportQueryVO added in v1.2.9

func (r *TaobaoUniversalbpReportQueryCreativeAPIRequest) SetTopCreativeReportQueryVO(_topCreativeReportQueryVO *TopCreativeReportQueryVo) error

SetTopCreativeReportQueryVO is TopCreativeReportQueryVO Setter topCreativeReportQueryVO

func (*TaobaoUniversalbpReportQueryCreativeAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpReportQueryCreativeAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpReportQueryCreativeAPIResponse added in v1.2.9

type TaobaoUniversalbpReportQueryCreativeAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpReportQueryCreativeAPIResponseModel
}

TaobaoUniversalbpReportQueryCreativeAPIResponse 创意报表查询 API返回值 taobao.universalbp.report.query.creative

创意报表查询

type TaobaoUniversalbpReportQueryCreativeAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpReportQueryCreativeAPIResponseModel is 创意报表查询 成功返回结果

type TaobaoUniversalbpReportQueryCreativeTopResult added in v1.2.9

type TaobaoUniversalbpReportQueryCreativeTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopReportVOTopBulkData *TopBulkData `json:"top_report_v_o_top_bulk_data,omitempty" xml:"top_report_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpReportQueryCreativeTopResult 结构体

type TaobaoUniversalbpReportQueryCrowdAPIRequest added in v1.2.9

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

TaobaoUniversalbpReportQueryCrowdAPIRequest 人群报表查询 API请求 taobao.universalbp.report.query.crowd

人群报表查询

func NewTaobaoUniversalbpReportQueryCrowdRequest added in v1.2.9

func NewTaobaoUniversalbpReportQueryCrowdRequest() *TaobaoUniversalbpReportQueryCrowdAPIRequest

NewTaobaoUniversalbpReportQueryCrowdRequest 初始化TaobaoUniversalbpReportQueryCrowdAPIRequest对象

func (TaobaoUniversalbpReportQueryCrowdAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpReportQueryCrowdAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpReportQueryCrowdAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpReportQueryCrowdAPIRequest) GetTopCrowdReportQueryVO added in v1.2.9

GetTopCrowdReportQueryVO TopCrowdReportQueryVO Getter

func (TaobaoUniversalbpReportQueryCrowdAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpReportQueryCrowdAPIRequest) SetTopCrowdReportQueryVO added in v1.2.9

func (r *TaobaoUniversalbpReportQueryCrowdAPIRequest) SetTopCrowdReportQueryVO(_topCrowdReportQueryVO *TopCrowdReportQueryVo) error

SetTopCrowdReportQueryVO is TopCrowdReportQueryVO Setter topCrowdReportQueryVO

func (*TaobaoUniversalbpReportQueryCrowdAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpReportQueryCrowdAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpReportQueryCrowdAPIResponse added in v1.2.9

type TaobaoUniversalbpReportQueryCrowdAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpReportQueryCrowdAPIResponseModel
}

TaobaoUniversalbpReportQueryCrowdAPIResponse 人群报表查询 API返回值 taobao.universalbp.report.query.crowd

人群报表查询

type TaobaoUniversalbpReportQueryCrowdAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpReportQueryCrowdAPIResponseModel is 人群报表查询 成功返回结果

type TaobaoUniversalbpReportQueryCrowdTopResult added in v1.2.9

type TaobaoUniversalbpReportQueryCrowdTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopReportVOTopBulkData *TopBulkData `json:"top_report_v_o_top_bulk_data,omitempty" xml:"top_report_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpReportQueryCrowdTopResult 结构体

type TaobaoUniversalbpReportQueryItemPromotionAPIRequest added in v1.2.9

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

TaobaoUniversalbpReportQueryItemPromotionAPIRequest 宝贝主体报表查询 API请求 taobao.universalbp.report.query.item.promotion

宝贝主体报表查询

func NewTaobaoUniversalbpReportQueryItemPromotionRequest added in v1.2.9

func NewTaobaoUniversalbpReportQueryItemPromotionRequest() *TaobaoUniversalbpReportQueryItemPromotionAPIRequest

NewTaobaoUniversalbpReportQueryItemPromotionRequest 初始化TaobaoUniversalbpReportQueryItemPromotionAPIRequest对象

func (TaobaoUniversalbpReportQueryItemPromotionAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpReportQueryItemPromotionAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpReportQueryItemPromotionAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpReportQueryItemPromotionAPIRequest) GetTopItemPromotionReportQueryVO added in v1.2.9

GetTopItemPromotionReportQueryVO TopItemPromotionReportQueryVO Getter

func (TaobaoUniversalbpReportQueryItemPromotionAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpReportQueryItemPromotionAPIRequest) SetTopItemPromotionReportQueryVO added in v1.2.9

func (r *TaobaoUniversalbpReportQueryItemPromotionAPIRequest) SetTopItemPromotionReportQueryVO(_topItemPromotionReportQueryVO *TopItemPromotionReportQueryVo) error

SetTopItemPromotionReportQueryVO is TopItemPromotionReportQueryVO Setter topItemPromotionReportQueryVO

func (*TaobaoUniversalbpReportQueryItemPromotionAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpReportQueryItemPromotionAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpReportQueryItemPromotionAPIResponse added in v1.2.9

type TaobaoUniversalbpReportQueryItemPromotionAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpReportQueryItemPromotionAPIResponseModel
}

TaobaoUniversalbpReportQueryItemPromotionAPIResponse 宝贝主体报表查询 API返回值 taobao.universalbp.report.query.item.promotion

宝贝主体报表查询

type TaobaoUniversalbpReportQueryItemPromotionAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpReportQueryItemPromotionAPIResponseModel is 宝贝主体报表查询 成功返回结果

type TaobaoUniversalbpReportQueryItemPromotionTopResult added in v1.2.9

type TaobaoUniversalbpReportQueryItemPromotionTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopReportVOTopBulkData *TopBulkData `json:"top_report_v_o_top_bulk_data,omitempty" xml:"top_report_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpReportQueryItemPromotionTopResult 结构体

type TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest added in v1.2.9

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

TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest 其他主体报表查询 API请求 taobao.universalbp.report.query.not.item.promotion

其他主体报表查询

func NewTaobaoUniversalbpReportQueryNotItemPromotionRequest added in v1.2.9

func NewTaobaoUniversalbpReportQueryNotItemPromotionRequest() *TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest

NewTaobaoUniversalbpReportQueryNotItemPromotionRequest 初始化TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest对象

func (TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest) GetTopOtherPromotionReportQueryVO added in v1.2.9

GetTopOtherPromotionReportQueryVO TopOtherPromotionReportQueryVO Getter

func (TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest) SetTopOtherPromotionReportQueryVO added in v1.2.9

func (r *TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest) SetTopOtherPromotionReportQueryVO(_topOtherPromotionReportQueryVO *TopOtherPromotionReportQueryVo) error

SetTopOtherPromotionReportQueryVO is TopOtherPromotionReportQueryVO Setter topOtherPromotionReportQueryVO

func (*TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpReportQueryNotItemPromotionAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpReportQueryNotItemPromotionAPIResponse added in v1.2.9

type TaobaoUniversalbpReportQueryNotItemPromotionAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpReportQueryNotItemPromotionAPIResponseModel
}

TaobaoUniversalbpReportQueryNotItemPromotionAPIResponse 其他主体报表查询 API返回值 taobao.universalbp.report.query.not.item.promotion

其他主体报表查询

type TaobaoUniversalbpReportQueryNotItemPromotionAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpReportQueryNotItemPromotionAPIResponseModel is 其他主体报表查询 成功返回结果

type TaobaoUniversalbpReportQueryNotItemPromotionTopResult added in v1.2.9

type TaobaoUniversalbpReportQueryNotItemPromotionTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopReportVOTopBulkData *TopBulkData `json:"top_report_v_o_top_bulk_data,omitempty" xml:"top_report_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpReportQueryNotItemPromotionTopResult 结构体

type TaobaoUniversalbpReportQueryRealtimeAPIRequest added in v1.2.9

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

TaobaoUniversalbpReportQueryRealtimeAPIRequest 实时报表查询 API请求 taobao.universalbp.report.query.realtime

实时报表查询

func NewTaobaoUniversalbpReportQueryRealtimeRequest added in v1.2.9

func NewTaobaoUniversalbpReportQueryRealtimeRequest() *TaobaoUniversalbpReportQueryRealtimeAPIRequest

NewTaobaoUniversalbpReportQueryRealtimeRequest 初始化TaobaoUniversalbpReportQueryRealtimeAPIRequest对象

func (TaobaoUniversalbpReportQueryRealtimeAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpReportQueryRealtimeAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpReportQueryRealtimeAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpReportQueryRealtimeAPIRequest) GetTopRealTimeReportQueryVO added in v1.2.9

GetTopRealTimeReportQueryVO TopRealTimeReportQueryVO Getter

func (TaobaoUniversalbpReportQueryRealtimeAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpReportQueryRealtimeAPIRequest) SetTopRealTimeReportQueryVO added in v1.2.9

func (r *TaobaoUniversalbpReportQueryRealtimeAPIRequest) SetTopRealTimeReportQueryVO(_topRealTimeReportQueryVO *TopRealTimeReportQueryVo) error

SetTopRealTimeReportQueryVO is TopRealTimeReportQueryVO Setter topRealTimeReportQueryVO

func (*TaobaoUniversalbpReportQueryRealtimeAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpReportQueryRealtimeAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpReportQueryRealtimeAPIResponse added in v1.2.9

type TaobaoUniversalbpReportQueryRealtimeAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpReportQueryRealtimeAPIResponseModel
}

TaobaoUniversalbpReportQueryRealtimeAPIResponse 实时报表查询 API返回值 taobao.universalbp.report.query.realtime

实时报表查询

type TaobaoUniversalbpReportQueryRealtimeAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpReportQueryRealtimeAPIResponseModel is 实时报表查询 成功返回结果

type TaobaoUniversalbpReportQueryRealtimeTopResult added in v1.2.9

type TaobaoUniversalbpReportQueryRealtimeTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	TopReportVOTopBulkData *TopBulkData `json:"top_report_v_o_top_bulk_data,omitempty" xml:"top_report_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpReportQueryRealtimeTopResult 结构体

type TaobaoUniversalbpShopcategoryFindlistAPIRequest added in v1.2.9

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

TaobaoUniversalbpShopcategoryFindlistAPIRequest 人群相关类目查询 API请求 taobao.universalbp.shopcategory.findlist

查询店铺所属的类目信息

func NewTaobaoUniversalbpShopcategoryFindlistRequest added in v1.2.9

func NewTaobaoUniversalbpShopcategoryFindlistRequest() *TaobaoUniversalbpShopcategoryFindlistAPIRequest

NewTaobaoUniversalbpShopcategoryFindlistRequest 初始化TaobaoUniversalbpShopcategoryFindlistAPIRequest对象

func (TaobaoUniversalbpShopcategoryFindlistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpShopcategoryFindlistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpShopcategoryFindlistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpShopcategoryFindlistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpShopcategoryFindlistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpShopcategoryFindlistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpShopcategoryFindlistAPIResponse added in v1.2.9

type TaobaoUniversalbpShopcategoryFindlistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpShopcategoryFindlistAPIResponseModel
}

TaobaoUniversalbpShopcategoryFindlistAPIResponse 人群相关类目查询 API返回值 taobao.universalbp.shopcategory.findlist

查询店铺所属的类目信息

type TaobaoUniversalbpShopcategoryFindlistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpShopcategoryFindlistAPIResponseModel is 人群相关类目查询 成功返回结果

type TaobaoUniversalbpShopcategoryFindlistTopResult added in v1.2.9

type TaobaoUniversalbpShopcategoryFindlistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	ShopCategoryVOTopBulkData *TopBulkData `json:"shop_category_v_o_top_bulk_data,omitempty" xml:"shop_category_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpShopcategoryFindlistTopResult 结构体

type TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest added in v1.2.9

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

TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest 获取类目过滤条件 API请求 taobao.universalbp.stdcategory.findcategorycondition

查询全量类目信息列表,用于进行类目兴趣人群相关定向

func NewTaobaoUniversalbpStdcategoryFindcategoryconditionRequest added in v1.2.9

func NewTaobaoUniversalbpStdcategoryFindcategoryconditionRequest() *TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest

NewTaobaoUniversalbpStdcategoryFindcategoryconditionRequest 初始化TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest对象

func (TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest) GetStdCategoryQueryVO added in v1.2.9

GetStdCategoryQueryVO StdCategoryQueryVO Getter

func (TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest) SetStdCategoryQueryVO added in v1.2.9

func (r *TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest) SetStdCategoryQueryVO(_stdCategoryQueryVO *StdCategoryQueryVo) error

SetStdCategoryQueryVO is StdCategoryQueryVO Setter stdCategoryQueryVO

func (*TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpStdcategoryFindcategoryconditionAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpStdcategoryFindcategoryconditionAPIResponse added in v1.2.9

type TaobaoUniversalbpStdcategoryFindcategoryconditionAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpStdcategoryFindcategoryconditionAPIResponseModel
}

TaobaoUniversalbpStdcategoryFindcategoryconditionAPIResponse 获取类目过滤条件 API返回值 taobao.universalbp.stdcategory.findcategorycondition

查询全量类目信息列表,用于进行类目兴趣人群相关定向

type TaobaoUniversalbpStdcategoryFindcategoryconditionAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpStdcategoryFindcategoryconditionAPIResponseModel is 获取类目过滤条件 成功返回结果

type TaobaoUniversalbpStdcategoryFindcategoryconditionTopResult added in v1.2.9

type TaobaoUniversalbpStdcategoryFindcategoryconditionTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	StdCategoryVOTopBulkData *TopBulkData `json:"std_category_v_o_top_bulk_data,omitempty" xml:"std_category_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpStdcategoryFindcategoryconditionTopResult 结构体

type TaobaoUniversalbpStdcategoryFindlistAPIRequest added in v1.2.9

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

TaobaoUniversalbpStdcategoryFindlistAPIRequest 人群相关类目查询 API请求 taobao.universalbp.stdcategory.findlist

入参商品信息,出参商品所属类别

func NewTaobaoUniversalbpStdcategoryFindlistRequest added in v1.2.9

func NewTaobaoUniversalbpStdcategoryFindlistRequest() *TaobaoUniversalbpStdcategoryFindlistAPIRequest

NewTaobaoUniversalbpStdcategoryFindlistRequest 初始化TaobaoUniversalbpStdcategoryFindlistAPIRequest对象

func (TaobaoUniversalbpStdcategoryFindlistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpStdcategoryFindlistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpStdcategoryFindlistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpStdcategoryFindlistAPIRequest) GetStdCategoryQueryVO added in v1.2.9

GetStdCategoryQueryVO StdCategoryQueryVO Getter

func (TaobaoUniversalbpStdcategoryFindlistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (*TaobaoUniversalbpStdcategoryFindlistAPIRequest) SetStdCategoryQueryVO added in v1.2.9

func (r *TaobaoUniversalbpStdcategoryFindlistAPIRequest) SetStdCategoryQueryVO(_stdCategoryQueryVO *StdCategoryQueryVo) error

SetStdCategoryQueryVO is StdCategoryQueryVO Setter stdCategoryQueryVO

func (*TaobaoUniversalbpStdcategoryFindlistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpStdcategoryFindlistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

type TaobaoUniversalbpStdcategoryFindlistAPIResponse added in v1.2.9

type TaobaoUniversalbpStdcategoryFindlistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpStdcategoryFindlistAPIResponseModel
}

TaobaoUniversalbpStdcategoryFindlistAPIResponse 人群相关类目查询 API返回值 taobao.universalbp.stdcategory.findlist

入参商品信息,出参商品所属类别

type TaobaoUniversalbpStdcategoryFindlistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpStdcategoryFindlistAPIResponseModel is 人群相关类目查询 成功返回结果

type TaobaoUniversalbpStdcategoryFindlistTopResult added in v1.2.9

type TaobaoUniversalbpStdcategoryFindlistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	StdCategoryVOTopBulkData *TopBulkData `json:"std_category_v_o_top_bulk_data,omitempty" xml:"std_category_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpStdcategoryFindlistTopResult 结构体

type TaobaoUniversalbpWordpackageFindlistAPIRequest added in v1.2.9

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

TaobaoUniversalbpWordpackageFindlistAPIRequest 词包列表查询 API请求 taobao.universalbp.wordpackage.findlist

根据计划+单元id,查绑定的词包列表

func NewTaobaoUniversalbpWordpackageFindlistRequest added in v1.2.9

func NewTaobaoUniversalbpWordpackageFindlistRequest() *TaobaoUniversalbpWordpackageFindlistAPIRequest

NewTaobaoUniversalbpWordpackageFindlistRequest 初始化TaobaoUniversalbpWordpackageFindlistAPIRequest对象

func (TaobaoUniversalbpWordpackageFindlistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpWordpackageFindlistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpWordpackageFindlistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpWordpackageFindlistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (TaobaoUniversalbpWordpackageFindlistAPIRequest) GetWordPackageQueryVO added in v1.2.9

GetWordPackageQueryVO WordPackageQueryVO Getter

func (*TaobaoUniversalbpWordpackageFindlistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpWordpackageFindlistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

func (*TaobaoUniversalbpWordpackageFindlistAPIRequest) SetWordPackageQueryVO added in v1.2.9

func (r *TaobaoUniversalbpWordpackageFindlistAPIRequest) SetWordPackageQueryVO(_wordPackageQueryVO *WordPackageQueryVo) error

SetWordPackageQueryVO is WordPackageQueryVO Setter wordPackageQueryVO

type TaobaoUniversalbpWordpackageFindlistAPIResponse added in v1.2.9

type TaobaoUniversalbpWordpackageFindlistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpWordpackageFindlistAPIResponseModel
}

TaobaoUniversalbpWordpackageFindlistAPIResponse 词包列表查询 API返回值 taobao.universalbp.wordpackage.findlist

根据计划+单元id,查绑定的词包列表

type TaobaoUniversalbpWordpackageFindlistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpWordpackageFindlistAPIResponseModel is 词包列表查询 成功返回结果

type TaobaoUniversalbpWordpackageFindlistTopResult added in v1.2.9

type TaobaoUniversalbpWordpackageFindlistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	WordPackageVOTopBulkData *TopBulkData `json:"word_package_v_o_top_bulk_data,omitempty" xml:"word_package_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpWordpackageFindlistTopResult 结构体

type TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest added in v1.2.9

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

TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest 建议默认关键词包 API请求 taobao.universalbp.wordpackage.suggestdefaultlist

入参推广信息,出参建议的默认关键词包

func NewTaobaoUniversalbpWordpackageSuggestdefaultlistRequest added in v1.2.9

func NewTaobaoUniversalbpWordpackageSuggestdefaultlistRequest() *TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest

NewTaobaoUniversalbpWordpackageSuggestdefaultlistRequest 初始化TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest对象

func (TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest) GetWordPackageDefaultQueryVO added in v1.2.9

GetWordPackageDefaultQueryVO WordPackageDefaultQueryVO Getter

func (*TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

func (*TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest) SetWordPackageDefaultQueryVO added in v1.2.9

func (r *TaobaoUniversalbpWordpackageSuggestdefaultlistAPIRequest) SetWordPackageDefaultQueryVO(_wordPackageDefaultQueryVO *WordPackageDefaultQueryVo) error

SetWordPackageDefaultQueryVO is WordPackageDefaultQueryVO Setter wordPackageDefaultQueryVO

type TaobaoUniversalbpWordpackageSuggestdefaultlistAPIResponse added in v1.2.9

type TaobaoUniversalbpWordpackageSuggestdefaultlistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpWordpackageSuggestdefaultlistAPIResponseModel
}

TaobaoUniversalbpWordpackageSuggestdefaultlistAPIResponse 建议默认关键词包 API返回值 taobao.universalbp.wordpackage.suggestdefaultlist

入参推广信息,出参建议的默认关键词包

type TaobaoUniversalbpWordpackageSuggestdefaultlistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpWordpackageSuggestdefaultlistAPIResponseModel is 建议默认关键词包 成功返回结果

type TaobaoUniversalbpWordpackageSuggestdefaultlistTopResult added in v1.2.9

type TaobaoUniversalbpWordpackageSuggestdefaultlistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	WordPackageSuggestItemVOTopBulkData *TopBulkData `json:"word_package_suggest_item_v_o_top_bulk_data,omitempty" xml:"word_package_suggest_item_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpWordpackageSuggestdefaultlistTopResult 结构体

type TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest added in v1.2.9

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

TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest 关键词包建议 API请求 taobao.universalbp.wordpackage.suggestkrlist

入参推广信息,出参建议的全部关键词包

func NewTaobaoUniversalbpWordpackageSuggestkrlistRequest added in v1.2.9

func NewTaobaoUniversalbpWordpackageSuggestkrlistRequest() *TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest

NewTaobaoUniversalbpWordpackageSuggestkrlistRequest 初始化TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest对象

func (TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest) GetApiMethodName added in v1.2.9

GetApiMethodName IRequest interface 方法, 获取Api method

func (TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest) GetApiParams added in v1.2.9

GetApiParams IRequest interface 方法, 获取API参数

func (TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest) GetRawParams added in v1.2.9

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

func (TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest) GetTopServiceContext added in v1.2.9

GetTopServiceContext TopServiceContext Getter

func (TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest) GetWordPackageSuggestQueryVO added in v1.2.9

GetWordPackageSuggestQueryVO WordPackageSuggestQueryVO Getter

func (*TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest) SetTopServiceContext added in v1.2.9

func (r *TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest) SetTopServiceContext(_topServiceContext *TopServiceContext) error

SetTopServiceContext is TopServiceContext Setter topServiceContext

func (*TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest) SetWordPackageSuggestQueryVO added in v1.2.9

func (r *TaobaoUniversalbpWordpackageSuggestkrlistAPIRequest) SetWordPackageSuggestQueryVO(_wordPackageSuggestQueryVO *WordPackageSuggestQueryVo) error

SetWordPackageSuggestQueryVO is WordPackageSuggestQueryVO Setter wordPackageSuggestQueryVO

type TaobaoUniversalbpWordpackageSuggestkrlistAPIResponse added in v1.2.9

type TaobaoUniversalbpWordpackageSuggestkrlistAPIResponse struct {
	model.CommonResponse
	TaobaoUniversalbpWordpackageSuggestkrlistAPIResponseModel
}

TaobaoUniversalbpWordpackageSuggestkrlistAPIResponse 关键词包建议 API返回值 taobao.universalbp.wordpackage.suggestkrlist

入参推广信息,出参建议的全部关键词包

type TaobaoUniversalbpWordpackageSuggestkrlistAPIResponseModel added in v1.2.9

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

TaobaoUniversalbpWordpackageSuggestkrlistAPIResponseModel is 关键词包建议 成功返回结果

type TaobaoUniversalbpWordpackageSuggestkrlistTopResult added in v1.2.9

type TaobaoUniversalbpWordpackageSuggestkrlistTopResult struct {
	// 请求系统信息
	Info *TopInfo `json:"info,omitempty" xml:"info,omitempty"`
	// 结果集
	SuggestWordPackageVOTopBulkData *TopBulkData `json:"suggest_word_package_v_o_top_bulk_data,omitempty" xml:"suggest_word_package_v_o_top_bulk_data,omitempty"`
}

TaobaoUniversalbpWordpackageSuggestkrlistTopResult 结构体

type TimeSpanQueryResVo added in v1.2.9

type TimeSpanQueryResVo struct {
	// 折扣时间段
	Time string `json:"time,omitempty" xml:"time,omitempty"`
	// 折扣
	Discount int64 `json:"discount,omitempty" xml:"discount,omitempty"`
}

TimeSpanQueryResVo 结构体

type TopAccountBalanceVo added in v1.2.9

type TopAccountBalanceVo struct {
	// 账户实时现金余额
	RtCashBalance string `json:"rt_cash_balance,omitempty" xml:"rt_cash_balance,omitempty"`
}

TopAccountBalanceVo 结构体

type TopAccountReportQueryVo added in v1.2.9

type TopAccountReportQueryVo struct {
	// 聚合维度可以传空的list,date-时间,scene-营销场景
	QueryDomains []string `json:"query_domains,omitempty" xml:"query_domains>string,omitempty"`
	// 查询指标必填,与bp页面一致,具体可用值,看返回字段中reportIndex字段, 下划线改为驼峰形式
	QueryFieldInList []string `json:"query_field_in_list,omitempty" xml:"query_field_in_list>string,omitempty"`
	// 营销场景code,具体code见 account.get.can.use.bizcode 此api返回
	BizCodeInList []string `json:"biz_code_in_list,omitempty" xml:"biz_code_in_list>string,omitempty"`
	// 汇总类型 sum-汇总,hour-分时,day-分天,week-分周,month-分月
	SplitType string `json:"split_type,omitempty" xml:"split_type,omitempty"`
	// 归因口径,zhai-末次点击归因, mta-mta归因
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 归因周期,1、3、7、15、30
	EffectEqual int64 `json:"effect_equal,omitempty" xml:"effect_equal,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 是否分页
	ByPage bool `json:"by_page,omitempty" xml:"by_page,omitempty"`
}

TopAccountReportQueryVo 结构体

type TopAccountStatusVo added in v1.2.9

type TopAccountStatusVo struct {
	// 是否是新bp用户
	IsUniversalBpUser bool `json:"is_universal_bp_user,omitempty" xml:"is_universal_bp_user,omitempty"`
}

TopAccountStatusVo 结构体

type TopAdgroupReportQueryVo added in v1.2.9

type TopAdgroupReportQueryVo struct {
	// 聚合维度,adgroup-单元,date-时间,campaign-营销场景
	QueryDomains []string `json:"query_domains,omitempty" xml:"query_domains>string,omitempty"`
	// 查询指标必填,与bp页面一致,具体可用值,看返回字段中reportIndex字段,下划线改为驼峰形式
	QueryFieldInList []string `json:"query_field_in_list,omitempty" xml:"query_field_in_list>string,omitempty"`
	// 省份筛选
	ProvinceIdInList []int64 `json:"province_id_in_list,omitempty" xml:"province_id_in_list>int64,omitempty"`
	// 优化目标筛选
	StrategyOptimizeTargetInList []int64 `json:"strategy_optimize_target_in_list,omitempty" xml:"strategy_optimize_target_in_list>int64,omitempty"`
	// 计划id筛选
	StrategyCampaignIdInList []int64 `json:"strategy_campaign_id_in_list,omitempty" xml:"strategy_campaign_id_in_list>int64,omitempty"`
	// 单元id筛选
	StrategyAdgroupIdInList []int64 `json:"strategy_adgroup_id_in_list,omitempty" xml:"strategy_adgroup_id_in_list>int64,omitempty"`
	// 流量来源资源包id筛选
	AdzonePkgIdInList []int64 `json:"adzone_pkg_id_in_list,omitempty" xml:"adzone_pkg_id_in_list>int64,omitempty"`
	// 汇总类型 sum-汇总,hour-分时,day-分天,week-分周,month-分月
	SplitType string `json:"split_type,omitempty" xml:"split_type,omitempty"`
	// 归因口径,zhai-末次点击归因, mta-mta归因
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 计划id和名称筛选项
	StrategyCampaignIdOrName string `json:"strategy_campaign_id_or_name,omitempty" xml:"strategy_campaign_id_or_name,omitempty"`
	// 宝贝id或者名称筛选
	ItemIdOrName string `json:"item_id_or_name,omitempty" xml:"item_id_or_name,omitempty"`
	// 单元id或者名称筛选
	StrategyAdgroupIdOrName string `json:"strategy_adgroup_id_or_name,omitempty" xml:"strategy_adgroup_id_or_name,omitempty"`
	// 归因周期,1、3、7、15、30
	EffectEqual int64 `json:"effect_equal,omitempty" xml:"effect_equal,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 是否分页
	ByPage bool `json:"by_page,omitempty" xml:"by_page,omitempty"`
}

TopAdgroupReportQueryVo 结构体

type TopAreaReportQueryVo added in v1.2.9

type TopAreaReportQueryVo struct {
	// 聚合维度,province-省份,date-时间
	QueryDomains []string `json:"query_domains,omitempty" xml:"query_domains>string,omitempty"`
	// 查询指标必填,与bp页面一致,具体可用值,看返回字段中reportIndex字段,下划线改为驼峰形式
	QueryFieldInList []string `json:"query_field_in_list,omitempty" xml:"query_field_in_list>string,omitempty"`
	// 营销场景code,具体code见 account.get.can.use.bizcode 此api返回
	BizCodeInList []string `json:"biz_code_in_list,omitempty" xml:"biz_code_in_list>string,omitempty"`
	// 省份筛选
	ProvinceIdInList []int64 `json:"province_id_in_list,omitempty" xml:"province_id_in_list>int64,omitempty"`
	// 优化目标筛选
	StrategyOptimizeTargetInList []int64 `json:"strategy_optimize_target_in_list,omitempty" xml:"strategy_optimize_target_in_list>int64,omitempty"`
	// 计划id筛选
	StrategyCampaignIdInList []int64 `json:"strategy_campaign_id_in_list,omitempty" xml:"strategy_campaign_id_in_list>int64,omitempty"`
	// 流量来源,资源包id筛选
	AdzonePkgIdInList []int64 `json:"adzone_pkg_id_in_list,omitempty" xml:"adzone_pkg_id_in_list>int64,omitempty"`
	// 汇总类型 sum-汇总,day-分天,week-分周,month-分月
	SplitType string `json:"split_type,omitempty" xml:"split_type,omitempty"`
	// 归因口径,zhai-末次点击归因, mta-mta归因
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 归因周期,1、3、7、15、30
	EffectEqual int64 `json:"effect_equal,omitempty" xml:"effect_equal,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 是否分页,true-是,false-否
	ByPage bool `json:"by_page,omitempty" xml:"by_page,omitempty"`
}

TopAreaReportQueryVo 结构体

type TopBidWordReportQueryVo added in v1.2.9

type TopBidWordReportQueryVo struct {
	// 聚合维度
	QueryDomains []string `json:"query_domains,omitempty" xml:"query_domains>string,omitempty"`
	// 查询指标必填,与bp页面一致,具体可用值,看返回字段中reportIndex字段,下划线改为驼峰形式
	QueryFieldInList []string `json:"query_field_in_list,omitempty" xml:"query_field_in_list>string,omitempty"`
	// 计划id筛选
	StrategyCampaignIdInList []int64 `json:"strategy_campaign_id_in_list,omitempty" xml:"strategy_campaign_id_in_list>int64,omitempty"`
	// 流量来源,资源包id筛选
	AdzonePkgIdInList []int64 `json:"adzone_pkg_id_in_list,omitempty" xml:"adzone_pkg_id_in_list>int64,omitempty"`
	// 单元id筛选
	StrategyAdgroupIdInList []int64 `json:"strategy_adgroup_id_in_list,omitempty" xml:"strategy_adgroup_id_in_list>int64,omitempty"`
	// 词包还是词,word表示词,wordPkg表示词包,不传则不过滤
	BidWordTypeInList []string `json:"bid_word_type_in_list,omitempty" xml:"bid_word_type_in_list>string,omitempty"`
	// 汇总类型 sum-汇总,day-分天,week-分周,month-分月
	SplitType string `json:"split_type,omitempty" xml:"split_type,omitempty"`
	// 归因口径,zhai-末次点击归因, mta-mta归因
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 计划id和名称筛选项
	StrategyCampaignIdOrName string `json:"strategy_campaign_id_or_name,omitempty" xml:"strategy_campaign_id_or_name,omitempty"`
	// 单元id或者名称筛选
	StrategyAdgroupIdOrName string `json:"strategy_adgroup_id_or_name,omitempty" xml:"strategy_adgroup_id_or_name,omitempty"`
	// 词模糊筛选
	StrategyBidwordNameLike string `json:"strategy_bidword_name_like,omitempty" xml:"strategy_bidword_name_like,omitempty"`
	// 词包模糊筛选
	StrategyBidwordPkgNameLike string `json:"strategy_bidword_pkg_name_like,omitempty" xml:"strategy_bidword_pkg_name_like,omitempty"`
	// 归因周期,1、3、7、15、30
	EffectEqual int64 `json:"effect_equal,omitempty" xml:"effect_equal,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 是否分页
	ByPage bool `json:"by_page,omitempty" xml:"by_page,omitempty"`
}

TopBidWordReportQueryVo 结构体

type TopBulkData added in v1.2.9

type TopBulkData struct {
	// 批量结果集
	TopMarketSceneVOList []TopMarketSceneVo `json:"top_market_scene_v_o_list,omitempty" xml:"top_market_scene_v_o_list>top_market_scene_vo,omitempty"`
	// 批量结果集
	AdgroupVOList []AdgroupVo `json:"adgroup_v_o_list,omitempty" xml:"adgroup_v_o_list>adgroup_vo,omitempty"`
	// 批量结果集
	AdzoneConfigVOList []AdzoneConfigVo `json:"adzone_config_v_o_list,omitempty" xml:"adzone_config_v_o_list>adzone_config_vo,omitempty"`
	// 批量结果集
	AdzoneRefVOList []AdzoneRefVo `json:"adzone_ref_v_o_list,omitempty" xml:"adzone_ref_v_o_list>adzone_ref_vo,omitempty"`
	// 批量结果集
	WordVOList []WordVo `json:"word_v_o_list,omitempty" xml:"word_v_o_list>word_vo,omitempty"`
	// 批量结果集
	BidwordSuggestItemVOList []BidwordSuggestItemVo `json:"bidword_suggest_item_v_o_list,omitempty" xml:"bidword_suggest_item_v_o_list>bidword_suggest_item_vo,omitempty"`
	// 批量结果集
	SuggestBidwordVOList []SuggestBidwordVo `json:"suggest_bidword_v_o_list,omitempty" xml:"suggest_bidword_v_o_list>suggest_bidword_vo,omitempty"`
	// 批量结果集
	CampaignVOList []CampaignVo `json:"campaign_v_o_list,omitempty" xml:"campaign_v_o_list>campaign_vo,omitempty"`
	// 批量结果集
	CampaignGroupVOList []CampaignGroupVo `json:"campaign_group_v_o_list,omitempty" xml:"campaign_group_v_o_list>campaign_group_vo,omitempty"`
	// 批量结果集
	CreativeRefVOList []CreativeRefVo `json:"creative_ref_v_o_list,omitempty" xml:"creative_ref_v_o_list>creative_ref_vo,omitempty"`
	// 批量结果集
	CreativeVOList []CreativeVo `json:"creative_v_o_list,omitempty" xml:"creative_v_o_list>creative_vo,omitempty"`
	// 批量结果集
	CrowdBindResultVOList []CrowdBindResultVo `json:"crowd_bind_result_v_o_list,omitempty" xml:"crowd_bind_result_v_o_list>crowd_bind_result_vo,omitempty"`
	// 批量结果集
	CrowdRefVOList []CrowdRefVo `json:"crowd_ref_v_o_list,omitempty" xml:"crowd_ref_v_o_list>crowd_ref_vo,omitempty"`
	// 批量结果集
	LabelConfigVOList []LabelConfigVo `json:"label_config_v_o_list,omitempty" xml:"label_config_v_o_list>label_config_vo,omitempty"`
	// 批量结果集
	MaterialAccessAllowVOList []MaterialAccessAllowVo `json:"material_access_allow_v_o_list,omitempty" xml:"material_access_allow_v_o_list>material_access_allow_vo,omitempty"`
	// 批量结果集
	ItemVOList []ItemVo `json:"item_v_o_list,omitempty" xml:"item_v_o_list>item_vo,omitempty"`
	// 批量结果集
	BrandInfoVOList []BrandInfoVo `json:"brand_info_v_o_list,omitempty" xml:"brand_info_v_o_list>brand_info_vo,omitempty"`
	// 批量结果集
	TopReportVOList []TopReportVo `json:"top_report_v_o_list,omitempty" xml:"top_report_v_o_list>top_report_vo,omitempty"`
	// 批量结果集
	ShopCategoryVOList []ShopCategoryVo `json:"shop_category_v_o_list,omitempty" xml:"shop_category_v_o_list>shop_category_vo,omitempty"`
	// 批量结果集
	StdCategoryVOList []StdCategoryVo `json:"std_category_v_o_list,omitempty" xml:"std_category_v_o_list>std_category_vo,omitempty"`
	// 批量结果集
	WordPackageVOList []WordPackageVo `json:"word_package_v_o_list,omitempty" xml:"word_package_v_o_list>word_package_vo,omitempty"`
	// 批量结果集
	WordPackageSuggestItemVOList []WordPackageSuggestItemVo `` /* 131-byte string literal not displayed */
	// 批量结果集
	SuggestWordPackageVOList []SuggestWordPackageVo `json:"suggest_word_package_v_o_list,omitempty" xml:"suggest_word_package_v_o_list>suggest_word_package_vo,omitempty"`
	// 数量
	Count int64 `json:"count,omitempty" xml:"count,omitempty"`
}

TopBulkData 结构体

type TopCampaignReportQueryVo added in v1.2.9

type TopCampaignReportQueryVo struct {
	// 聚合维度,date-时间,campaign-计划
	QueryDomains []string `json:"query_domains,omitempty" xml:"query_domains>string,omitempty"`
	// 查询指标必填,与bp页面一致,具体可用值,看返回字段中reportIndex字段,下划线改为驼峰形式
	QueryFieldInList []string `json:"query_field_in_list,omitempty" xml:"query_field_in_list>string,omitempty"`
	// 营销场景code,具体code见 account.get.can.use.bizcode 此api返回
	BizCodeInList []string `json:"biz_code_in_list,omitempty" xml:"biz_code_in_list>string,omitempty"`
	// 优化目标筛选
	StrategyOptimizeTargetInList []int64 `json:"strategy_optimize_target_in_list,omitempty" xml:"strategy_optimize_target_in_list>int64,omitempty"`
	// 计划id筛选
	StrategyCampaignIdInList []int64 `json:"strategy_campaign_id_in_list,omitempty" xml:"strategy_campaign_id_in_list>int64,omitempty"`
	// 省份筛选
	ProvinceIdInList []int64 `json:"province_id_in_list,omitempty" xml:"province_id_in_list>int64,omitempty"`
	// 汇总类型 sum-汇总,hour-分时,day-分天,week-分周,month-分月
	SplitType string `json:"split_type,omitempty" xml:"split_type,omitempty"`
	// 归因口径,zhai-末次点击归因, mta-mta归因
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 计划id和名称筛选项
	StrategyCampaignIdOrName string `json:"strategy_campaign_id_or_name,omitempty" xml:"strategy_campaign_id_or_name,omitempty"`
	// 宝贝id或者名称筛选
	ItemIdOrName string `json:"item_id_or_name,omitempty" xml:"item_id_or_name,omitempty"`
	// 归因周期,1、3、7、15、30
	EffectEqual int64 `json:"effect_equal,omitempty" xml:"effect_equal,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 是否分页
	ByPage bool `json:"by_page,omitempty" xml:"by_page,omitempty"`
}

TopCampaignReportQueryVo 结构体

type TopCampaignVo added in v1.2.9

type TopCampaignVo struct {
	// 计划实体
	Campaign *CampaignVo `json:"campaign,omitempty" xml:"campaign,omitempty"`
}

TopCampaignVo 结构体

type TopCreativeReportQueryVo added in v1.2.9

type TopCreativeReportQueryVo struct {
	// 聚合维度,creative-创意,date-时间
	QueryDomains []string `json:"query_domains,omitempty" xml:"query_domains>string,omitempty"`
	// 查询指标必填,与bp页面一致,具体可用值,看返回字段中reportIndex字段,下划线改为驼峰形式
	QueryFieldInList []string `json:"query_field_in_list,omitempty" xml:"query_field_in_list>string,omitempty"`
	// 营销场景code,具体code见 account.get.can.use.bizcode 此api返回
	BizCodeInList []string `json:"biz_code_in_list,omitempty" xml:"biz_code_in_list>string,omitempty"`
	// 省份筛选
	ProvinceIdInList []int64 `json:"province_id_in_list,omitempty" xml:"province_id_in_list>int64,omitempty"`
	// 优化目标筛选
	StrategyOptimizeTargetInList []int64 `json:"strategy_optimize_target_in_list,omitempty" xml:"strategy_optimize_target_in_list>int64,omitempty"`
	// 计划id筛选
	StrategyCampaignIdInList []int64 `json:"strategy_campaign_id_in_list,omitempty" xml:"strategy_campaign_id_in_list>int64,omitempty"`
	// 汇总类型 sum-汇总,day-分天,week-分周,month-分月
	SplitType string `json:"split_type,omitempty" xml:"split_type,omitempty"`
	// 归因口径,zhai-末次点击归因, mta-mta归因
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 仅创意报表有效,创意筛选, 创意id或者名称
	StrategyCreativeIdOrName string `json:"strategy_creative_id_or_name,omitempty" xml:"strategy_creative_id_or_name,omitempty"`
	// 归因周期,1、3、7、15、30
	EffectEqual int64 `json:"effect_equal,omitempty" xml:"effect_equal,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 是否分页
	ByPage bool `json:"by_page,omitempty" xml:"by_page,omitempty"`
}

TopCreativeReportQueryVo 结构体

type TopCrowdReportQueryVo added in v1.2.9

type TopCrowdReportQueryVo struct {
	// 聚合维度,crowd-人群,date-时间,campaign-计划
	QueryDomains []string `json:"query_domains,omitempty" xml:"query_domains>string,omitempty"`
	// 查询指标必填,与bp页面一致,具体可用值,看返回字段中reportIndex字段,下划线改为驼峰形式
	QueryFieldInList []string `json:"query_field_in_list,omitempty" xml:"query_field_in_list>string,omitempty"`
	// 营销场景code,具体code见 account.get.can.use.bizcode 此api返回
	BizCodeInList []string `json:"biz_code_in_list,omitempty" xml:"biz_code_in_list>string,omitempty"`
	// 省份筛选
	ProvinceIdInList []int64 `json:"province_id_in_list,omitempty" xml:"province_id_in_list>int64,omitempty"`
	// 优化目标筛选
	StrategyOptimizeTargetInList []int64 `json:"strategy_optimize_target_in_list,omitempty" xml:"strategy_optimize_target_in_list>int64,omitempty"`
	// 计划id筛选
	StrategyCampaignIdInList []int64 `json:"strategy_campaign_id_in_list,omitempty" xml:"strategy_campaign_id_in_list>int64,omitempty"`
	// 汇总类型 sum-汇总,day-分天,week-分周,month-分月
	SplitType string `json:"split_type,omitempty" xml:"split_type,omitempty"`
	// 归因口径,zhai-末次点击归因, mta-mta归因
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 计划id和名称筛选项
	StrategyCampaignIdOrName string `json:"strategy_campaign_id_or_name,omitempty" xml:"strategy_campaign_id_or_name,omitempty"`
	// 人群名称模糊过滤
	StrategyTargetTitleLike string `json:"strategy_target_title_like,omitempty" xml:"strategy_target_title_like,omitempty"`
	// 归因周期,1、3、7、15、30
	EffectEqual int64 `json:"effect_equal,omitempty" xml:"effect_equal,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 是否分页
	ByPage bool `json:"by_page,omitempty" xml:"by_page,omitempty"`
}

TopCrowdReportQueryVo 结构体

type TopInfo added in v1.2.9

type TopInfo struct {
	// 错误信息
	Message string `json:"message,omitempty" xml:"message,omitempty"`
	// 错误编码
	ErrorCode string `json:"error_code,omitempty" xml:"error_code,omitempty"`
	// 是否成功
	Ok bool `json:"ok,omitempty" xml:"ok,omitempty"`
}

TopInfo 结构体

type TopItemPromotionReportQueryVo added in v1.2.9

type TopItemPromotionReportQueryVo struct {
	// 聚合维度,promotion-宝贝信息,date-时间,campaign-计划
	QueryDomains []string `json:"query_domains,omitempty" xml:"query_domains>string,omitempty"`
	// 查询指标必填,与bp页面一致,具体可用值,看返回字段中reportIndex字段,下划线改为驼峰形式
	QueryFieldInList []string `json:"query_field_in_list,omitempty" xml:"query_field_in_list>string,omitempty"`
	// 营销场景code,具体code见 account.get.can.use.bizcode 此api返回
	BizCodeInList []string `json:"biz_code_in_list,omitempty" xml:"biz_code_in_list>string,omitempty"`
	// 省份筛选
	ProvinceIdInList []int64 `json:"province_id_in_list,omitempty" xml:"province_id_in_list>int64,omitempty"`
	// 宝贝id筛选
	ItemIds []int64 `json:"item_ids,omitempty" xml:"item_ids>int64,omitempty"`
	// 优化目标筛选
	StrategyOptimizeTargetInList []int64 `json:"strategy_optimize_target_in_list,omitempty" xml:"strategy_optimize_target_in_list>int64,omitempty"`
	// 计划id筛选
	StrategyCampaignIdInList []int64 `json:"strategy_campaign_id_in_list,omitempty" xml:"strategy_campaign_id_in_list>int64,omitempty"`
	// 汇总类型 sum-汇总,day-分天,week-分周,month-分月
	SplitType string `json:"split_type,omitempty" xml:"split_type,omitempty"`
	// 归因口径,zhai-末次点击归因, mta-mta归因
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 宝贝id或者名称筛选
	ItemIdOrName string `json:"item_id_or_name,omitempty" xml:"item_id_or_name,omitempty"`
	// 归因周期,1、3、7、15、30
	EffectEqual int64 `json:"effect_equal,omitempty" xml:"effect_equal,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 是否分页
	ByPage bool `json:"by_page,omitempty" xml:"by_page,omitempty"`
}

TopItemPromotionReportQueryVo 结构体

type TopMarketSceneVo added in v1.2.9

type TopMarketSceneVo struct {
	// 场景code
	BizCode string `json:"biz_code,omitempty" xml:"biz_code,omitempty"`
	// 场景名称
	MarketName string `json:"market_name,omitempty" xml:"market_name,omitempty"`
	// code 对应的 appid
	AppId int64 `json:"app_id,omitempty" xml:"app_id,omitempty"`
}

TopMarketSceneVo 结构体

type TopOtherPromotionReportQueryVo added in v1.2.9

type TopOtherPromotionReportQueryVo struct {
	// 聚合维度,promotion-主体,date-时间
	QueryDomains []string `json:"query_domains,omitempty" xml:"query_domains>string,omitempty"`
	// 查询指标必填,与bp页面一致,具体可用值,看返回字段中reportIndex字段,下划线改为驼峰形式
	QueryFieldInList []string `json:"query_field_in_list,omitempty" xml:"query_field_in_list>string,omitempty"`
	// 营销场景code,具体code见 account.get.can.use.bizcode 此api返回
	BizCodeInList []string `json:"biz_code_in_list,omitempty" xml:"biz_code_in_list>string,omitempty"`
	// 省份筛选
	ProvinceIdInList []int64 `json:"province_id_in_list,omitempty" xml:"province_id_in_list>int64,omitempty"`
	// 主体类型筛选,ITEM_PRIVATE_MINIL-橱窗,SHOP-店铺,USER_DEFINE_URL-自定义
	SubPromotionTypes []string `json:"sub_promotion_types,omitempty" xml:"sub_promotion_types>string,omitempty"`
	// 优化目标筛选
	StrategyOptimizeTargetInList []int64 `json:"strategy_optimize_target_in_list,omitempty" xml:"strategy_optimize_target_in_list>int64,omitempty"`
	// 计划id筛选
	StrategyCampaignIdInList []int64 `json:"strategy_campaign_id_in_list,omitempty" xml:"strategy_campaign_id_in_list>int64,omitempty"`
	// 单元id筛选
	StrategyAdgroupIdInList []int64 `json:"strategy_adgroup_id_in_list,omitempty" xml:"strategy_adgroup_id_in_list>int64,omitempty"`
	// 汇总类型 sum-汇总,day-分天,week-分周,month-分月
	SplitType string `json:"split_type,omitempty" xml:"split_type,omitempty"`
	// 归因口径,zhai-末次点击归因, mta-mta归因
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 计划id和名称筛选项
	StrategyCampaignIdOrName string `json:"strategy_campaign_id_or_name,omitempty" xml:"strategy_campaign_id_or_name,omitempty"`
	// 归因周期,1、3、7、15、30
	EffectEqual int64 `json:"effect_equal,omitempty" xml:"effect_equal,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 是否分页
	ByPage bool `json:"by_page,omitempty" xml:"by_page,omitempty"`
}

TopOtherPromotionReportQueryVo 结构体

type TopRealTimeReportQueryVo added in v1.2.9

type TopRealTimeReportQueryVo struct {
	// 聚合维度,campaign-计划, date-时间
	QueryDomains []string `json:"query_domains,omitempty" xml:"query_domains>string,omitempty"`
	// 查询指标必填,与bp页面一致,具体可用值,看返回字段中reportIndex字段,下划线改为驼峰形式
	QueryFieldInList []string `json:"query_field_in_list,omitempty" xml:"query_field_in_list>string,omitempty"`
	// 营销场景code,具体code见 account.get.can.use.bizcode 此api返回
	BizCodeInList []string `json:"biz_code_in_list,omitempty" xml:"biz_code_in_list>string,omitempty"`
	// 计划id筛选
	StrategyCampaignIdInList []int64 `json:"strategy_campaign_id_in_list,omitempty" xml:"strategy_campaign_id_in_list>int64,omitempty"`
	// 汇总类型,hour-分时
	SplitType string `json:"split_type,omitempty" xml:"split_type,omitempty"`
	// 归因口径,zhai-末次点击归因, mta-mta归因
	UnifyType string `json:"unify_type,omitempty" xml:"unify_type,omitempty"`
	// 开始时间,当天
	StartTime string `json:"start_time,omitempty" xml:"start_time,omitempty"`
	// 结束时间,当天
	EndTime string `json:"end_time,omitempty" xml:"end_time,omitempty"`
	// 归因周期,1、3、7、15、30
	EffectEqual int64 `json:"effect_equal,omitempty" xml:"effect_equal,omitempty"`
	// 偏移量
	Offset int64 `json:"offset,omitempty" xml:"offset,omitempty"`
	// 页面大小
	PageSize int64 `json:"page_size,omitempty" xml:"page_size,omitempty"`
	// 是否分页
	ByPage bool `json:"by_page,omitempty" xml:"by_page,omitempty"`
}

TopRealTimeReportQueryVo 结构体

type TopReportDownloadVo added in v1.2.9

type TopReportDownloadVo struct {
	// 任务id
	TaskId int64 `json:"task_id,omitempty" xml:"task_id,omitempty"`
}

TopReportDownloadVo 结构体

type TopReportIndexVo added in v1.2.9

type TopReportIndexVo struct {
	// 总花费
	TotalCharge string `json:"total_charge,omitempty" xml:"total_charge,omitempty"`
	// 消费者运营花费
	CrowdSceneCharge string `json:"crowd_scene_charge,omitempty" xml:"crowd_scene_charge,omitempty"`
	// 货品运营花费
	ItemSceneCharge string `json:"item_scene_charge,omitempty" xml:"item_scene_charge,omitempty"`
	// 活动运营花费
	ActivitySceneCharge string `json:"activity_scene_charge,omitempty" xml:"activity_scene_charge,omitempty"`
	// 人群场景花费
	DisplayCharge string `json:"display_charge,omitempty" xml:"display_charge,omitempty"`
	// 关键词花费
	SearchCharge string `json:"search_charge,omitempty" xml:"search_charge,omitempty"`
	// 内容场景花费
	ContentSceneCharge string `json:"content_scene_charge,omitempty" xml:"content_scene_charge,omitempty"`
	// 店铺运营场景花费
	ShopSceneCharge string `json:"shop_scene_charge,omitempty" xml:"shop_scene_charge,omitempty"`
	// 展现量
	AdPv string `json:"ad_pv,omitempty" xml:"ad_pv,omitempty"`
	// 点击量
	Click string `json:"click,omitempty" xml:"click,omitempty"`
	// 花费
	Charge string `json:"charge,omitempty" xml:"charge,omitempty"`
	// 点击率
	Ctr string `json:"ctr,omitempty" xml:"ctr,omitempty"`
	// 平均点击花费
	Ecpc string `json:"ecpc,omitempty" xml:"ecpc,omitempty"`
	// 千次展现花费
	Ecpm string `json:"ecpm,omitempty" xml:"ecpm,omitempty"`
	// 总预售成交金额
	PrepayInshopAmt string `json:"prepay_inshop_amt,omitempty" xml:"prepay_inshop_amt,omitempty"`
	// 总预售成交笔数
	PrepayInshopNum string `json:"prepay_inshop_num,omitempty" xml:"prepay_inshop_num,omitempty"`
	// 直接预售成交金额
	PrepayDirAmt string `json:"prepay_dir_amt,omitempty" xml:"prepay_dir_amt,omitempty"`
	// 直接预售成交笔数
	PrepayDirNum string `json:"prepay_dir_num,omitempty" xml:"prepay_dir_num,omitempty"`
	// 间接预售成交金额
	PrepayIndirAmt string `json:"prepay_indir_amt,omitempty" xml:"prepay_indir_amt,omitempty"`
	// 间接预售成交笔数
	PrepayIndirNum string `json:"prepay_indir_num,omitempty" xml:"prepay_indir_num,omitempty"`
	// 直接成交金额
	AlipayDirAmt string `json:"alipay_dir_amt,omitempty" xml:"alipay_dir_amt,omitempty"`
	// 间接成交金额
	AlipayIndirAmt string `json:"alipay_indir_amt,omitempty" xml:"alipay_indir_amt,omitempty"`
	// 总成交金额
	AlipayInshopAmt string `json:"alipay_inshop_amt,omitempty" xml:"alipay_inshop_amt,omitempty"`
	// 总成交笔数
	AlipayInshopNum string `json:"alipay_inshop_num,omitempty" xml:"alipay_inshop_num,omitempty"`
	// 直接成交笔数
	AlipayDirNum string `json:"alipay_dir_num,omitempty" xml:"alipay_dir_num,omitempty"`
	// 间接成交笔数
	AlipayIndirNum string `json:"alipay_indir_num,omitempty" xml:"alipay_indir_num,omitempty"`
	// 成交转化率
	Cvr string `json:"cvr,omitempty" xml:"cvr,omitempty"`
	// 投入产出比
	Roi string `json:"roi,omitempty" xml:"roi,omitempty"`
	// 总成交成本
	AlipayInshopCost string `json:"alipay_inshop_cost,omitempty" xml:"alipay_inshop_cost,omitempty"`
	// 总购物车数
	CartInshopNum string `json:"cart_inshop_num,omitempty" xml:"cart_inshop_num,omitempty"`
	// 直接购物车数
	CartDirNum string `json:"cart_dir_num,omitempty" xml:"cart_dir_num,omitempty"`
	// 间接购物车数
	CartIndirNum string `json:"cart_indir_num,omitempty" xml:"cart_indir_num,omitempty"`
	// 加购率
	CartRate string `json:"cart_rate,omitempty" xml:"cart_rate,omitempty"`
	// 收藏宝贝数
	ItemColInshopNum string `json:"item_col_inshop_num,omitempty" xml:"item_col_inshop_num,omitempty"`
	// 收藏店铺数
	ShopColDirNum string `json:"shop_col_dir_num,omitempty" xml:"shop_col_dir_num,omitempty"`
	// 店铺收藏成本
	ShopColInshopCost string `json:"shop_col_inshop_cost,omitempty" xml:"shop_col_inshop_cost,omitempty"`
	// 总收藏加购数
	ColCartNum string `json:"col_cart_num,omitempty" xml:"col_cart_num,omitempty"`
	// 总收藏加购成本
	ColCartCost string `json:"col_cart_cost,omitempty" xml:"col_cart_cost,omitempty"`
	// 宝贝收藏加购数
	ItemColCart string `json:"item_col_cart,omitempty" xml:"item_col_cart,omitempty"`
	// 宝贝收藏加购成本
	ItemColCartCost string `json:"item_col_cart_cost,omitempty" xml:"item_col_cart_cost,omitempty"`
	// 总收藏数
	ColNum string `json:"col_num,omitempty" xml:"col_num,omitempty"`
	// 宝贝收藏成本
	ItemColInshopCost string `json:"item_col_inshop_cost,omitempty" xml:"item_col_inshop_cost,omitempty"`
	// 宝贝收藏率
	ItemColInshopRate string `json:"item_col_inshop_rate,omitempty" xml:"item_col_inshop_rate,omitempty"`
	// 加购成本
	CartCost string `json:"cart_cost,omitempty" xml:"cart_cost,omitempty"`
	// 拍下订单笔数
	GmvInshopNum string `json:"gmv_inshop_num,omitempty" xml:"gmv_inshop_num,omitempty"`
	// 拍下订单金额
	GmvInshopAmt string `json:"gmv_inshop_amt,omitempty" xml:"gmv_inshop_amt,omitempty"`
	// 直接收藏宝贝数
	ItemColDirNum string `json:"item_col_dir_num,omitempty" xml:"item_col_dir_num,omitempty"`
	// 间接收藏宝贝数
	ItemColIndirNum string `json:"item_col_indir_num,omitempty" xml:"item_col_indir_num,omitempty"`
	// 优惠券领取量
	CouponShopNum string `json:"coupon_shop_num,omitempty" xml:"coupon_shop_num,omitempty"`
	// 购物金充值笔数
	ShoppingNum string `json:"shopping_num,omitempty" xml:"shopping_num,omitempty"`
	// 购物金充值金额
	ShoppingAmt string `json:"shopping_amt,omitempty" xml:"shopping_amt,omitempty"`
	// 旺旺咨询量
	WwNum string `json:"ww_num,omitempty" xml:"ww_num,omitempty"`
	// 引导访问量
	InshopPv string `json:"inshop_pv,omitempty" xml:"inshop_pv,omitempty"`
	// 引导访问人数
	InshopUv string `json:"inshop_uv,omitempty" xml:"inshop_uv,omitempty"`
	// 引导访问潜客数
	InshopPotentialUv string `json:"inshop_potential_uv,omitempty" xml:"inshop_potential_uv,omitempty"`
	// 引导访问潜客占比
	InshopPotentialUvRate string `json:"inshop_potential_uv_rate,omitempty" xml:"inshop_potential_uv_rate,omitempty"`
	// 入会率
	RhRate string `json:"rh_rate,omitempty" xml:"rh_rate,omitempty"`
	// 入会量
	RhNum string `json:"rh_num,omitempty" xml:"rh_num,omitempty"`
	// 引导访问率
	InshopPvRate string `json:"inshop_pv_rate,omitempty" xml:"inshop_pv_rate,omitempty"`
	// 深度访问量
	DeepInshopPv string `json:"deep_inshop_pv,omitempty" xml:"deep_inshop_pv,omitempty"`
	// 平均访问页面数
	AvgAccessPageNum string `json:"avg_access_page_num,omitempty" xml:"avg_access_page_num,omitempty"`
	// 成交新客数
	NewAlipayInshopUv string `json:"new_alipay_inshop_uv,omitempty" xml:"new_alipay_inshop_uv,omitempty"`
	// 成交新客占比
	NewAlipayInshopUvRate string `json:"new_alipay_inshop_uv_rate,omitempty" xml:"new_alipay_inshop_uv_rate,omitempty"`
	// 会员首购人数
	HySgUv string `json:"hy_sg_uv,omitempty" xml:"hy_sg_uv,omitempty"`
	// 会员成交金额
	HyPayAmt string `json:"hy_pay_amt,omitempty" xml:"hy_pay_amt,omitempty"`
	// 会员成交笔数
	HyPayNum string `json:"hy_pay_num,omitempty" xml:"hy_pay_num,omitempty"`
	// 自然流量转化金额
	NaturalPayAmt string `json:"natural_pay_amt,omitempty" xml:"natural_pay_amt,omitempty"`
	// 自然流量曝光量
	OrgNaturalPv string `json:"org_natural_pv,omitempty" xml:"org_natural_pv,omitempty"`
	// 成交人数
	AlipayInshopUv string `json:"alipay_inshop_uv,omitempty" xml:"alipay_inshop_uv,omitempty"`
	// 人均成交笔数
	AlipayInshopNumAvg string `json:"alipay_inshop_num_avg,omitempty" xml:"alipay_inshop_num_avg,omitempty"`
	// 人均成交金额
	AlipayInshopAmtAvg string `json:"alipay_inshop_amt_avg,omitempty" xml:"alipay_inshop_amt_avg,omitempty"`
}

TopReportIndexVo 结构体

type TopReportVo added in v1.2.9

type TopReportVo struct {
	// 场景code
	BizCode string `json:"biz_code,omitempty" xml:"biz_code,omitempty"`
	// 场景名称
	Scene1Name string `json:"scene1_name,omitempty" xml:"scene1_name,omitempty"`
	// 日期
	Thedate string `json:"thedate,omitempty" xml:"thedate,omitempty"`
	// 计划id
	CampaignId string `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 计划名称
	CampaignName string `json:"campaign_name,omitempty" xml:"campaign_name,omitempty"`
	// 单元id
	AdgroupId string `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 单元名称
	AdgroupName string `json:"adgroup_name,omitempty" xml:"adgroup_name,omitempty"`
	// 关键词id
	BidwordId string `json:"bidword_id,omitempty" xml:"bidword_id,omitempty"`
	// 关键词/词包名称
	OriginalWord string `json:"original_word,omitempty" xml:"original_word,omitempty"`
	// 关键词包id
	BidwordPkgId string `json:"bidword_pkg_id,omitempty" xml:"bidword_pkg_id,omitempty"`
	// 词的类型
	BidWordType string `json:"bid_word_type,omitempty" xml:"bid_word_type,omitempty"`
	// 推广宝贝id
	PromotionId string `json:"promotion_id,omitempty" xml:"promotion_id,omitempty"`
	// 推广宝贝名称
	PromotionName string `json:"promotion_name,omitempty" xml:"promotion_name,omitempty"`
	// 推广宝贝图片地址
	ImgUrl string `json:"img_url,omitempty" xml:"img_url,omitempty"`
	// 推广宝贝跳转地址
	LinkUrl string `json:"link_url,omitempty" xml:"link_url,omitempty"`
	// 人群名称
	CrowdName string `json:"crowd_name,omitempty" xml:"crowd_name,omitempty"`
	// 创意id
	CreativeId string `json:"creative_id,omitempty" xml:"creative_id,omitempty"`
	// 创意名称
	CreativeName string `json:"creative_name,omitempty" xml:"creative_name,omitempty"`
	// 创意图片地址
	CreativeImagePath string `json:"creative_image_path,omitempty" xml:"creative_image_path,omitempty"`
	// 创意视频地址
	CreativeVedioPath string `json:"creative_vedio_path,omitempty" xml:"creative_vedio_path,omitempty"`
	// 创意尺寸
	CreativeSize string `json:"creative_size,omitempty" xml:"creative_size,omitempty"`
	// 黑盒创意的 宝贝id,当创意id为 -1 时使用
	BlackCreativePromotionId string `json:"black_creative_promotion_id,omitempty" xml:"black_creative_promotion_id,omitempty"`
	// 黑盒创意 宝贝主体类型,当创意id为 -1 时使用
	BlackCreativePromotionType string `json:"black_creative_promotion_type,omitempty" xml:"black_creative_promotion_type,omitempty"`
	// 省份id
	ProvinceId string `json:"province_id,omitempty" xml:"province_id,omitempty"`
	// 省份名称
	ProvinceName string `json:"province_name,omitempty" xml:"province_name,omitempty"`
	// 城市id
	CityId string `json:"city_id,omitempty" xml:"city_id,omitempty"`
	// 城市名称
	CityName string `json:"city_name,omitempty" xml:"city_name,omitempty"`
	// 人群id
	BpCrowdId string `json:"bp_crowd_id,omitempty" xml:"bp_crowd_id,omitempty"`
	// 小时ID
	HourId string `json:"hour_id,omitempty" xml:"hour_id,omitempty"`
	// 报表指标集合对象
	ReportIndex *TopReportIndexVo `json:"report_index,omitempty" xml:"report_index,omitempty"`
}

TopReportVo 结构体

type TopServiceContext added in v1.2.9

type TopServiceContext struct {
	// api业务线编码,查询账户余额bizCode必须是universalBP
	BizCode string `json:"biz_code,omitempty" xml:"biz_code,omitempty"`
}

TopServiceContext 结构体

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 WordPackageDefaultQueryVo added in v1.2.9

type WordPackageDefaultQueryVo struct {
	// 宝贝id集合
	MaterialIdList []int64 `json:"material_id_list,omitempty" xml:"material_id_list>int64,omitempty"`
}

WordPackageDefaultQueryVo 结构体

type WordPackageQueryVo added in v1.2.9

type WordPackageQueryVo struct {
	// 计划id集合,计划已经存在场景必填
	CampaignIdList []int64 `json:"campaign_id_list,omitempty" xml:"campaign_id_list>int64,omitempty"`
	// 单元id集合,单元已经存在场景必填
	AdgroupIdList []int64 `json:"adgroup_id_list,omitempty" xml:"adgroup_id_list>int64,omitempty"`
}

WordPackageQueryVo 结构体

type WordPackageStrategyVo added in v1.2.9

type WordPackageStrategyVo struct {
	// 词包策略名称
	StrategyName string `json:"strategy_name,omitempty" xml:"strategy_name,omitempty"`
	// 关键词基础出价
	BidPrice string `json:"bid_price,omitempty" xml:"bid_price,omitempty"`
	// 词包策略,0:流量智选,1:好词优选,2:捡漏,2:卖点词包,3:类目优选
	StrategyId int64 `json:"strategy_id,omitempty" xml:"strategy_id,omitempty"`
	// 词包类型,0:流量智选,1:好词优选,19:捡漏,20:卖点词包,21:类目优选
	WordPackageType int64 `json:"word_package_type,omitempty" xml:"word_package_type,omitempty"`
	// 策略状态,1:在线,0:下线
	OnlineStatus int64 `json:"online_status,omitempty" xml:"online_status,omitempty"`
	// 单元id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 计划id,计划已经存在场景必填,eg:添加主体、编辑计划状态等场景
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
}

WordPackageStrategyVo 结构体

type WordPackageSuggestItemVo added in v1.2.9

type WordPackageSuggestItemVo struct {
	// 推荐的词包列表
	WordPackageList []SuggestWordPackageVo `json:"word_package_list,omitempty" xml:"word_package_list>suggest_word_package_vo,omitempty"`
	// 宝贝id
	MaterialId int64 `json:"material_id,omitempty" xml:"material_id,omitempty"`
}

WordPackageSuggestItemVo 结构体

type WordPackageSuggestQueryVo added in v1.2.9

type WordPackageSuggestQueryVo struct {
	// 类型,overall:综合推荐,trendtheme:趋势词包,automatch:流量智选,extend:流量扩展,highquality:优质卖点词包推荐(用于卖点词包报告),new_default:新建流程默认推荐词包;
	Type string `json:"type,omitempty" xml:"type,omitempty"`
	// 宝贝id
	MaterialId int64 `json:"material_id,omitempty" xml:"material_id,omitempty"`
	// 计划id
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 单元id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
}

WordPackageSuggestQueryVo 结构体

type WordPackageVo added in v1.2.9

type WordPackageVo struct {
	// 词包策略信息
	StrategyList []WordPackageStrategyVo `json:"strategy_list,omitempty" xml:"strategy_list>word_package_strategy_vo,omitempty"`
	// 词包名称
	WordPackageName string `json:"word_package_name,omitempty" xml:"word_package_name,omitempty"`
	// 词包基础出价
	BidPrice string `json:"bid_price,omitempty" xml:"bid_price,omitempty"`
	// 计划id,计划已经存在场景必填,eg:添加主体、编辑计划状态等场景
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 单元id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 词包id
	WordPackageId int64 `json:"word_package_id,omitempty" xml:"word_package_id,omitempty"`
	// 词包类型,0:流量智选,1:好词优选,19:捡漏,20:卖点词包,21:类目优选
	WordPackageType int64 `json:"word_package_type,omitempty" xml:"word_package_type,omitempty"`
	// 词包状态,1:在线,0:下线
	Status int64 `json:"status,omitempty" xml:"status,omitempty"`
}

WordPackageVo 结构体

type WordQueryVo added in v1.2.9

type WordQueryVo struct {
	// 计划id集合,计划已经存在场景必填
	CampaignIdList []int64 `json:"campaign_id_list,omitempty" xml:"campaign_id_list>int64,omitempty"`
	// 单元id集合,单元已经存在场景必填
	AdgroupIdList []int64 `json:"adgroup_id_list,omitempty" xml:"adgroup_id_list>int64,omitempty"`
}

WordQueryVo 结构体

type WordVo added in v1.2.9

type WordVo struct {
	// 词
	Word string `json:"word,omitempty" xml:"word,omitempty"`
	// 关键词基础出价
	BidPrice string `json:"bid_price,omitempty" xml:"bid_price,omitempty"`
	// 状态,reject:排查拒绝,preview:排查中,launch:投放中,noflow:无展现
	Status string `json:"status,omitempty" xml:"status,omitempty"`
	// 计划id,计划已经存在场景必填,eg:添加主体、编辑计划状态等场景
	CampaignId int64 `json:"campaign_id,omitempty" xml:"campaign_id,omitempty"`
	// 单元id
	AdgroupId int64 `json:"adgroup_id,omitempty" xml:"adgroup_id,omitempty"`
	// 匹配类型,1:精准匹配,4:广泛匹配
	MatchScope int64 `json:"match_scope,omitempty" xml:"match_scope,omitempty"`
	// 词id
	BidwordId int64 `json:"bidword_id,omitempty" xml:"bidword_id,omitempty"`
	// 抢位信息
	BidStrategyInfo *BidStrategyVo `json:"bid_strategy_info,omitempty" xml:"bid_strategy_info,omitempty"`
}

WordVo 结构体

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