-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathAddExtraDataToAMessageResponse.java
More file actions
124 lines (105 loc) · 3.91 KB
/
AddExtraDataToAMessageResponse.java
File metadata and controls
124 lines (105 loc) · 3.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
* Sendbird Platform SDK
* Sendbird Platform API SDK [https://sendbird.com/docs/chat/v3/platform-api/getting-started/prepare-to-use-api](https://sendbird.com/docs/chat/v3/platform-api/getting-started/prepare-to-use-api) Contact Support: Name: Sendbird Email: [support@sendbird.com](https://mailto:support@sendbird.com)
*
* The version of the OpenAPI document: 1.0.0
* Contact: support@sendbird.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.openapitools.client.model;
import java.util.Objects;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import org.openapitools.client.model.SendbirdSortedMetaarrayInner;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.sendbird.client.JSON;
/**
* AddExtraDataToAMessageResponse
*/
@JsonPropertyOrder({
AddExtraDataToAMessageResponse.JSON_PROPERTY_SORTED_METAARRAY
})
@JsonTypeName("addExtraDataToAMessageResponse")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-07T12:17:09.099818+09:00[Asia/Seoul]")
public class AddExtraDataToAMessageResponse {
public static final String JSON_PROPERTY_SORTED_METAARRAY = "sorted_metaarray";
private List<SendbirdSortedMetaarrayInner> sortedMetaarray = null;
public AddExtraDataToAMessageResponse() {
}
public AddExtraDataToAMessageResponse sortedMetaarray(List<SendbirdSortedMetaarrayInner> sortedMetaarray) {
this.sortedMetaarray = sortedMetaarray;
return this;
}
public AddExtraDataToAMessageResponse addSortedMetaarrayItem(SendbirdSortedMetaarrayInner sortedMetaarrayItem) {
if (this.sortedMetaarray == null) {
this.sortedMetaarray = new ArrayList<>();
}
this.sortedMetaarray.add(sortedMetaarrayItem);
return this;
}
/**
* Get sortedMetaarray
* @return sortedMetaarray
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_SORTED_METAARRAY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<SendbirdSortedMetaarrayInner> getSortedMetaarray() {
return sortedMetaarray;
}
@JsonProperty(JSON_PROPERTY_SORTED_METAARRAY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSortedMetaarray(List<SendbirdSortedMetaarrayInner> sortedMetaarray) {
this.sortedMetaarray = sortedMetaarray;
}
/**
* Return true if this addExtraDataToAMessageResponse object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
AddExtraDataToAMessageResponse addExtraDataToAMessageResponse = (AddExtraDataToAMessageResponse) o;
return Objects.equals(this.sortedMetaarray, addExtraDataToAMessageResponse.sortedMetaarray);
}
@Override
public int hashCode() {
return Objects.hash(sortedMetaarray);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AddExtraDataToAMessageResponse {\n");
sb.append(" sortedMetaarray: ").append(toIndentedString(sortedMetaarray)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}