FetchFeatureValuesResponse

Response message for FeatureOnlineStoreService.FetchFeatureValues

JSON representation
{
  "dataKey": {
    object (FeatureViewDataKey)
  },

  // Union field format can be only one of the following:
  "keyValues": {
    object (FeatureNameValuePairList)
  },
  "protoStruct": {
    object
  }
  // End of list of possible types for union field format.
}
Fields
dataKey

object (FeatureViewDataKey)

The data key associated with this response. Will only be populated for FeatureOnlineStoreService.StreamingFetchFeatureValues RPCs.

Union field format.

format can be only one of the following:

keyValues

object (FeatureNameValuePairList)

feature values in keyvalue format.

protoStruct

object (Struct format)

feature values in proto Struct format.

FeatureNameValuePairList

Response structure in the format of key (feature name) and (feature) value pair.

JSON representation
{
  "features": [
    {
      object (FeatureNameValuePair)
    }
  ]
}
Fields
features[]

object (FeatureNameValuePair)

List of feature names and values.

FeatureNameValuePair

feature name & value pair.

JSON representation
{
  "name": string,

  // Union field data can be only one of the following:
  "value": {
    object (FeatureValue)
  }
  // End of list of possible types for union field data.
}
Fields
name

string

feature short name.

Union field data.

data can be only one of the following:

value

object (FeatureValue)

feature value.