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

net.minidev.ovh.api.telephony.OvhRmaStep Maven / Gradle / Ivy

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

import java.util.Date;

/**
 * Informations related to the current RMA step status
 */
public class OvhRmaStep {
	/**
	 * The name of the RMA step
	 *
	 * canBeNull
	 */
	public OvhRmaStepNameEnum name;

	/**
	 * A brief description of the step
	 *
	 * canBeNull
	 */
	public String description;

	/**
	 * The date when this step was done
	 *
	 * canBeNull
	 */
	public Date doneDate;

	/**
	 * Additional informations about the step
	 *
	 * canBeNull
	 */
	public String infos;

	/**
	 * Status of the step
	 *
	 * canBeNull
	 */
	public OvhRmaStepStatusEnum status;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy