I try to Json.encodeToString using function from extended class: Child class Parent class Using And this get "{}". I think it takes properti ...
I try to Json.encodeToString using function from extended class: Child class Parent class Using And this get "{}". I think it takes properti ...
I am working with a struct that looks more or less like this: Now, I would like to have MyStruct implement serde's Serialize and Deserialize. Intui ...
I'm converting an app from .Net standard to .Net 6, but my controllers are throwing errors if I don't pass in all non-nullable fields. e.g. When I ...
The title is self-explanatory: I want to serialize an arbitrary large amount of trivially copyable non array "stuff" into a buffer (for academic reaso ...
I'm trying to store an image into a database as a BLOB. So I need to serialize and deserialize it after retrieving back from DB. Testing out serializi ...
I wanted to remove Newtonsoft from my project and start using the default System.Text.Json. Now I have a very large list of objects which I want to se ...
So I'm working on a program (one for my own amusement, as often is the case). Still nowhere near as good as I'd like to be snip long story anyways I'm ...
I am attempting to have my object execute some logic immediately after deserialization. I am using the example shown on the following Microsoft docume ...
I need to send to kafka json serialized from the following pojo: Unfortunatelly even with annotation I see that in a result json I get the followin ...
I'm trying to make backend using DRF, and I just faced a problem. models.py: Result from POSTMAN when using the option. But I want to get a res ...
I've just started to learn about serialization/deserialization and I'm a bit confused about which type is used where and when... let me explain: I ha ...
I'm trying to create a custom type in C# that can handle rdap.org responses upon JSON deserialization (for my purposes I'll be using netwonsoft). For ...
I am trying to understand the recommended way of parsing a JSON into an object, particularly from httpClient responses (but my question may also relat ...
I have two serializers for my api to bring me data about company office locations. CountryFilialsSerializer brings me the country name by a foreign ...
Using Kotlin serialization, I would like to serialize and deserialize (to JSON) a generic data class with type parameter from a sealed hierarchy. Howe ...
I am trying to serialize a simple class: when calling .ToString(), the resulting json is {} This is my test method: ...
I am currently using python grpc. My intention is to send an image to my GRPC server using the minimum payload size. My proto looks like the following ...
I'm trying to send packets from client to server over tcp stream. The client connects to the server and tries to send an image. However, the server ge ...
We need to upgrade our monolith GAE application to Python 3.7 runtime. Currently we are serializing Python 2 objects and stored in the Datastore (Goo ...
I'm using Kotlin/JVM 1.8.0 and Kotlinx Serialization 1.4.1. I need to encode a java.math.BigDecimal and java.math.BigInteger to JSON. I'm using BigD ...