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

org.schema.FinancialProduct Maven / Gradle / Ivy

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

/**
 * Schema.org/FinancialProduct
 * A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.
 *
 * @author schema.org
 * @class FinancialProduct
 * @module org.schema
 * @extends Service
 */
public class FinancialProduct extends Service {
	/**
	 * Schema.org/annualPercentageRate
	 * The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction.
	 *
	 * @property annualPercentageRate
	 * @type Number
	 */
	public Double annualPercentageRate;
	/**
	 * Schema.org/interestRate
	 * The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate.
	 *
	 * @property interestRate
	 * @type Number
	 */
	public Double interestRate;
	/**
	 * Schema.org/feesAndCommissionsSpecification
	 * Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization.
	 *
	 * @property feesAndCommissionsSpecification
	 * @type Text
	 */
	public String feesAndCommissionsSpecification;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy