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

net.minidev.ovh.api.service.OvhRenew Maven / Gradle / Ivy

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

import net.minidev.ovh.api.service.renew.OvhInterval;
import net.minidev.ovh.api.service.renew.OvhMode;

/**
 * Renew information
 */
public class OvhRenew {
	/**
	 * Renewal mode
	 *
	 * canBeNull
	 */
	public OvhMode mode;

	/**
	 * Renew day number
	 *
	 * canBeNull
	 */
	public Long dayOfMonth;

	/**
	 * Possible interval between each renewal
	 *
	 * canBeNull
	 */
	public OvhInterval[] possibleIntervals;

	/**
	 * Interval between each renewal
	 *
	 * canBeNull
	 */
	public OvhInterval interval;

	/**
	 * Possible renewal mode
	 *
	 * canBeNull
	 */
	public OvhMode[] possibleModes;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy