//------------------------------------------------------------------------------ // // This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. // // Changes to this file may cause incorrect behavior and will be lost when // the code is regenerated. // //------------------------------------------------------------------------------ #nullable enable namespace PlexAPI.Models.Requests { using PlexAPI.Utils; public class GetGlobalHubsRequest { /// /// The number of items to return with each hub. /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=count")] public double? Count { get; set; } /// /// Only return hubs which are "transient", meaning those which are prone to changing after media playback or addition (e.g. On Deck, or Recently Added). /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=onlyTransient")] public OnlyTransient? OnlyTransient { get; set; } } }