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
93 changes: 93 additions & 0 deletions src/main/java/io/getstream/models/ModerationCallResponse.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
/*
* ========================================================================
* 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 java.util.Map;
import org.jetbrains.annotations.Nullable;

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

@JsonProperty("backstage")
private Boolean backstage;

@JsonProperty("captioning")
private Boolean captioning;

@JsonProperty("cid")
private String cid;

@JsonProperty("created_at")
private Date createdAt;

@JsonProperty("current_session_id")
private String currentSessionID;

@JsonProperty("id")
private String id;

@JsonProperty("recording")
private Boolean recording;

@JsonProperty("transcribing")
private Boolean transcribing;

@JsonProperty("translating")
private Boolean translating;

@JsonProperty("type")
private String type;

@JsonProperty("updated_at")
private Date updatedAt;

@JsonProperty("blocked_user_ids")
private List<String> blockedUserIds;

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

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

@Nullable
@JsonProperty("ended_at")
private Date endedAt;

@Nullable
@JsonProperty("join_ahead_time_seconds")
private Integer joinAheadTimeSeconds;

@Nullable
@JsonProperty("routing_number")
private String routingNumber;

@Nullable
@JsonProperty("starts_at")
private Date startsAt;

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

@Nullable
@JsonProperty("created_by")
private UserResponse createdBy;
}
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public class ReviewQueueItemResponse {

@Nullable
@JsonProperty("call")
private CallResponse call;
private ModerationCallResponse call;

@Nullable
@JsonProperty("entity_creator")
Expand Down
Loading