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

org.schema.DepositAccount Maven / Gradle / Ivy

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

/**
 * Schema.org/DepositAccount
 * A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.
 *
 * @author schema.org
 * @class DepositAccount
 * @module org.schema
 * @extends BankAccount
 */
public class DepositAccount extends BankAccount {
	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public DepositAccount() {
		context = "http://schema.org/";
		type = "DepositAccount";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy