-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathBlockAUserResponse.java
More file actions
156 lines (130 loc) · 4.12 KB
/
BlockAUserResponse.java
File metadata and controls
156 lines (130 loc) · 4.12 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
* 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.SendbirdUser;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.sendbird.client.JSON;
/**
* BlockAUserResponse
*/
@JsonPropertyOrder({
BlockAUserResponse.JSON_PROPERTY_USERS,
BlockAUserResponse.JSON_PROPERTY_NEXT
})
@JsonTypeName("blockAUserResponse")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-01-07T12:17:09.099818+09:00[Asia/Seoul]")
public class BlockAUserResponse {
public static final String JSON_PROPERTY_USERS = "users";
private List<SendbirdUser> users = null;
public static final String JSON_PROPERTY_NEXT = "next";
private String next;
public BlockAUserResponse() {
}
public BlockAUserResponse users(List<SendbirdUser> users) {
this.users = users;
return this;
}
public BlockAUserResponse addUsersItem(SendbirdUser usersItem) {
if (this.users == null) {
this.users = new ArrayList<>();
}
this.users.add(usersItem);
return this;
}
/**
* Get users
* @return users
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_USERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public List<SendbirdUser> getUsers() {
return users;
}
@JsonProperty(JSON_PROPERTY_USERS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUsers(List<SendbirdUser> users) {
this.users = users;
}
public BlockAUserResponse next(String next) {
this.next = next;
return this;
}
/**
* Get next
* @return next
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_NEXT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getNext() {
return next;
}
@JsonProperty(JSON_PROPERTY_NEXT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setNext(String next) {
this.next = next;
}
/**
* Return true if this blockAUserResponse object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BlockAUserResponse blockAUserResponse = (BlockAUserResponse) o;
return Objects.equals(this.users, blockAUserResponse.users) &&
Objects.equals(this.next, blockAUserResponse.next);
}
@Override
public int hashCode() {
return Objects.hash(users, next);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BlockAUserResponse {\n");
sb.append(" users: ").append(toIndentedString(users)).append("\n");
sb.append(" next: ").append(toIndentedString(next)).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 ");
}
}