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
3 changes: 3 additions & 0 deletions src/main/java/io/getstream/models/AIImageConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ public class AIImageConfig {
@JsonProperty("enabled")
private Boolean enabled;

@JsonProperty("ocr_rules")
private List<OCRRule> ocrRules;

@JsonProperty("rules")
private List<AWSRekognitionRule> rules;

Expand Down
50 changes: 50 additions & 0 deletions src/main/java/io/getstream/models/AsyncExportChannelsEvent.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* ========================================================================
* 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 AsyncExportChannelsEvent {

@JsonProperty("created_at")
private Date createdAt;

@JsonProperty("finished_at")
private Date finishedAt;

@JsonProperty("started_at")
private Date startedAt;

@JsonProperty("task_id")
private String taskID;

@JsonProperty("url")
private String url;

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

@JsonProperty("type")
private String type;

@Nullable
@JsonProperty("received_at")
private Date receivedAt;
}
50 changes: 50 additions & 0 deletions src/main/java/io/getstream/models/AsyncExportErrorEvent.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* ========================================================================
* 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 AsyncExportErrorEvent {

@JsonProperty("created_at")
private Date createdAt;

@JsonProperty("error")
private String error;

@JsonProperty("finished_at")
private Date finishedAt;

@JsonProperty("started_at")
private Date startedAt;

@JsonProperty("task_id")
private String taskID;

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

@JsonProperty("type")
private String type;

@Nullable
@JsonProperty("received_at")
private Date receivedAt;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* ========================================================================
* 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 AsyncExportModerationLogsEvent {

@JsonProperty("created_at")
private Date createdAt;

@JsonProperty("finished_at")
private Date finishedAt;

@JsonProperty("started_at")
private Date startedAt;

@JsonProperty("task_id")
private String taskID;

@JsonProperty("url")
private String url;

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

@JsonProperty("type")
private String type;

@Nullable
@JsonProperty("received_at")
private Date receivedAt;
}
50 changes: 50 additions & 0 deletions src/main/java/io/getstream/models/AsyncExportUsersEvent.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* ========================================================================
* 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 AsyncExportUsersEvent {

@JsonProperty("created_at")
private Date createdAt;

@JsonProperty("finished_at")
private Date finishedAt;

@JsonProperty("started_at")
private Date startedAt;

@JsonProperty("task_id")
private String taskID;

@JsonProperty("url")
private String url;

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

@JsonProperty("type")
private String type;

@Nullable
@JsonProperty("received_at")
private Date receivedAt;
}
3 changes: 3 additions & 0 deletions src/main/java/io/getstream/models/CallRecording.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ public class CallRecording {
@JsonProperty("filename")
private String filename;

@JsonProperty("session_id")
private String sessionID;

@JsonProperty("start_time")
private Date startTime;

Expand Down
4 changes: 4 additions & 0 deletions src/main/java/io/getstream/models/CallRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
@lombok.AllArgsConstructor
public class CallRequest {

@Nullable
@JsonProperty("channel_cid")
private String channelCid;

@Nullable
@JsonProperty("created_by_id")
private String createdByID;
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/io/getstream/models/CallResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ public class CallResponse {
@JsonProperty("settings")
private CallSettingsResponse settings;

@Nullable
@JsonProperty("channel_cid")
private String channelCid;

@Nullable
@JsonProperty("ended_at")
private Date endedAt;
Expand Down
35 changes: 35 additions & 0 deletions src/main/java/io/getstream/models/CallStatsReportReadyEvent.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* ========================================================================
* 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;

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

@JsonProperty("call_cid")
private String callCid;

@JsonProperty("created_at")
private Date createdAt;

@JsonProperty("session_id")
private String sessionID;

@JsonProperty("type")
private String type;
}
3 changes: 3 additions & 0 deletions src/main/java/io/getstream/models/CallType.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ public class CallType {
@JsonProperty("CreatedAt")
private Date createdAt;

@JsonProperty("EnableLiveInsights")
private Boolean enableLiveInsights;

@JsonProperty("ExternalStorage")
private String externalStorage;

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
/*
* ========================================================================
* 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 CallUserFeedbackSubmittedEvent {

@JsonProperty("call_cid")
private String callCid;

@JsonProperty("created_at")
private Date createdAt;

@JsonProperty("rating")
private Integer rating;

@JsonProperty("session_id")
private String sessionID;

@JsonProperty("user")
private UserResponse user;

@JsonProperty("type")
private String type;

@Nullable
@JsonProperty("reason")
private String reason;

@Nullable
@JsonProperty("sdk")
private String sdk;

@Nullable
@JsonProperty("sdk_version")
private String sdkVersion;

@Nullable
@JsonProperty("custom")
private Map<String, Object> custom;
}
3 changes: 3 additions & 0 deletions src/main/java/io/getstream/models/CampaignResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ public class CampaignResponse {
@JsonProperty("sender_mode")
private String senderMode;

@JsonProperty("show_channels")
private Boolean showChannels;

@JsonProperty("skip_push")
private Boolean skipPush;

Expand Down
6 changes: 6 additions & 0 deletions src/main/java/io/getstream/models/CampaignStatsResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,10 @@ public class CampaignStatsResponse {

@JsonProperty("stats_started_at")
private Date statsStartedAt;

@JsonProperty("stats_users_read")
private Integer statsUsersRead;

@JsonProperty("stats_users_sent")
private Integer statsUsersSent;
}
4 changes: 4 additions & 0 deletions src/main/java/io/getstream/models/Channel.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ public class Channel {
@JsonProperty("deleted_at")
private Date deletedAt;

@Nullable
@JsonProperty("last_campaigns")
private String lastCampaigns;

@Nullable
@JsonProperty("last_message_at")
private Date lastMessageAt;
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/io/getstream/models/ChannelStateResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ public class ChannelStateResponse {
@JsonProperty("channel")
private ChannelResponse channel;

@Nullable
@JsonProperty("draft")
private DraftResponse draft;

@Nullable
@JsonProperty("membership")
private ChannelMember membership;
Expand Down
Loading