DeliveryAddressValue

  • actions.intent.DELIVERY_ADDRESS output is returned in JSON format containing userDecision and location fields.

  • userDecision reflects the user's choice about sharing their delivery address, represented by the DeliveryAddressUserDecision enum.

  • location only includes the delivery address if the user agrees to share it, structured as a Location object.

Returned to the app as output for actions.intent.DELIVERY_ADDRESS.

JSON representation
{
  "userDecision": enum (DeliveryAddressUserDecision),
  "location": {
    object (Location)
  }
}
Fields
userDecision

enum (DeliveryAddressUserDecision)

User's decision regarding the request.

location

object (Location)

Contains delivery address only when user agrees to share the delivery address.