DeployedIndexRef.fromJson constructor
Implementation
factory DeployedIndexRef.fromJson(Map<String, dynamic> json) {
return DeployedIndexRef(
indexEndpoint: json['indexEndpoint'] ?? '',
deployedIndexId: json['deployedIndexId'] ?? '',
displayName: json['displayName'] ?? '',
);
}