As per the Java conventions, method names should start with a lowercase letter followed by lower and upper case letters and digits. Use camel case to denote new words in the method name.
As per the Java conventions, method names should start with a lowercase letter followed by lower and upper case letters and digits. Use camel case to denote new words in the method name.
As per the Java conventions, method names should start with a lowercase letter followed by lower and upper case letters and digits. Use camel case to denote new words in the method name.
As per the Java conventions, method names should start with a lowercase letter followed by lower and upper case letters and digits. Use camel case to denote new words in the method name.
As per the Java conventions, method names should start with a lowercase letter followed by lower and upper case letters and digits. Use camel case to denote new words in the method name.
Loading history...
151
return sender_type;
152
}
153
154
/**
155
* Set Message Sender_type
156
*
157
* @param sender_type
158
* @return
159
*/
160
public Message setSender_type(String sender_type) {
As per the Java conventions, method names should start with a lowercase letter followed by lower and upper case letters and digits. Use camel case to denote new words in the method name.
Loading history...
161
this.sender_type = sender_type;
162
return this;
163
}
164
165
/**
166
* Message Slug
167
*
168
* @return Slug
169
*/
170
public String getSlug() {
171
return slug;
172
}
173
174
/**
175
* Set Message Slug
176
*
177
* @param slug
178
* @return
179
*/
180
public Message setSlug(String slug) {
181
this.slug = slug;
182
return this;
183
}
184
185
public Media[] getAttachments() {
186
return attachments;
187
}
188
189
public Message setAttachments(Media[] attachments) {