MetaResponse class

A class representing the metadata response from Weaviate.

Use this class to handle the metadata response containing information about the Weaviate server.

Annotations
  • @JsonSerializable()

Constructors

MetaResponse({required String hostname, required Map<String, dynamic> modules, required String version})
Creates a new MetaResponse instance.
MetaResponse.fromJson(Map<String, dynamic> json)
Creates a MetaResponse instance from a JSON map.
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
hostname String
The hostname of the Weaviate server.
final
modules Map<String, dynamic>
The modules installed on the Weaviate server.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
version String
The version of the Weaviate server.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts the MetaResponse instance to a JSON map.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited