Class: Google::Cloud::AIPlatform::V1::FetchFeatureValuesResponse::FeatureNameValuePairList
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::FetchFeatureValuesResponse::FeatureNameValuePairList
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/feature_online_store_service.rb
Overview
Response structure in the format of key (feature name) and (feature) value pair.
Defined Under Namespace
Classes: FeatureNameValuePair
Instance Attribute Summary collapse
-
#features ⇒ ::Array<::Google::Cloud::AIPlatform::V1::FetchFeatureValuesResponse::FeatureNameValuePairList::FeatureNameValuePair>
List of feature names and values.
Instance Attribute Details
#features ⇒ ::Array<::Google::Cloud::AIPlatform::V1::FetchFeatureValuesResponse::FeatureNameValuePairList::FeatureNameValuePair>
Returns List of feature names and values.
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
# File 'proto_docs/google/cloud/aiplatform/v1/feature_online_store_service.rb', line 89 class FeatureNameValuePairList include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Feature name & value pair. # @!attribute [rw] value # @return [::Google::Cloud::AIPlatform::V1::FeatureValue] # Feature value. # @!attribute [rw] name # @return [::String] # Feature short name. class FeatureNameValuePair include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |