How can I access the luggage information in this JSON?
<p>How do I access baggage information in this JSON? </p>
<pre class="brush:php;toolbar:false;">{
"Response": {
"Results": [
[{
"Segments": [
[{
"Baggage": "2 PC(s)"
}
]
]
}]
]
}
}</pre>
<p>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. </p>