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

org.schema.InvestmentOrDeposit Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.schema;

/**
 * Schema.org/InvestmentOrDeposit
 * A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return.
 *
 * @author schema.org
 * @class InvestmentOrDeposit
 * @module org.schema
 * @extends FinancialProduct
 */
public class InvestmentOrDeposit extends FinancialProduct {
	/**
	 * Schema.org/amount
	 * The amount of money.
	 *
	 * @property amount
	 * @type Number
	 */
	public Double amount;

	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public InvestmentOrDeposit() {
		context = "http://schema.org/";
		type = "InvestmentOrDeposit";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy