mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 12:37:46 +00:00
42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// 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.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
#nullable enable
|
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
{
|
|
using LukeHagar.PlexAPI.SDK.Utils;
|
|
using Newtonsoft.Json;
|
|
|
|
public class Account
|
|
{
|
|
|
|
[JsonProperty("id")]
|
|
public int? Id { get; set; }
|
|
|
|
[JsonProperty("key")]
|
|
public string? Key { get; set; }
|
|
|
|
[JsonProperty("name")]
|
|
public string? Name { get; set; }
|
|
|
|
[JsonProperty("defaultAudioLanguage")]
|
|
public string? DefaultAudioLanguage { get; set; }
|
|
|
|
[JsonProperty("autoSelectAudio")]
|
|
public bool? AutoSelectAudio { get; set; }
|
|
|
|
[JsonProperty("defaultSubtitleLanguage")]
|
|
public string? DefaultSubtitleLanguage { get; set; }
|
|
|
|
[JsonProperty("subtitleMode")]
|
|
public int? SubtitleMode { get; set; }
|
|
|
|
[JsonProperty("thumb")]
|
|
public string? Thumb { get; set; }
|
|
}
|
|
} |