Release

Create a new user

Release Interface describing the release object.

interface Release {
	id: number
	type: 
	year: number
	name: 
	alias: string
	season: 
	poster: 
	fresh_at: string
	created_at: string
	updated_at: string
	is_ongoing: boolean
	age_rating: 
	publish_day: 
	description: string
	notification: string
	episodes_total: number
	external_player: string
	is_in_production: boolean
	is_blocked_by_geo: boolean
	episodes_are_unknown: boolean
	is_blocked_by_copyrights: boolean
	average_duration_of_episode: number
	genres: []
	episodes: []
}

Last updated