What are the meanings of the order fields?

the request path ——> GET /api/v3/allOrders

response:
{
“symbol”: “LTCBTC”,
“orderId”: 1,
“orderListId”: -1, //Unless OCO, the value will always be -1
“clientOrderId”: “myOrder1”,
“price”: “0.1”,
“origQty”: “1.0”,
“executedQty”: “0.0”,
“cummulativeQuoteQty”: “0.0”,
“status”: “NEW”,
“timeInForce”: “GTC”,
“type”: “LIMIT”,
“side”: “BUY”,
“stopPrice”: “0.0”,
“icebergQty”: “0.0”,
“time”: 1499827319559,
“updateTime”: 1499827319559,
“isWorking”: true,
“origQuoteOrderQty”: “0.000000”
}
What are the meanings of the order fields?

===>

**origQuoteOrderQty **
executedQty
isWorking
cummulativeQuoteQty
price
stopPrice
origQty
orderListId
icebergQty

I am a little confused : (

like symbol ETH/USDT ,
I what to know that ,when I buy ETH and the order filled , how many ETH I get,should I see which field?
And
,when I sell ETH and the order filled , how many USDT I get,should I see which field?

Please refer to this topic 查询订单返回的JSON数据中一些字段的意义是?

translation?