You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Some parameter documentations has been truncated, see
93
+
# {BrandDev::Models::BrandAIQueryParams::DataToExtract} for more details.
94
+
#
77
95
# @param datapoint_description [String] Description of what to extract
78
96
#
79
97
# @param datapoint_example [String] Example of the expected value
80
98
#
81
99
# @param datapoint_name [String] Name of the data point to extract
82
100
#
83
101
# @param datapoint_type [Symbol, BrandDev::Models::BrandAIQueryParams::DataToExtract::DatapointType] Type of the data point
102
+
#
103
+
# @param datapoint_list_type [Symbol, BrandDev::Models::BrandAIQueryParams::DataToExtract::DatapointListType] Type of items in the list when datapoint_type is 'list'. Defaults to 'string'. U
104
+
#
105
+
# @param datapoint_object_schema [Hash{Symbol=>Symbol, BrandDev::Models::BrandAIQueryParams::DataToExtract::DatapointObjectSchema}] Schema definition for objects when datapoint_list_type is 'object'. Provide a ma
84
106
85
107
# Type of the data point
86
108
#
@@ -98,6 +120,38 @@ module DatapointType
98
120
# @!method self.values
99
121
# @return [Array<Symbol>]
100
122
end
123
+
124
+
# Type of items in the list when datapoint_type is 'list'. Defaults to 'string'.
125
+
# Use 'object' to extract an array of objects matching a schema.
# Some parameter documentations has been truncated, see
58
+
# {BrandDev::Models::BrandAIQueryResponse::DataExtracted} for more details.
59
+
#
56
60
# @param datapoint_name [String] Name of the extracted data point
57
61
#
58
-
# @param datapoint_value [String, Float, Boolean, Array<String>, Array<Float>] Value of the extracted data point
62
+
# @param datapoint_value [String, Float, Boolean, Array<String>, Array<Float>, Array<Object>] Value of the extracted data point. Can be a primitive type, an array of primitiv
59
63
60
-
# Value of the extracted data point
64
+
# Value of the extracted data point. Can be a primitive type, an array of
65
+
# primitives, or an array of objects when datapoint_list_type is 'object'.
0 commit comments