namespace StellaOps.Attestor.Envelope; public sealed class DsseEnvelopeSerializationOptions { public bool EmitCompactJson { get; init; } = true; public bool EmitExpandedJson { get; init; } = true; public bool IndentExpandedJson { get; init; } = true; public bool IncludePayloadPreview { get; init; } = true; public DsseCompressionAlgorithm CompressionAlgorithm { get; init; } = DsseCompressionAlgorithm.None; }