// This file is auto-generated by alef — DO NOT EDIT.
// alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75
// To regenerate: alef generate
// To verify freshness: alef verify --exit-code
// Issues & docs: https://github.com/kreuzberg-dev/alef
#nullable enable
using System;
using System.Collections.Generic;
using System.Text.Json;
using System.Text.Json.Serialization;
namespace Kreuzberg;
///
/// Inline element within a block.
///
/// Represents text with formatting, links, images, etc.
///
public sealed record InlineElement
{
///
/// Type of inline element
///
[JsonPropertyName("element_type")]
public required InlineType ElementType { get; init; }
///
/// Text content
///
[JsonPropertyName("content")]
public required string Content { get; init; }
///
/// Element attributes
///
[JsonPropertyName("attributes")]
public string? Attributes { get; init; } = null;
///
/// Additional metadata (e.g., href for links, src/alt for images)
///
[JsonPropertyName("metadata")]
public Dictionary? Metadata { get; init; } = null;
///
/// Parse a from a JSON string.
///
/// When the JSON cannot be deserialised.
public static InlineElement FromJson(string json)
{
try
{
return JsonSerializer.Deserialize(json, JsonOptions)
?? throw new KreuzbergException($"Failed to parse InlineElement from JSON: deserializer returned null");
}
catch (KreuzbergException)
{
throw;
}
catch (Exception e)
{
throw new KreuzbergException($"Failed to parse InlineElement from JSON: {e.Message}", e);
}
}
private static readonly JsonSerializerOptions JsonOptions = new()
{
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingDefault,
Converters = { new JsonStringEnumConverter(JsonNamingPolicy.SnakeCaseLower) },
};
/// Options for serializing config/input objects to FFI. Strips nulls
/// (nullable C# fields default to null and would override required Rust fields with
/// non-deserialisable nulls) but preserves explicit false/0 so caller intent is kept.
private static readonly JsonSerializerOptions JsonSerializationOptions = new()
{
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
Converters = { new JsonStringEnumConverter(JsonNamingPolicy.SnakeCaseLower) },
};
}