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

org.schema.BankAccount Maven / Gradle / Ivy

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

/**
 * Schema.org/BankAccount
 * A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest.
 *
 * @author schema.org
 * @class BankAccount
 * @module org.schema
 * @extends FinancialProduct
 */
public class BankAccount extends FinancialProduct {
	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public BankAccount() {
		context = "http://schema.org/";
		type = "BankAccount";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy