-
Notifications
You must be signed in to change notification settings - Fork 34
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
liyan.90210
committed
Jan 23, 2025
1 parent
599afb4
commit 52c9d94
Showing
35 changed files
with
874 additions
and
66 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
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
18 changes: 18 additions & 0 deletions
18
...-sdk-java/src/main/java/com/volcengine/model/beans/livesaas/InteractionScriptComment.java
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,18 @@ | ||
package com.volcengine.model.beans.livesaas; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import lombok.Data; | ||
|
||
@Data | ||
public class InteractionScriptComment { | ||
@JSONField(name = "Id") | ||
Integer Id; | ||
@JSONField(name = "SendTime") | ||
Integer SendTime; | ||
@JSONField(name = "Role") | ||
Integer Role; | ||
@JSONField(name = "Nickname") | ||
String Nickname; | ||
@JSONField(name = "Content") | ||
String Content; | ||
} |
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
16 changes: 16 additions & 0 deletions
16
.../main/java/com/volcengine/model/livesaas/request/AddInteractionScriptCommentsRequest.java
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,16 @@ | ||
package com.volcengine.model.livesaas.request; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import com.volcengine.model.beans.livesaas.InteractionScriptComment; | ||
import lombok.Data; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class AddInteractionScriptCommentsRequest { | ||
@JSONField(name = "InteractionScriptId") | ||
Long InteractionScriptId; | ||
@JSONField(name = "Comments") | ||
List<InteractionScriptComment> Comments; | ||
} |
11 changes: 11 additions & 0 deletions
11
...a/src/main/java/com/volcengine/model/livesaas/request/CreateInteractionScriptRequest.java
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 com.volcengine.model.livesaas.request; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import lombok.Data; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class CreateInteractionScriptRequest { | ||
} |
15 changes: 15 additions & 0 deletions
15
...ain/java/com/volcengine/model/livesaas/request/DeleteInteractionScriptCommentRequest.java
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 com.volcengine.model.livesaas.request; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import lombok.Data; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class DeleteInteractionScriptCommentRequest { | ||
@JSONField(name = "InteractionScriptId") | ||
Long InteractionScriptId; | ||
@JSONField(name = "CommentId") | ||
Integer CommentId; | ||
} |
16 changes: 16 additions & 0 deletions
16
.../main/java/com/volcengine/model/livesaas/request/EditInteractionScriptCommentRequest.java
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,16 @@ | ||
package com.volcengine.model.livesaas.request; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import com.volcengine.model.beans.livesaas.InteractionScriptComment; | ||
import lombok.Data; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class EditInteractionScriptCommentRequest { | ||
@JSONField(name = "InteractionScriptId") | ||
Long InteractionScriptId; | ||
@JSONField(name = "Comment") | ||
InteractionScriptComment Comment; | ||
} |
21 changes: 21 additions & 0 deletions
21
...main/java/com/volcengine/model/livesaas/request/ListInteractionScriptCommentsRequest.java
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,21 @@ | ||
package com.volcengine.model.livesaas.request; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import lombok.Data; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class ListInteractionScriptCommentsRequest { | ||
@JSONField(name = "InteractionScriptId") | ||
Long InteractionScriptId; | ||
@JSONField(name = "PageNumber") | ||
Integer PageNumber; | ||
@JSONField(name = "PageSize") | ||
Integer PageSize; | ||
@JSONField(name = "SendTime") | ||
Integer SendTime; | ||
@JSONField(name = "CommentId") | ||
Integer CommentId; | ||
} |
17 changes: 17 additions & 0 deletions
17
...a/src/main/java/com/volcengine/model/livesaas/request/UpdateActivityMediaInfoRequest.java
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,17 @@ | ||
package com.volcengine.model.livesaas.request; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import lombok.Data; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class UpdateActivityMediaInfoRequest { | ||
@JSONField(name = "Id") | ||
String Id; | ||
@JSONField(name = "Name") | ||
String Name; | ||
@JSONField(name = "InteractionScriptId") | ||
Long InteractionScriptId; | ||
} |
34 changes: 34 additions & 0 deletions
34
...ain/java/com/volcengine/model/livesaas/response/AddInteractionScriptCommentsResponse.java
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,34 @@ | ||
package com.volcengine.model.livesaas.response; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import lombok.Data; | ||
import com.volcengine.model.response.ResponseMetadata; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class AddInteractionScriptCommentsResponse { | ||
@JSONField(name = "ResponseMetadata") | ||
ResponseMetadata responseMetadata; | ||
@JSONField(name = "Result") | ||
AddInteractionScriptCommentsResponseBody result; | ||
|
||
@Data | ||
public static class AddInteractionScriptCommentsResponseBody { | ||
@JSONField(name = "FailList") | ||
List<FailResult> FailList; | ||
@JSONField(name = "LatestCommentId") | ||
Integer LatestCommentId; | ||
@JSONField(name = "SuccessAmount") | ||
Integer SuccessAmount; | ||
} | ||
|
||
@Data | ||
public static class FailResult { | ||
@JSONField(name = "Index") | ||
Integer Index; | ||
@JSONField(name = "FailType") | ||
Integer FailType; | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...src/main/java/com/volcengine/model/livesaas/response/CreateInteractionScriptResponse.java
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,22 @@ | ||
package com.volcengine.model.livesaas.response; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import lombok.Data; | ||
import com.volcengine.model.response.ResponseMetadata; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class CreateInteractionScriptResponse { | ||
@JSONField(name = "ResponseMetadata") | ||
ResponseMetadata responseMetadata; | ||
@JSONField(name = "Result") | ||
CreateInteractionScriptResponseBody result; | ||
|
||
@Data | ||
public static class CreateInteractionScriptResponseBody { | ||
@JSONField(name = "InteractionScriptId") | ||
Long InteractionScriptId; | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...n/java/com/volcengine/model/livesaas/response/DeleteInteractionScriptCommentResponse.java
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,20 @@ | ||
package com.volcengine.model.livesaas.response; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import lombok.Data; | ||
import com.volcengine.model.response.ResponseMetadata; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class DeleteInteractionScriptCommentResponse { | ||
@JSONField(name = "ResponseMetadata") | ||
ResponseMetadata responseMetadata; | ||
@JSONField(name = "Result") | ||
DeleteInteractionScriptCommentResponseBody result; | ||
|
||
@Data | ||
public static class DeleteInteractionScriptCommentResponseBody { | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...ain/java/com/volcengine/model/livesaas/response/EditInteractionScriptCommentResponse.java
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,20 @@ | ||
package com.volcengine.model.livesaas.response; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import lombok.Data; | ||
import com.volcengine.model.response.ResponseMetadata; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class EditInteractionScriptCommentResponse { | ||
@JSONField(name = "ResponseMetadata") | ||
ResponseMetadata responseMetadata; | ||
@JSONField(name = "Result") | ||
EditInteractionScriptCommentResponseBody result; | ||
|
||
@Data | ||
public static class EditInteractionScriptCommentResponseBody { | ||
} | ||
} |
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
29 changes: 29 additions & 0 deletions
29
...in/java/com/volcengine/model/livesaas/response/ListInteractionScriptCommentsResponse.java
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,29 @@ | ||
package com.volcengine.model.livesaas.response; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import lombok.Data; | ||
import com.volcengine.model.response.ResponseMetadata; | ||
import com.volcengine.model.beans.livesaas.InteractionScriptComment; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class ListInteractionScriptCommentsResponse { | ||
@JSONField(name = "ResponseMetadata") | ||
ResponseMetadata responseMetadata; | ||
@JSONField(name = "Result") | ||
ListInteractionScriptCommentsResponseBody result; | ||
|
||
@Data | ||
public static class ListInteractionScriptCommentsResponseBody { | ||
@JSONField(name = "PageNumber") | ||
Integer PageNumber; | ||
@JSONField(name = "PageSize") | ||
Integer PageSize; | ||
@JSONField(name = "TotalAmount") | ||
Integer TotalAmount; | ||
@JSONField(name = "Comments") | ||
List<InteractionScriptComment> Comments; | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...src/main/java/com/volcengine/model/livesaas/response/UpdateActivityMediaInfoResponse.java
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,20 @@ | ||
package com.volcengine.model.livesaas.response; | ||
|
||
import com.alibaba.fastjson.annotation.JSONField; | ||
import lombok.Data; | ||
import com.volcengine.model.response.ResponseMetadata; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Data | ||
public class UpdateActivityMediaInfoResponse { | ||
@JSONField(name = "ResponseMetadata") | ||
ResponseMetadata responseMetadata; | ||
@JSONField(name = "Result") | ||
UpdateActivityMediaInfoResponseBody result; | ||
|
||
@Data | ||
public static class UpdateActivityMediaInfoResponseBody { | ||
} | ||
} |
Oops, something went wrong.