Skip to content

Commit cccc5b8

Browse files
authored
update sdk
1 parent c55ea50 commit cccc5b8

File tree

75 files changed

+1613
-17
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+1613
-17
lines changed

src/main/java/io/getstream/models/ActivitySelectorConfigResponse.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,8 @@ public class ActivitySelectorConfigResponse {
4646
@Nullable
4747
@JsonProperty("filter")
4848
private Map<String, Object> filter;
49+
50+
@Nullable
51+
@JsonProperty("params")
52+
private Map<String, Object> params;
4953
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* ========================================================================
3+
* WARNING: GENERATED CODE -- DO NOT EDIT!
4+
* ========================================================================
5+
*
6+
* This file was auto-generated by GetStream internal OpenAPI
7+
*
8+
* Any modifications to this file will be lost upon regeneration.
9+
* To make changes, please modify the source templates and regenerate.
10+
*
11+
* ========================================================================
12+
*/
13+
package io.getstream.models;
14+
15+
import com.fasterxml.jackson.annotation.JsonProperty;
16+
import java.util.Date;
17+
import java.util.Map;
18+
import org.jetbrains.annotations.Nullable;
19+
20+
@lombok.Data
21+
@lombok.Builder
22+
@lombok.NoArgsConstructor
23+
@lombok.AllArgsConstructor
24+
public class AppealAcceptedEvent {
25+
26+
@JsonProperty("created_at")
27+
private Date createdAt;
28+
29+
@JsonProperty("custom")
30+
private Map<String, Object> custom;
31+
32+
@JsonProperty("type")
33+
private String type;
34+
35+
@Nullable
36+
@JsonProperty("received_at")
37+
private Date receivedAt;
38+
39+
@Nullable
40+
@JsonProperty("appeal")
41+
private AppealItemResponse appeal;
42+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* ========================================================================
3+
* WARNING: GENERATED CODE -- DO NOT EDIT!
4+
* ========================================================================
5+
*
6+
* This file was auto-generated by GetStream internal OpenAPI
7+
*
8+
* Any modifications to this file will be lost upon regeneration.
9+
* To make changes, please modify the source templates and regenerate.
10+
*
11+
* ========================================================================
12+
*/
13+
package io.getstream.models;
14+
15+
import com.fasterxml.jackson.annotation.JsonProperty;
16+
import java.util.Date;
17+
import java.util.Map;
18+
import org.jetbrains.annotations.Nullable;
19+
20+
@lombok.Data
21+
@lombok.Builder
22+
@lombok.NoArgsConstructor
23+
@lombok.AllArgsConstructor
24+
public class AppealCreatedEvent {
25+
26+
@JsonProperty("created_at")
27+
private Date createdAt;
28+
29+
@JsonProperty("custom")
30+
private Map<String, Object> custom;
31+
32+
@JsonProperty("type")
33+
private String type;
34+
35+
@Nullable
36+
@JsonProperty("received_at")
37+
private Date receivedAt;
38+
39+
@Nullable
40+
@JsonProperty("appeal")
41+
private AppealItemResponse appeal;
42+
}
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
/*
2+
* ========================================================================
3+
* WARNING: GENERATED CODE -- DO NOT EDIT!
4+
* ========================================================================
5+
*
6+
* This file was auto-generated by GetStream internal OpenAPI
7+
*
8+
* Any modifications to this file will be lost upon regeneration.
9+
* To make changes, please modify the source templates and regenerate.
10+
*
11+
* ========================================================================
12+
*/
13+
package io.getstream.models;
14+
15+
import com.fasterxml.jackson.annotation.JsonProperty;
16+
import java.util.Date;
17+
import java.util.List;
18+
import org.jetbrains.annotations.Nullable;
19+
20+
@lombok.Data
21+
@lombok.Builder
22+
@lombok.NoArgsConstructor
23+
@lombok.AllArgsConstructor
24+
public class AppealItemResponse {
25+
26+
@JsonProperty("appeal_reason")
27+
private String appealReason;
28+
29+
@JsonProperty("created_at")
30+
private Date createdAt;
31+
32+
@JsonProperty("entity_id")
33+
private String entityID;
34+
35+
@JsonProperty("entity_type")
36+
private String entityType;
37+
38+
@JsonProperty("id")
39+
private String id;
40+
41+
@JsonProperty("status")
42+
private String status;
43+
44+
@JsonProperty("updated_at")
45+
private Date updatedAt;
46+
47+
@Nullable
48+
@JsonProperty("decision_reason")
49+
private String decisionReason;
50+
51+
@Nullable
52+
@JsonProperty("attachments")
53+
private List<String> attachments;
54+
55+
@Nullable
56+
@JsonProperty("entity_content")
57+
private ModerationPayload entityContent;
58+
59+
@Nullable
60+
@JsonProperty("user")
61+
private UserResponse user;
62+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* ========================================================================
3+
* WARNING: GENERATED CODE -- DO NOT EDIT!
4+
* ========================================================================
5+
*
6+
* This file was auto-generated by GetStream internal OpenAPI
7+
*
8+
* Any modifications to this file will be lost upon regeneration.
9+
* To make changes, please modify the source templates and regenerate.
10+
*
11+
* ========================================================================
12+
*/
13+
package io.getstream.models;
14+
15+
import com.fasterxml.jackson.annotation.JsonProperty;
16+
import java.util.Date;
17+
import java.util.Map;
18+
import org.jetbrains.annotations.Nullable;
19+
20+
@lombok.Data
21+
@lombok.Builder
22+
@lombok.NoArgsConstructor
23+
@lombok.AllArgsConstructor
24+
public class AppealRejectedEvent {
25+
26+
@JsonProperty("created_at")
27+
private Date createdAt;
28+
29+
@JsonProperty("custom")
30+
private Map<String, Object> custom;
31+
32+
@JsonProperty("type")
33+
private String type;
34+
35+
@Nullable
36+
@JsonProperty("received_at")
37+
private Date receivedAt;
38+
39+
@Nullable
40+
@JsonProperty("appeal")
41+
private AppealItemResponse appeal;
42+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/*
2+
* ========================================================================
3+
* WARNING: GENERATED CODE -- DO NOT EDIT!
4+
* ========================================================================
5+
*
6+
* This file was auto-generated by GetStream internal OpenAPI
7+
*
8+
* Any modifications to this file will be lost upon regeneration.
9+
* To make changes, please modify the source templates and regenerate.
10+
*
11+
* ========================================================================
12+
*/
13+
package io.getstream.models;
14+
15+
import com.fasterxml.jackson.annotation.JsonProperty;
16+
import java.util.List;
17+
import org.jetbrains.annotations.Nullable;
18+
19+
@lombok.Data
20+
@lombok.Builder
21+
@lombok.NoArgsConstructor
22+
@lombok.AllArgsConstructor
23+
public class AppealRequest {
24+
25+
@JsonProperty("appeal_reason")
26+
private String appealReason;
27+
28+
@JsonProperty("entity_id")
29+
private String entityID;
30+
31+
@JsonProperty("entity_type")
32+
private String entityType;
33+
34+
@Nullable
35+
@JsonProperty("user_id")
36+
private String userID;
37+
38+
@Nullable
39+
@JsonProperty("attachments")
40+
private List<String> attachments;
41+
42+
@Nullable
43+
@JsonProperty("user")
44+
private UserRequest user;
45+
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/*
2+
* ========================================================================
3+
* WARNING: GENERATED CODE -- DO NOT EDIT!
4+
* ========================================================================
5+
*
6+
* This file was auto-generated by GetStream internal OpenAPI
7+
*
8+
* Any modifications to this file will be lost upon regeneration.
9+
* To make changes, please modify the source templates and regenerate.
10+
*
11+
* ========================================================================
12+
*/
13+
package io.getstream.models;
14+
15+
import com.fasterxml.jackson.annotation.JsonProperty;
16+
17+
@lombok.Data
18+
@lombok.Builder
19+
@lombok.NoArgsConstructor
20+
@lombok.AllArgsConstructor
21+
public class AppealResponse {
22+
23+
@JsonProperty("appeal_id")
24+
private String appealID;
25+
26+
@JsonProperty("duration")
27+
private String duration;
28+
}

src/main/java/io/getstream/models/CallRecordingFailedEvent.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ public class CallRecordingFailedEvent {
3030
@JsonProperty("egress_id")
3131
private String egressID;
3232

33+
@JsonProperty("recording_type")
34+
private String recordingType;
35+
3336
@JsonProperty("type")
3437
private String type;
3538
}

src/main/java/io/getstream/models/CallRecordingReadyEvent.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ public class CallRecordingReadyEvent {
3030
@JsonProperty("egress_id")
3131
private String egressID;
3232

33+
@JsonProperty("recording_type")
34+
private String recordingType;
35+
3336
@JsonProperty("call_recording")
3437
private CallRecording callRecording;
3538

src/main/java/io/getstream/models/CallRecordingStartedEvent.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ public class CallRecordingStartedEvent {
3030
@JsonProperty("egress_id")
3131
private String egressID;
3232

33+
@JsonProperty("recording_type")
34+
private String recordingType;
35+
3336
@JsonProperty("type")
3437
private String type;
3538
}

0 commit comments

Comments
 (0)