//------------------------------------------------------------------------------ // // This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. // // Changes to this file may cause incorrect behavior and will be lost when // the code is regenerated. // //------------------------------------------------------------------------------ #nullable enable namespace LukeHagar.PlexAPI.SDK.Models.Requests { using LukeHagar.PlexAPI.SDK.Utils; public class GetMediaMetaDataRequest { /// /// the id of the library item to return the children of. /// [SpeakeasyMetadata("pathParam:style=simple,explode=false,name=ratingKey")] public long RatingKey { get; set; } = default!; /// /// Include concerts data if set to true. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeConcerts")] public bool? IncludeConcerts { get; set; } /// /// Include extra content (e.g. bonus features). /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeExtras")] public bool? IncludeExtras { get; set; } /// /// Include on-deck items. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeOnDeck")] public bool? IncludeOnDeck { get; set; } /// /// Include popular leaves (episodes/chapters). /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includePopularLeaves")] public bool? IncludePopularLeaves { get; set; } /// /// Include preferences information. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includePreferences")] public bool? IncludePreferences { get; set; } /// /// Include reviews for the content. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeReviews")] public bool? IncludeReviews { get; set; } /// /// Include chapter details. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeChapters")] public bool? IncludeChapters { get; set; } /// /// Include station data. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeStations")] public bool? IncludeStations { get; set; } /// /// Include external media data. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeExternalMedia")] public bool? IncludeExternalMedia { get; set; } /// /// Trigger asynchronous metadata augmentation. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=asyncAugmentMetadata")] public bool? AsyncAugmentMetadata { get; set; } /// /// Trigger asynchronous file checking. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=asyncCheckFiles")] public bool? AsyncCheckFiles { get; set; } /// /// Trigger asynchronous refresh of analysis. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=asyncRefreshAnalysis")] public bool? AsyncRefreshAnalysis { get; set; } /// /// Trigger asynchronous refresh of the local media agent. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=asyncRefreshLocalMediaAgent")] public bool? AsyncRefreshLocalMediaAgent { get; set; } } }