attributesToRetrieve property
Attributes to include in the API response. To reduce the size of your response, you can retrieve only some of the attributes. Attribute names are case-sensitive. - *
retrieves all attributes, except attributes included in the customRanking
and unretrievableAttributes
settings. - To retrieve all attributes except a specific one, prefix the attribute with a dash and combine it with the *
: [\"*\", \"-ATTRIBUTE\"]
. - The objectID
attribute is always included.
Implementation
@JsonKey(name: r'attributesToRetrieve')
final List<String>? attributesToRetrieve;