// 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;
///
/// Single Excel worksheet.
///
/// Represents one sheet from an Excel workbook with its content
/// converted to Markdown format and dimensional statistics.
///
public sealed record ExcelSheet
{
///
/// Sheet name as it appears in Excel
///
[JsonPropertyName("name")]
public required string Name { get; init; }
///
/// Sheet content converted to Markdown tables
///
[JsonPropertyName("markdown")]
public required string Markdown { get; init; }
///
/// Number of rows
///
[JsonPropertyName("row_count")]
public ulong RowCount { get; init; } = 0;
///
/// Number of columns
///
[JsonPropertyName("col_count")]
public ulong ColCount { get; init; } = 0;
///
/// Total number of non-empty cells
///
[JsonPropertyName("cell_count")]
public ulong CellCount { get; init; } = 0;
///
/// Pre-extracted table cells (2D vector of cell values)
/// Populated during markdown generation to avoid re-parsing markdown.
/// null for empty sheets.
///
[JsonPropertyName("table_cells")]
public List>? TableCells { get; init; } = null;
///
/// Parse a from a JSON string.
///
/// When the JSON cannot be deserialised.
public static ExcelSheet FromJson(string json)
{
try
{
return JsonSerializer.Deserialize(json, JsonOptions)
?? throw new KreuzbergException($"Failed to parse ExcelSheet from JSON: deserializer returned null");
}
catch (KreuzbergException)
{
throw;
}
catch (Exception e)
{
throw new KreuzbergException($"Failed to parse ExcelSheet 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) },
};
}