-
Notifications
You must be signed in to change notification settings - Fork 43
/
update.go
32 lines (28 loc) · 1.02 KB
/
update.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package abtest
import (
"github.com/bububa/oceanengine/marketing-api/model"
"github.com/bububa/oceanengine/marketing-api/util"
)
// UpdateRequest 更新实验 API Request
type UpdateRequest struct {
// AdvertiserID 广告主ID
AdvertiserID uint64 `json:"advertiser_id,omitempty"`
// TestID 实验ID
TestID uint64 `json:"test_id,omitempty"`
// TestName 实验名称,最多100个字符,中文算两个字符,不支持emoji,不支持与现有实验重名。
TestName string `json:"test_name,omitempty"`
// TestStartTime 实验开始时间,格式为:"2020-12-25 07:12:08",开始时间不能早于当前时间。
TestStartTime string `json:"test_start_time,omitempty"`
// TestEndTime 实验结束时间,格式为:"2020-12-25 07:12:08",
TestEndTime string `json:"test_end_time,omitempty"`
}
func (r UpdateRequest) Encode() []byte {
return util.JSONMarshal(r)
}
type UpdateResponse struct {
model.BaseResponse
Data struct {
// TestID 实验ID
TestID uint64 `json:"test_id,omitempty"`
} `json:"data,omitempty"`
}