TransactionDecisionValue

actions.intent.TRANSACTION_DECISION के लिए आउटपुट के रूप में कार्रवाई पर वापस भेजा गया.

JSON के काेड में दिखाना
{
  "transactionDecision": enum (TransactionDecision),

  // Union field value can be only one of the following:
  "order": {
    object (Order)
  },
  "deliveryAddress": {
    object (Location)
  }
  // End of list of possible types for union field value.
}
फ़ील्ड
transactionDecision

enum (TransactionDecision)

आदेश के बारे में फ़ैसला.

यूनियन फ़ील्ड value.

value इनमें से सिर्फ़ एक हो सकता है:

order

object (Order)

वह आदेश जिसे उपयोगकर्ता ने स्वीकार किया है. transactionDecision के ORDER_ACCEPTED होने पर ही यह फ़ील्ड दिखेगा.

deliveryAddress

object (Location)

अगर उपयोगकर्ता डिलीवरी का पता अपडेट करने का अनुरोध करता है, तो इस फ़ील्ड में डिलीवरी का नया पता शामिल होता है. transactionDecision के DELIVERY_ADDRESS_UPDATED होने पर ही यह फ़ील्ड दिखेगा.