//------------------------------------------------------------------------------ // // 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 PlexAPI.Models.Requests { using PlexAPI.Models.Requests; using PlexAPI.Utils; public class GetResourcesRequest { /// /// The unique identifier for the client application
/// /// /// This is used to track the client application and its usage
/// (UUID, serial number, or other number unique per device)
/// ///
///
[SpeakeasyMetadata("header:style=simple,explode=false,name=X-Plex-Client-Identifier")] public string? XPlexClientIdentifier { get; set; } /// /// Include Https entries in the results /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeHttps")] public IncludeHttps? IncludeHttps { get; set; } /// /// Include Relay addresses in the results /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeRelay")] public IncludeRelay? IncludeRelay { get; set; } /// /// Include IPv6 entries in the results /// [SpeakeasyMetadata("queryParam:style=form,explode=true,name=includeIPv6")] public IncludeIPv6? IncludeIPv6 { get; set; } } }