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

org.schema.BusinessAudience Maven / Gradle / Ivy

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

/**
 * Schema.org/BusinessAudience
 * A set of characteristics belonging to businesses, e.g. who compose an item's target audience.
 *
 * @author schema.org
 * @class BusinessAudience
 * @module org.schema
 * @extends Audience
 */
public class BusinessAudience extends Audience {
	/**
	 * Schema.org/yearsInOperation
	 * The age of the business.
	 *
	 * @property yearsInOperation
	 * @type QuantitativeValue
	 */
	public QuantitativeValue yearsInOperation;
	/**
	 * Schema.org/yearlyRevenue
	 * The size of the business in annual revenue.
	 *
	 * @property yearlyRevenue
	 * @type QuantitativeValue
	 */
	public QuantitativeValue yearlyRevenue;
	/**
	 * Schema.org/numberOfEmployees
	 * The number of employees in an organization e.g. business.
	 *
	 * @property numberOfEmployees
	 * @type QuantitativeValue
	 */
	public QuantitativeValue numberOfEmployees;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy