How to get cookies from response?

Hi,

I want to access cookies from response which are displayed under Cookies tab of Postman. Please find the attached screenshot for reference.

I can access the “Set-Cookie” displayed under Headers with below code:-
response = WS.sendRequest(findTestObject(‘GET_Test’))
headerFields = response.getHeaderFields()
println(headerFields[“Set-Cookie”])

Can someone tell me how to access values displayed under Cookies tab?