I'm modelling a REST service where a GET request is sent wherethe final portion of the message URL represents a Customer identifier: "https://<host>/<myservice>/12329666906070300000000"
The service responds with JSON messagewhich starts with:
{
"12329666906070300000000": {
.....
where the first key value is the Customer identifier from the original request.
Is it possible for a C# script to change the value of the key string in the response message? When I examine the C# types I can see that the learned data has been mapped to a new C# type
public Number12329666906070300000000Type Number12329666906070300000000 { get; set; }
but there is no way (That I can see) to create a new type based on Customer identifiers sent in new requests.