Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type HourlyLaunchReportOfflineRequest ¶
type HourlyLaunchReportOfflineRequest struct { /** * 推广id列表,单次最多支持50个 */ LaunchIds []int64 `json:"launchIds"` /** * 平台 */ Platform int32 `json:"platform"` /** * 开始时间 */ BeginTime string `json:"beginTime"` /** * 结束时间 */ EndTime string `json:"endTime"` }
func (*HourlyLaunchReportOfflineRequest) DoInvoke ¶
func (req *HourlyLaunchReportOfflineRequest) DoInvoke(client mtclient.MeituanClient) (*HourlyLaunchReportOfflineResponse, error)
type HourlyLaunchReportOfflineResponse ¶
type HourlyLaunchReportOfflineResponse struct { Code string `json:"code"` Msg string `json:"msg"` /** * 对象列表 */ Data []LaunchInfo `json:"data"` TraceId string `json:"traceId"` }
func (*HourlyLaunchReportOfflineResponse) IsSuccess ¶
func (response *HourlyLaunchReportOfflineResponse) IsSuccess() bool
type LaunchInfo ¶
type LaunchInfo struct { /** * 日期 */ Date string `json:"date"` /** * 小时 */ Hour int32 `json:"hour"` /** * 推广id */ LaunchId int32 `json:"launch_id"` /** * 推广名称 */ LaunchName string `json:"launch_name"` /** * 门店名称 */ ShopName string `json:"shop_name"` /** * 花费 */ Charge float64 `json:"charge"` /** * 曝光 */ Imp int32 `json:"imp"` /** * 点击 */ Click int32 `json:"click"` }
Click to show internal directories.
Click to hide internal directories.