All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wizzdi.messaging.request.MessageReceiverDeviceUpdate Maven / Gradle / Ivy

There is a newer version: 8.0.3
Show newest version
package com.wizzdi.messaging.request;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.wizzdi.messaging.model.MessageReceiverDevice;

public class MessageReceiverDeviceUpdate extends MessageReceiverDeviceCreate {

	private String id;
	@JsonIgnore
	private MessageReceiverDevice messageReceiverDevice;

	public String getId() {
		return id;
	}

	public  T setId(String id) {
		this.id = id;
		return (T) this;
	}

	@JsonIgnore
	public MessageReceiverDevice getMessageReceiverDevice() {
		return messageReceiverDevice;
	}

	public  T setMessageReceiverDevice(MessageReceiverDevice messageReceiverDevice) {
		this.messageReceiverDevice = messageReceiverDevice;
		return (T) this;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy