Current section
Files
Jump to
Current section
Files
lib/weaviate_structs/batch_params.ex
defmodule WeaviateStructs.BatchParams do
defstruct [
:consistency_level
]
def from_json(%{
"consistency_level" => consistency_level
}) do
%__MODULE__{
consistency_level: consistency_level
}
end
end