Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package org.schema;
/**
* Schema.org/Movie
* A movie.
*
* @author schema.org
* @class Movie
* @module org.schema
* @extends CreativeWork
*/
public class Movie extends CreativeWork {
/**
* Schema.org/actor
* An actor, e.g. in tv, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.
*
* @property actor
* @type Person
*/
public Person actor;
/**
* Schema.org/trailer
* The trailer of a movie or tv/radio series, season, episode, etc.
*
* @property trailer
* @type VideoObject
*/
public VideoObject trailer;
/**
* Schema.org/subtitleLanguage
* Languages in which subtitles/captions are available, in [IETF BCP 47 standard format](http://tools.ietf.org/html/bcp47).
*
* @property subtitleLanguage
* @type Text
*/
public String subtitleLanguage;
/**
* Schema.org/countryOfOrigin
* The country of the principal offices of the production company or individual responsible for the movie or program.
*
* @property countryOfOrigin
* @type Country
*/
public Country countryOfOrigin;
/**
* Schema.org/musicBy
* The composer of the soundtrack.
*
* @property musicBy
* @type Person
*/
public Person musicBy;
/**
* Schema.org/directors
* A director of e.g. tv, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.
*
* @property directors
* @type Person
*/
public Person directors;
/**
* Schema.org/director
* A director of e.g. tv, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip.
*
* @property director
* @type Person
*/
public Person director;
/**
* Schema.org/productionCompany
* The production company or studio responsible for the item e.g. series, video game, episode etc.
*
* @property productionCompany
* @type Organization
*/
public Organization productionCompany;
/**
* Schema.org/duration
* The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 date format](http://en.wikipedia.org/wiki/ISO_8601).
*
* @property duration
* @type Duration
*/
public Duration duration;
/**
* Schema.org/actors
* An actor, e.g. in tv, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.
*
* @property actors
* @type Person
*/
public Person actors;
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public Movie() {
context = "http://schema.org/";
type = "Movie";
}
}