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

org.schema.PerformanceRole Maven / Gradle / Ivy

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

/**
 * Schema.org/PerformanceRole
 * A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.
 *
 * @author schema.org
 * @class PerformanceRole
 * @module org.schema
 * @extends Role
 */
public class PerformanceRole extends Role {
	/**
	 * Schema.org/characterName
	 * The name of a character played in some acting or performing role, i.e. in a PerformanceRole.
	 *
	 * @property characterName
	 * @type Text
	 */
	public String characterName;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy