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

net.minidev.ovh.api.status.reply.OvhReply Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
package net.minidev.ovh.api.status.reply;

import java.util.Date;

/**
 * A reply is useful to know the progress of a task
 */
public class OvhReply {
	/**
	 * The date of the reply
	 *
	 * canBeNull && readOnly
	 */
	public Date date;

	/**
	 * The comment of the reply
	 *
	 * canBeNull && readOnly
	 */
	public String comment;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy