response

package
v3.2.16 Latest Latest
Warning

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

Go to latest
Published: May 20, 2024 License: MIT Imports: 1 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ArticleDetail

type ArticleDetail struct {
	StatDate                    string `json:"stat_date"`
	TargetUser                  int    `json:"target_user"`
	IntPageReadUser             int    `json:"int_page_read_user"`
	IntPageReadCount            int    `json:"int_page_read_count"`
	OriPageReadUser             int    `json:"ori_page_read_user"`
	OriPageReadCount            int    `json:"ori_page_read_count"`
	ShareUser                   int    `json:"share_user"`
	ShareCount                  int    `json:"share_count"`
	AddToFavUser                int    `json:"add_to_fav_user"`
	AddToFavCount               int    `json:"add_to_fav_count"`
	IntPageFromSessionReadUser  int    `json:"int_page_from_session_read_user"`
	IntPageFromSessionReadCount int    `json:"int_page_from_session_read_count"`
	IntPageFromHistMsgReadUser  int    `json:"int_page_from_hist_msg_read_user"`
	IntPageFromHistMsgReadCount int    `json:"int_page_from_hist_msg_read_count"`
	IntPageFromFeedReadUser     int    `json:"int_page_from_feed_read_user"`
	IntPageFromFeedReadCount    int    `json:"int_page_from_feed_read_count"`
	IntPageFromFriendsReadUser  int    `json:"int_page_from_friends_read_user"`
	IntPageFromFriendsReadCount int    `json:"int_page_from_friends_read_count"`
	IntPageFromOtherReadUser    int    `json:"int_page_from_other_read_user"`
	IntPageFromOtherReadCount   int    `json:"int_page_from_other_read_count"`
	FeedShareFromSessionUser    int    `json:"feed_share_from_session_user"`
	FeedShareFromSessionCnt     int    `json:"feed_share_from_session_cnt"`
	FeedShareFromFeedUser       int    `json:"feed_share_from_feed_user"`
	FeedShareFromFeedCnt        int    `json:"feed_share_from_feed_cnt"`
	FeedShareFromOtherUser      int    `json:"feed_share_from_other_user"`
	FeedShareFromOtherCnt       int    `json:"feed_share_from_other_cnt"`
}

type ArticleSummary

type ArticleSummary struct {
	RefDate          string `json:"ref_date"`
	MsgID            string `json:"msgid"`
	Title            string `json:"title"`
	IntPageReadUser  int    `json:"int_page_read_user"`
	IntPageReadCount int    `json:"int_page_read_count"`
	OriPageReadUser  int    `json:"ori_page_read_user"`
	OriPageReadCount int    `json:"ori_page_read_count"`
	ShareUser        int    `json:"share_user"`
	ShareCount       int    `json:"share_count"`
	AddToFavUser     int    `json:"add_to_fav_user"`
	AddToFavCount    int    `json:"add_to_fav_count"`
}

type ArticleTotal

type ArticleTotal struct {
	RefDate string           `json:"ref_date"`
	Msgid   string           `json:"msgid"`
	Title   string           `json:"title"`
	Details []*ArticleDetail `json:"details"`
}

type FreeCardSummary

type FreeCardSummary struct {
	RefDate     string `json:"ref_date"`
	CardID      string `json:"card_id"`
	CardType    int    `json:"card_type"`
	ViewCnt     int    `json:"view_cnt"`
	ViewUser    int    `json:"view_user"`
	ReceiveCnt  int    `json:"receive_cnt"`
	ReceiveUser int    `json:"receive_user"`
	VerifyCnt   int    `json:"verify_cnt"`
	VerifyUser  int    `json:"verify_user"`
	GivenCnt    int    `json:"given_cnt"`
	GivenUser   int    `json:"given_user"`
	ExpireCnt   int    `json:"expire_cnt"`
	ExpireUser  int    `json:"expire_user"`
}

type InterfaceSummary

type InterfaceSummary struct {
	RefDate       string `json:"ref_date"`
	CallbackCount int    `json:"callback_count"`
	FailCount     int    `json:"fail_count"`
	TotalTimeCost int    `json:"total_time_cost"`
	MaxTimeCost   int    `json:"max_time_cost"`
}

type InterfaceSummaryHourly

type InterfaceSummaryHourly struct {
	RefDate       string `json:"ref_date"`
	RefHour       int    `json:"ref_hour"`
	CallbackCount int    `json:"callback_count"`
	FailCount     int    `json:"fail_count"`
	TotalTimeCost int    `json:"total_time_cost"`
	MaxTimeCost   int    `json:"max_time_cost"`
}

