81 lines
2.5 KiB
C#
Generated
81 lines
2.5 KiB
C#
Generated
// 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;
|
|
|
|
/// <summary>
|
|
/// Link element in Djot.
|
|
/// </summary>
|
|
public sealed record DjotLink
|
|
{
|
|
/// <summary>
|
|
/// Link URL
|
|
/// </summary>
|
|
[JsonPropertyName("url")]
|
|
public required string Url { get; init; }
|
|
|
|
/// <summary>
|
|
/// Link text content
|
|
/// </summary>
|
|
[JsonPropertyName("text")]
|
|
public required string Text { get; init; }
|
|
|
|
/// <summary>
|
|
/// Optional title
|
|
/// </summary>
|
|
[JsonPropertyName("title")]
|
|
public string? Title { get; init; } = null;
|
|
|
|
/// <summary>
|
|
/// Element attributes
|
|
/// </summary>
|
|
[JsonPropertyName("attributes")]
|
|
public string? Attributes { get; init; } = null;
|
|
|
|
|
|
/// <summary>
|
|
/// Parse a <see cref="DjotLink"/> from a JSON string.
|
|
/// </summary>
|
|
/// <exception cref="KreuzbergException">When the JSON cannot be deserialised.</exception>
|
|
public static DjotLink FromJson(string json)
|
|
{
|
|
try
|
|
{
|
|
return JsonSerializer.Deserialize<DjotLink>(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) },
|
|
};
|
|
|
|
/// <summary>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.</summary>
|
|
private static readonly JsonSerializerOptions JsonSerializationOptions = new()
|
|
{
|
|
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
|
|
Converters = { new JsonStringEnumConverter(JsonNamingPolicy.SnakeCaseLower) },
|
|
};
|
|
}
|