Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,8 @@ public class ActivitySelectorConfigResponse {
@Nullable
@JsonProperty("filter")
private Map<String, Object> filter;

@Nullable
@JsonProperty("params")
private Map<String, Object> params;
}
42 changes: 42 additions & 0 deletions src/main/java/io/getstream/models/AppealAcceptedEvent.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
* ========================================================================
* WARNING: GENERATED CODE -- DO NOT EDIT!
* ========================================================================
*
* This file was auto-generated by GetStream internal OpenAPI
*
* Any modifications to this file will be lost upon regeneration.
* To make changes, please modify the source templates and regenerate.
*
* ========================================================================
*/
package io.getstream.models;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Date;
import java.util.Map;
import org.jetbrains.annotations.Nullable;

@lombok.Data
@lombok.Builder
@lombok.NoArgsConstructor
@lombok.AllArgsConstructor
public class AppealAcceptedEvent {

@JsonProperty("created_at")
private Date createdAt;

@JsonProperty("custom")
private Map<String, Object> custom;

@JsonProperty("type")
private String type;

@Nullable
@JsonProperty("received_at")
private Date receivedAt;

@Nullable
@JsonProperty("appeal")
private AppealItemResponse appeal;
}
42 changes: 42 additions & 0 deletions src/main/java/io/getstream/models/AppealCreatedEvent.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
* ========================================================================
* WARNING: GENERATED CODE -- DO NOT EDIT!
* ========================================================================
*
* This file was auto-generated by GetStream internal OpenAPI
*
* Any modifications to this file will be lost upon regeneration.
* To make changes, please modify the source templates and regenerate.
*
* ========================================================================
*/
package io.getstream.models;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Date;
import java.util.Map;
import org.jetbrains.annotations.Nullable;

@lombok.Data
@lombok.Builder
@lombok.NoArgsConstructor
@lombok.AllArgsConstructor
public class AppealCreatedEvent {

@JsonProperty("created_at")
private Date createdAt;

@JsonProperty("custom")
private Map<String, Object> custom;

@JsonProperty("type")
private String type;

@Nullable
@JsonProperty("received_at")
private Date receivedAt;

@Nullable
@JsonProperty("appeal")
private AppealItemResponse appeal;
}
62 changes: 62 additions & 0 deletions src/main/java/io/getstream/models/AppealItemResponse.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/*
* ========================================================================
* WARNING: GENERATED CODE -- DO NOT EDIT!
* ========================================================================
*
* This file was auto-generated by GetStream internal OpenAPI
*
* Any modifications to this file will be lost upon regeneration.
* To make changes, please modify the source templates and regenerate.
*
* ========================================================================
*/
package io.getstream.models;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Date;
import java.util.List;
import org.jetbrains.annotations.Nullable;

@lombok.Data
@lombok.Builder
@lombok.NoArgsConstructor
@lombok.AllArgsConstructor
public class AppealItemResponse {

@JsonProperty("appeal_reason")
private String appealReason;

@JsonProperty("created_at")
private Date createdAt;

@JsonProperty("entity_id")
private String entityID;

@JsonProperty("entity_type")
private String entityType;

@JsonProperty("id")
private String id;

@JsonProperty("status")
private String status;

@JsonProperty("updated_at")
private Date updatedAt;

@Nullable
@JsonProperty("decision_reason")
private String decisionReason;

@Nullable
@JsonProperty("attachments")
private List<String> attachments;

@Nullable
@JsonProperty("entity_content")
private ModerationPayload entityContent;

@Nullable
@JsonProperty("user")
private UserResponse user;
}
42 changes: 42 additions & 0 deletions src/main/java/io/getstream/models/AppealRejectedEvent.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
* ========================================================================
* WARNING: GENERATED CODE -- DO NOT EDIT!
* ========================================================================
*
* This file was auto-generated by GetStream internal OpenAPI
*
* Any modifications to this file will be lost upon regeneration.
* To make changes, please modify the source templates and regenerate.
*
* ========================================================================
*/
package io.getstream.models;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Date;
import java.util.Map;
import org.jetbrains.annotations.Nullable;

