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

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

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

import java.util.Date;

/**
 * Call which are repayable
 */
public class OvhRepaymentConsumption {
	/**
	 * Duration of the call
	 *
	 * canBeNull && readOnly
	 */
	public Long duration;

	/**
	 * Called number of the call
	 *
	 * canBeNull && readOnly
	 */
	public String called;

	/**
	 * canBeNull && readOnly
	 */
	public Long consumptionId;

	/**
	 * canBeNull && readOnly
	 */
	public String dialed;

	/**
	 * Price repayed with the call
	 *
	 * canBeNull && readOnly
	 */
	public Double price;

	/**
	 * Calling number of the call
	 *
	 * canBeNull && readOnly
	 */
	public String calling;

	/**
	 * Is the call repayable right now
	 *
	 * canBeNull && readOnly
	 */
	public Boolean repayable;

	/**
	 * Calling number's operator
	 *
	 * canBeNull && readOnly
	 */
	public String operator;

	/**
	 * the Datetime of the start of the call
	 *
	 * canBeNull && readOnly
	 */
	public Date creationDatetime;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy