Order of fields in HttpApi

Is it possible to change the order of the fields send to client:

This object:
public class project : RemObjects.SDK.Types.ComplexType
{
public long ID { get; set; }
public string Description { get; set; }
}

Returns this JSON string:
{“Description”:“LF Project 3”,“ID”:2470}

Is it possible to put the ID field in front?

Thanks

Hello

No, this part is not configurable. After all field order should not be important for an JSON-serialized object.

Regards

ok, thanks for the update