Skip to content

Commit b5787ea

Browse files
author
liyan.90210
committed
feat auto update sdk
1 parent e0f585d commit b5787ea

File tree

14 files changed

+89
-1
lines changed

14 files changed

+89
-1
lines changed

Changelog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Change log
22

3+
2025-07-24 Bumped to version v1.0.231
4+
- Updated apis for livesaas
5+
36
2025-07-18 Bumped to version v1.0.230
47
- Updated apis for contentSecurity
58

volc-sdk-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.volcengine</groupId>
7-
<version>1.0.230</version>
7+
<version>1.0.231</version>
88
<artifactId>volc-sdk-java</artifactId>
99

1010
<name>volc-sdk-java</name>

volc-sdk-java/src/main/java/com/volcengine/helper/Const.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1147,6 +1147,8 @@ public class Const {
11471147

11481148
public static final String SendProductOrderMessage = "SendProductOrderMessage";
11491149

1150+
public static final String ResendActivityCoupon = "ResendActivityCoupon";
1151+
11501152
public static final String UpdateAccountCustomLinkConfig = "UpdateAccountCustomLinkConfig";
11511153
public static final String GetAccountCustomLinkConfig = "GetAccountCustomLinkConfig";
11521154
}

volc-sdk-java/src/main/java/com/volcengine/model/beans/livesaas/ActivityCoupon.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,6 @@ public class ActivityCoupon {
3131
Long EndTime;
3232
@JSONField(name = "Coupon")
3333
Coupon Coupon;
34+
@JSONField(name = "IsWatchLiveLimit")
35+
Integer IsWatchLiveLimit;
3436
}

volc-sdk-java/src/main/java/com/volcengine/model/beans/livesaas/Coupon.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@ public class Coupon {
1515
String Pic;
1616
@JSONField(name = "Id")
1717
Long Id;
18+
@JSONField(name = "IsRepeatPickupEnable")
19+
Integer IsRepeatPickupEnable;
1820
}

volc-sdk-java/src/main/java/com/volcengine/model/beans/livesaas/CreateActivityCouponModel.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ public class CreateActivityCouponModel {
2929
Long EndTime;
3030
@JSONField(name = "Coupon")
3131
Coupon Coupon;
32+
@JSONField(name = "IsWatchLiveLimit")
33+
Integer IsWatchLiveLimit;
3234
}

volc-sdk-java/src/main/java/com/volcengine/model/beans/livesaas/CreateCouponModel.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@ public class CreateCouponModel {
1515
String Pic;
1616
@JSONField(name = "OwnerSubAccountName")
1717
String OwnerSubAccountName;
18+
@JSONField(name = "IsRepeatPickupEnable")
19+
Integer IsRepeatPickupEnable;
1820
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.volcengine.model.livesaas.request;
2+
3+
import com.alibaba.fastjson.annotation.JSONField;
4+
import lombok.Data;
5+
6+
@Data
7+
public class ResendActivityCouponRequest {
8+
@JSONField(name = "Id")
9+
Long Id;
10+
@JSONField(name = "ActivityId")
11+
Long ActivityId;
12+
}

volc-sdk-java/src/main/java/com/volcengine/model/livesaas/request/UpdateActivityCouponRequest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ public class UpdateActivityCouponRequest {
2121
Integer Duration;
2222
@JSONField(name = "CutOffTime")
2323
Long CutOffTime;
24+
@JSONField(name = "IsWatchLiveLimit")
25+
Integer IsWatchLiveLimit;
2426
}

volc-sdk-java/src/main/java/com/volcengine/model/livesaas/request/UpdateCouponRequest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,6 @@ public class UpdateCouponRequest {
1818
String ThirdPartyId;
1919
@JSONField(name = "Pic")
2020
String Pic;
21+
@JSONField(name = "IsRepeatPickupEnable")
22+
Integer IsRepeatPickupEnable;
2123
}

0 commit comments

Comments
 (0)