how do i return fields in java that are written by class?

You can use [JsonProperty] in this way:

using Newtonsoft.Json;
...

[JsonProperty("uvBa")]
public string UVBa { get; set; }

Reference here

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top