-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
54 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package enum | ||
|
||
// AnchorType 锚点类型 | ||
type AnchorType string | ||
|
||
const ( | ||
// AnchorType_APP_GAME 应用下载-游戏 | ||
AnchorType_APP_GAME AnchorType = "APP_GAME" | ||
// AnchorType_APP_INTERNET_SERVICE 应用下载-网服 | ||
AnchorType_APP_INTERNET_SERVICE AnchorType = "APP_INTERNET_SERVICE" | ||
// AnchorType_APP_SHOP 应用下载-电商 | ||
AnchorType_APP_SHOP AnchorType = "APP_SHOP" | ||
// AnchorType_ONLINE_SUBSCRIBE 高级在线预约 | ||
AnchorType_ONLINE_SUBSCRIBE AnchorType = "ONLINE_SUBSCRIBE" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package creative | ||
|
||
import "github.com/bububa/oceanengine/marketing-api/enum" | ||
|
||
// DecorationMaterial 家装卡券素材 | ||
type DecorationMaterial struct { | ||
// ActivityID 活动ID | ||
ActivityID string `json:"activity_id,omitempty"` | ||
// ImageMode 素材类型 | ||
ImageMode enum.ImageMode `json:"image_mode,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package creative | ||
|
||
// InteractiveMaterial 直出互动素材信息 | ||
type InteractiveMaterial struct { | ||
// PlayableID 直出互动素材id | ||
PlayableID uint64 `json:"playable_id,omitempty"` | ||
} |