DeleteVectorStoreResponse.fromJson constructor
Creates a DeleteVectorStoreResponse from JSON.
Implementation
factory DeleteVectorStoreResponse.fromJson(Map<String, dynamic> json) {
return DeleteVectorStoreResponse(
id: json['id'] as String,
object: json['object'] as String,
deleted: json['deleted'] as bool,
);
}