|
| 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 | +} |
0 commit comments