//------------------------------------------------------------------------------ // // 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.Utils { using System; using System.Globalization; using System.Numerics; using Newtonsoft.Json; internal class BigIntSerializer : JsonConverter { public override bool CanConvert(Type objectType) => objectType == typeof(BigInteger); public override bool CanRead => true; public override object? ReadJson( JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer ) { if (reader.Value == null) { return null; } return BigInteger.Parse(reader.Value.ToString()!); } public override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer) { if (value == null) { writer.WriteValue("null"); return; } writer.WriteValue(((BigInteger)value).ToString(CultureInfo.InvariantCulture)); } } }