org.schema.TieAction Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/TieAction
* The act of reaching a draw in a competitive activity.
*
* @author schema.org
* @class TieAction
* @module org.schema
* @extends AchieveAction
*/
public class TieAction extends AchieveAction {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public TieAction() {
context = "http://schema.org/";
type = "TieAction";
}
}