org.schema.AudioObject Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/AudioObject
* An audio file.
*
* @author schema.org
* @class AudioObject
* @module org.schema
* @extends MediaObject
*/
public class AudioObject extends MediaObject {
/**
* Schema.org/transcript
* If this MediaObject is an AudioObject or VideoObject, the transcript of that object.
*
* @property transcript
* @type Text
*/
public String transcript;
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public AudioObject() {
context = "http://schema.org/";
type = "AudioObject";
}
}