type MemberCardSummary

type MemberCardSummary struct {
	RefDate          string `json:"ref_date"`
	ViewCnt          int    `json:"view_cnt"`
	ViewUser         int    `json:"view_user"`
	ReceiveCnt       int    `json:"receive_cnt"`
	ReceiveUser      int    `json:"receive_user"`
	ActiveUser       int    `json:"active_user"`
	VerifyCNT        int    `json:"verify_cnt"`
	VerifyUser       int    `json:"verify_user"`
	TotalUser        int    `json:"total_user"`
	TotalReceiveUser int    `json:"total_receive_user"`
}

type MemberCardSummaryByID

type MemberCardSummaryByID struct {
	RefDate        string `json:"ref_date"`
	MerchantType   int    `json:"merchanttype"`
	CardID         string `json:"cardid"`
	SubMerchantID  int    `json:"submerchantid"`
	ViewCNT        int    `json:"view_cnt"`
	ViewUser       int    `json:"view_user"`
	ReceiveCNT     int    `json:"receive_cnt"`
	ReceiveUser    int    `json:"receive_user"`
	VerifyCnt      int    `json:"verify_cnt"`
	VerifyUser     int    `json:"verify_user"`
	ActiveCnt      int    `json:"active_cnt"`
	ActiveUser     int    `json:"active_user"`
	TotalUser      int    `json:"total_user"`
	NewUser        int    `json:"new_user"`
	PayOriginalFee int    `json:"payOriginalFee"`
	Fee            int    `json:"fee"`
}

type ResponseDataCubeArticleSummary

type ResponseDataCubeArticleSummary struct {
	response.ResponseOfficialAccount

	List []*ArticleSummary `json:"list"`
}

type ResponseDataCubeArticleTotal

type ResponseDataCubeArticleTotal struct {
	response.ResponseOfficialAccount

	List []*ArticleTotal `json:"list"`
}

type ResponseDataCubeFreeCardSummary

type ResponseDataCubeFreeCardSummary struct {
	List []*FreeCardSummary `json:"list"`
}

type ResponseDataCubeInterfaceSummary

type ResponseDataCubeInterfaceSummary struct {
	response.ResponseOfficialAccount

	List []*InterfaceSummary `json:"list"`
}

type ResponseDataCubeInterfaceSummaryHourly

type ResponseDataCubeInterfaceSummaryHourly struct {
	response.ResponseOfficialAccount

	List []*InterfaceSummaryHourly `json:"list"`
}

type ResponseDataCubeMemberCardSummary

type ResponseDataCubeMemberCardSummary struct {
	List []*MemberCardSummary `json:"list"`
}

type ResponseDataCubeMemberCardSummaryByID

type ResponseDataCubeMemberCardSummaryByID struct {
	List []*MemberCardSummaryByID `json:"list"`
}

type ResponseDataCubeUpstreamMessageDistMonthly

type ResponseDataCubeUpstreamMessageDistMonthly struct {
	response.ResponseOfficialAccount

	List []*UpstreamMessageDistMonthly `json:"list"`
}

type ResponseDataCubeUpstreamMessageDistSummary

type ResponseDataCubeUpstreamMessageDistSummary struct {
	response.ResponseOfficialAccount

	List []*UpstreamMessageDistSummary `json:"list"`
}

type ResponseDataCubeUpstreamMessageDistWeekly

type ResponseDataCubeUpstreamMessageDistWeekly struct {
	response.ResponseOfficialAccount

	List []*UpstreamMessageDistWeekly `json:"list"`
}

type ResponseDataCubeUpstreamMessageHourly

type ResponseDataCubeUpstreamMessageHourly struct {
	response.ResponseOfficialAccount

	List []*UpstreamMessageHourly `json:"list"`
}

type ResponseDataCubeUpstreamMessageMonthly

type ResponseDataCubeUpstreamMessageMonthly struct {
	response.ResponseOfficialAccount

	List []*UpstreamMessageMonthly `json:"list"`
}

type ResponseDataCubeUpstreamMessageSummary

type ResponseDataCubeUpstreamMessageSummary struct {
	response.ResponseOfficialAccount

	List []*UpstreamMessageSummary `json:"list"`
}

type ResponseDataCubeUpstreamMessageWeekly

