DataSubjectExport
AgentPrism.Abstractions.dllA data subject’s exported content.
public sealed record DataSubjectExport : IEquatable<DataSubjectExport>Inheritance
Section titled “Inheritance”Implements
Section titled “Implements”Inherited Members
Section titled “Inherited Members”object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
Section titled “Constructors”DataSubjectExport()
Section titled “ DataSubjectExport()”public DataSubjectExport()Properties
Section titled “Properties”Gets the exported content, as a single JSON document (UTF-8 text). Object
keys are the target table names (sessions, runs, and so on),
each holding the array of that target’s matching rows exactly as stored.
public required string Json { get; init; }Property Value
Section titled “Property Value”Remarks
Section titled “Remarks”Attachment file bytes are not included — only their metadata (name, media type, size, hash) is. A byte payload can be large and belongs in a different export shape (a zip of files) than a JSON document; that is a separate, unscheduled work item.
Methods
Section titled “Methods”Equals(object?)
Section titled “ Equals(object?)”public override bool Equals(object? obj)Parameters
Section titled “Parameters”obj object?
Returns
Section titled “Returns”Equals(DataSubjectExport?)
Section titled “ Equals(DataSubjectExport?)”public bool Equals(DataSubjectExport? other)Parameters
Section titled “Parameters”other DataSubjectExport?
Returns
Section titled “Returns”GetHashCode()
Section titled “ GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”ToString()
Section titled “ ToString()”public override string ToString()Returns
Section titled “Returns”Operators
Section titled “Operators”operator ==(DataSubjectExport?, DataSubjectExport?)
Section titled “ operator ==(DataSubjectExport?, DataSubjectExport?)”public static bool operator ==(DataSubjectExport? left, DataSubjectExport? right)Parameters
Section titled “Parameters”left DataSubjectExport?
right DataSubjectExport?
Returns
Section titled “Returns”operator !=(DataSubjectExport?, DataSubjectExport?)
Section titled “ operator !=(DataSubjectExport?, DataSubjectExport?)”public static bool operator !=(DataSubjectExport? left, DataSubjectExport? right)Parameters
Section titled “Parameters”left DataSubjectExport?
right DataSubjectExport?