@lombok.Data
@lombok.Builder
@lombok.NoArgsConstructor
@lombok.AllArgsConstructor
public class AppealRejectedEvent {

@JsonProperty("created_at")
private Date createdAt;

@JsonProperty("custom")
private Map<String, Object> custom;

@JsonProperty("type")
private String type;

@Nullable
@JsonProperty("received_at")
private Date receivedAt;

@Nullable
@JsonProperty("appeal")
private AppealItemResponse appeal;
}
45 changes: 45 additions & 0 deletions src/main/java/io/getstream/models/AppealRequest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
* ========================================================================
* WARNING: GENERATED CODE -- DO NOT EDIT!
* ========================================================================
*
* This file was auto-generated by GetStream internal OpenAPI
*
* Any modifications to this file will be lost upon regeneration.
* To make changes, please modify the source templates and regenerate.
*
* ========================================================================
*/
package io.getstream.models;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import org.jetbrains.annotations.Nullable;

@lombok.Data
@lombok.Builder
@lombok.NoArgsConstructor
@lombok.AllArgsConstructor
public class AppealRequest {

@JsonProperty("appeal_reason")
private String appealReason;

@JsonProperty("entity_id")
private String entityID;

@JsonProperty("entity_type")
private String entityType;

@Nullable
@JsonProperty("user_id")
private String userID;

@Nullable
@JsonProperty("attachments")
private List<String> attachments;

@Nullable
@JsonProperty("user")
private UserRequest user;
}
28 changes: 28 additions & 0 deletions src/main/java/io/getstream/models/AppealResponse.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
/*
* ========================================================================
* WARNING: GENERATED CODE -- DO NOT EDIT!
* ========================================================================
*
* This file was auto-generated by GetStream internal OpenAPI
*
* Any modifications to this file will be lost upon regeneration.
* To make changes, please modify the source templates and regenerate.
*
* ========================================================================
*/
package io.getstream.models;

import com.fasterxml.jackson.annotation.JsonProperty;

@lombok.Data
@lombok.Builder
@lombok.NoArgsConstructor
@lombok.AllArgsConstructor
public class AppealResponse {

@JsonProperty("appeal_id")
private String appealID;

@JsonProperty("duration")
private String duration;
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ public class CallRecordingFailedEvent {
@JsonProperty("egress_id")
private String egressID;

@JsonProperty("recording_type")
private String recordingType;

@JsonProperty("type")
private String type;
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ public class CallRecordingReadyEvent {
@JsonProperty("egress_id")
private String egressID;

@JsonProperty("recording_type")
private String recordingType;

@JsonProperty("call_recording")
private CallRecording callRecording;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ public class CallRecordingStartedEvent {
@JsonProperty("egress_id")
private String egressID;

@JsonProperty("recording_type")
private String recordingType;

@JsonProperty("type")
private String type;
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ public class CallRecordingStoppedEvent {
@JsonProperty("egress_id")
private String egressID;

@JsonProperty("recording_type")
private String recordingType;

@JsonProperty("type")
private String type;
}
8 changes: 8 additions & 0 deletions src/main/java/io/getstream/models/CallSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ public class CallSettings {
@JsonProperty("geofencing")
private GeofenceSettings geofencing;

@Nullable
@JsonProperty("individual_recording")
private IndividualRecordSettings individualRecording;

@Nullable
@JsonProperty("ingress")
private IngressSettings ingress;
Expand All @@ -49,6 +53,10 @@ public class CallSettings {
@JsonProperty("limits")
private LimitsSettings limits;

@Nullable
@JsonProperty("raw_recording")
private RawRecordSettings rawRecording;

@Nullable
@JsonProperty("recording")
private RecordSettings recording;
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/io/getstream/models/CallSettingsRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ public class CallSettingsRequest {
@JsonProperty("geofencing")
private GeofenceSettingsRequest geofencing;

@Nullable
@JsonProperty("individual_recording")
private IndividualRecordingSettingsRequest individualRecording;

@Nullable
@JsonProperty("ingress")
private IngressSettingsRequest ingress;
Expand All @@ -49,6 +53,10 @@ public class CallSettingsRequest {
@JsonProperty("limits")
private LimitsSettingsRequest limits;

@Nullable
@JsonProperty("raw_recording")
private RawRecordingSettingsRequest rawRecording;

@Nullable
@JsonProperty("recording")
private RecordSettingsRequest recording;
Expand Down
6 changes: 6 additions & 0 deletions src/main/java/io/getstream/models/CallSettingsResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,15 @@ public class CallSettingsResponse {
@JsonProperty("geofencing")
private GeofenceSettingsResponse geofencing;

@JsonProperty("individual_recording")
private IndividualRecordingSettingsResponse individualRecording;

@JsonProperty("limits")
private LimitsSettingsResponse limits;

@JsonProperty("raw_recording")
private RawRecordingSettingsResponse rawRecording;

@JsonProperty("recording")
private RecordSettingsResponse recording;

Expand Down
Loading