com.wizzdi.messaging.request.ChatCreate Maven / Gradle / Ivy
package com.wizzdi.messaging.request;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.wizzdi.flexicore.security.request.BasicCreate;
import com.wizzdi.messaging.model.ChatUser;
public class ChatCreate extends BasicCreate {
private String ownerId;
@JsonIgnore
private ChatUser owner;
public String getOwnerId() {
return ownerId;
}
public T setOwnerId(String ownerId) {
this.ownerId = ownerId;
return (T) this;
}
@JsonIgnore
public ChatUser getOwner() {
return owner;
}
public T setOwner(ChatUser owner) {
this.owner = owner;
return (T) this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy