Skip to content

Commit

Permalink
feat(qianchuan): 定向新增支持行政区域版本
Browse files Browse the repository at this point in the history
  • Loading branch information
bububa committed Dec 5, 2024
1 parent 3fdc47a commit bb52c5a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions marketing-api/model/qianchuan/ad/audience.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ type Audience struct {
// 1:支持电子围栏定向
// 2:支持电子围栏定向
ElectricFenceRegion int `json:"electric_fence_region,omitempty"`
// RegionVersion 行政区域版本号,可选值:2.3.2 新版本
RegionVersion string `json:"region_version,omitempty"`
// City 具体定向的城市列表,当 district 为COUNTY,city 为必填,枚举值详见【附件-city.json】;省市传法:city: [12],district: CITY;区县的传法:city: [130102],district: COUNTY
City []uint64 `json:"city,omitempty"`
// LocationType 地域定向的用户状态类型,当 district 为COUNTY,CITY为必填,允许值:CURRENT:正在该地区的用户,HOME:居住在该地区的用户,TRAVEL;到该地区旅行的用户,ALL:该地区内的所有用户
Expand Down
6 changes: 6 additions & 0 deletions marketing-api/model/qianchuan/ad/region_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ type RegionUpdateRequest struct {
// 注意:
// 1、当地域定向类型为“不限”/地域定向的用户状态类型为“正在该地区的用户”才支持
ExcludeLimitedRegion int `json:"exclude_limited_region,omitempty"`
// ElectricFenceRegion 电子围栏定向,可选值:
// 1 不支持电子围栏地区
// 2 支持电子围栏地区
ElectricFenceRegion int `json:"electric_fence_region,omitempty"`
// RegionVersion 行政区域版本号,可选值: 2.3.3 新版本
RegionVersion string `json:"region_version,omitempty"`
}

// Encode implement PostRequest interface
Expand Down

0 comments on commit bb52c5a

Please sign in to comment.