How do I access baggage information in this JSON?
{ "Response": { "Results": [ [{ "Segments": [ [{ "Baggage": "2 PC(s)" } ] ] }] ] } }
If I execute Results.Segments.Baggage, nothing is output to the console, please tell me how to get the baggage information from this nested JSON.
According to your JSON, there is a double array in both Results and Segments.
Response.Results[0][0].Segments[0][0].Baggage