// 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; /// /// Link element in Djot. /// public sealed record DjotLink { /// /// Link URL /// [JsonPropertyName("url")] public required string Url { get; init; } /// /// Link text content /// [JsonPropertyName("text")] public required string Text { get; init; } /// /// Optional title /// [JsonPropertyName("title")] public string? Title { get; init; } = null; /// /// Element attributes /// [JsonPropertyName("attributes")] public string? Attributes { get; init; } = null; /// /// Parse a from a JSON string. /// /// When the JSON cannot be deserialised. public static DjotLink FromJson(string json) { try { return JsonSerializer.Deserialize(json, JsonOptions) ?? throw new KreuzbergException($"Failed to parse DjotLink from JSON: deserializer returned null"); } catch (KreuzbergException) { throw; } catch (Exception e) { throw new KreuzbergException($"Failed to parse DjotLink 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) }, }; }