// 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;
///
/// Individual grid cell with position and span metadata.
///
public sealed record GridCell
{
///
/// Cell text content.
///
[JsonPropertyName("content")]
public required string Content { get; init; }
///
/// Zero-indexed row position.
///
[JsonPropertyName("row")]
public uint Row { get; init; } = 0;
///
/// Zero-indexed column position.
///
[JsonPropertyName("col")]
public uint Col { get; init; } = 0;
///
/// Number of rows this cell spans.
///
[JsonPropertyName("row_span")]
public uint RowSpan { get; init; } = 0;
///
/// Number of columns this cell spans.
///
[JsonPropertyName("col_span")]
public uint ColSpan { get; init; } = 0;
///
/// Whether this is a header cell.
///
[JsonPropertyName("is_header")]
public bool IsHeader { get; init; } = false;
///
/// Bounding box for this cell (if available).
///
[JsonPropertyName("bbox")]
public BoundingBox? Bbox { get; init; } = null;
///
/// Parse a from a JSON string.
///
/// When the JSON cannot be deserialised.
public static GridCell FromJson(string json)
{
try
{
return JsonSerializer.Deserialize(json, JsonOptions)
?? throw new KreuzbergException($"Failed to parse GridCell from JSON: deserializer returned null");
}
catch (KreuzbergException)
{
throw;
}
catch (Exception e)
{
throw new KreuzbergException($"Failed to parse GridCell 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) },
};
}