type ResponseDataCubeUpstreamMessageWeekly struct {
	response.ResponseOfficialAccount

	List []*UpstreamMessageWeekly `json:"list"`
}

type ResponseDataCubeUserCumulate

type ResponseDataCubeUserCumulate struct {
	response.ResponseOfficialAccount

	List []*UserCumulate `json:"list"`
}

type ResponseDataCubeUserReadSummary

type ResponseDataCubeUserReadSummary struct {
	response.ResponseOfficialAccount

	List []*UserReadSummary `json:"list"`
}

type ResponseDataCubeUserShareHourly

type ResponseDataCubeUserShareHourly struct {
	response.ResponseOfficialAccount

	List []*UserShareHourly `json:"list"`
}

type ResponseDataCubeUserShareSummary

type ResponseDataCubeUserShareSummary struct {
	response.ResponseOfficialAccount

	List []*UserShareSummary `json:"list"`
}

type ResponseDataCubeUserSummary

type ResponseDataCubeUserSummary struct {
	response.ResponseOfficialAccount

	List []*UserSummary `json:"list"`
}

type UpstreamMessageDistMonthly

type UpstreamMessageDistMonthly struct {
	RefDate       string `json:"ref_date"`
	CountInterval int    `json:"count_interval"`
	MsgUser       int    `json:"msg_user"`
}

type UpstreamMessageDistSummary

type UpstreamMessageDistSummary struct {
	RefDate       string `json:"ref_date"`
	CountInterval int    `json:"count_interval"`
	MsgUser       int    `json:"msg_user"`
}

type UpstreamMessageDistWeekly

type UpstreamMessageDistWeekly struct {
	RefDate       string `json:"ref_date"`
	CountInterval int    `json:"count_interval"`
	MsgUser       int    `json:"msg_user"`
}

type UpstreamMessageHourly

type UpstreamMessageHourly struct {
	RefDate  string `json:"ref_date"`
	RefHour  int    `json:"ref_hour"`
	MsgType  int    `json:"msg_type"`
	MsgUser  int    `json:"msg_user"`
	MsgCount int    `json:"msg_count"`
}

type UpstreamMessageMonthly

type UpstreamMessageMonthly struct {
	RefDate  string `json:"ref_date"`
	MsgType  int    `json:"msg_type"`
	MsgUser  int    `json:"msg_user"`
	MsgCount int    `json:"msg_count"`
}

type UpstreamMessageSummary

type UpstreamMessageSummary struct {
	RefDate  string `json:"ref_date"`
	MsgType  int    `json:"msg_type"`
	MsgUser  int    `json:"msg_user"`
	MsgCount int    `json:"msg_count"`
}

type UpstreamMessageWeekly

type UpstreamMessageWeekly struct {
	RefDate  string `json:"ref_date"`
	MsgType  int    `json:"msg_type"`
	MsgUser  int    `json:"msg_user"`
	MsgCount int    `json:"msg_count"`
}

type UserCumulate

type UserCumulate struct {
	RefDate      string `json:"ref_date"`
	CumulateUser int    `json:"cumulate_user"`
}

type UserReadSummary

type UserReadSummary struct {
	RefDate          string `json:"ref_date"`
	UserSource       int    `json:"user_source"`
	IntPageReadUser  int    `json:"int_page_read_user"`
	IntPageReadCount int    `json:"int_page_read_count"`
	OriPageReadUser  int    `json:"ori_page_read_user"`
	OriPageReadCount int    `json:"ori_page_read_count"`
	ShareUser        int    `json:"share_user"`
	ShareCount       int    `json:"share_count"`
	AddToFavUser     int    `json:"add_to_fav_user"`
	AddToFavCount    int    `json:"add_to_fav_count"`
}

type UserShareHourly

type UserShareHourly struct {
	RefDate    string `json:"ref_date"`
	RefHour    int    `json:"ref_hour"`
	ShareScene int    `json:"share_scene"`
	ShareCount int    `json:"share_count"`
	ShareUser  int    `json:"share_user"`
}

type UserShareSummary

type UserShareSummary struct {
	RefDate    string `json:"ref_date"`
	ShareScene int    `json:"share_scene"`
	ShareCount int    `json:"share_count"`
	ShareUser  int    `json:"share_user"`
}

type UserSummary

type UserSummary struct {
	RefDate    string `json:"ref_date"`
	UserSource int    `json:"user_source"`
	NewUser    int    `json:"new_user"`
	CancelUser int    `json:"cancel_user"`
}

Jump to

Keyboard shortcuts

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