toJsonForProtocol method
Returns a JSON structure of the model, optimized for Protocol communication.
Implementation
@override
Map<String, dynamic> toJsonForProtocol() {
return {
'indexName': indexName,
if (tableSpace != null) 'tableSpace': tableSpace,
'elements': elements.toJson(valueToJson: (v) => v.toJsonForProtocol()),
'type': type,
'isUnique': isUnique,
'isPrimary': isPrimary,
if (predicate != null) 'predicate': predicate,
if (vectorDistanceFunction != null)
'vectorDistanceFunction': vectorDistanceFunction?.toJson(),
if (parameters != null) 'parameters': parameters?.toJson(),
};
}