org.schema.AccountingService Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/AccountingService
* Accountancy business.\n\nAs a [[LocalBusiness]] it can be described as a [[provider]] of one or more [[Service]]\(s).
*
* @author schema.org
* @class AccountingService
* @module org.schema
* @extends FinancialService
*/
public class AccountingService extends FinancialService {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public AccountingService() {
context = "http://schema.org/";
type = "AccountingService";
}
}