public CategoriesList() { records = new RecordsList("categories"); Page = new List <Category>(); }
public CategoriesList(Client client) { records = new RecordsList("categories", client); Page = new List <Category>(); }
public VideosList() { records = new RecordsList("videos"); Page = new List <Video>(); }
public VideosList(Client client) { records = new RecordsList("videos", client); Page = new List <Video>(); }
public RecipesList () { records = new RecordsList ("ingest_recipes"); Page = new List<Recipe>(); }
public RecipesList (Client client) { records = new RecordsList ("ingest_recipes", client); Page = new List<Recipe>(); }
internal SubtitlesList (long videoId, Client client) { records = new RecordsList ("videos/" + videoId.ToString() + "/subtitles", client); Page = new List<Subtitle>(); }
public PresetsList(Client client) { records = new RecordsList("encoding_presets", client); Page = new List <Preset>(); }
public PresetsList() { records = new RecordsList("encoding_presets"); Page = new List <Preset>(); }
public PlaylistsList (Client client) { records = new RecordsList ("feeds/playlists", client); Page = new List<Playlist>(); }
public PlaylistsList () { records = new RecordsList ("feeds/playlists"); Page = new List<Playlist>(); }