Table of Contents

Class TombstoneObjectEntity

Namespace
ActivityPub.Types.AS.Extended.Object
Assembly
ActivityPub.Types.dll

A Tombstone represents a content object that has been deleted. It can be used in Collections to signify that there used to be an object at this position, but it has been deleted.

public sealed class TombstoneObjectEntity : ASEntity<TombstoneObject, TombstoneObjectEntity>
Inheritance
TombstoneObjectEntity
Inherited Members

Properties

Deleted

On a Tombstone object, the deleted property is a timestamp for when the object was deleted.

[JsonPropertyName("deleted")]
public DateTime? Deleted { get; set; }

Property Value

DateTime?
See Also

FormerType

On a Tombstone object, the formerType property identifies the type of the object that was deleted.

[JsonPropertyName("formerType")]
public string? FormerType { get; set; }

Property Value

string
See Also