Threadgate

data class Threadgate(    val post: AtUri,     val allow: List<ThreadgateAllowUnion> = emptyList(),     val createdAt: Timestamp,     val hiddenReplies: List<AtUri> = emptyList())

Parameters

post

Reference (AT-URI) to the post record.

allow

List of rules defining who can reply to this post. If value is an empty array, no one can reply. If value is undefined, anyone can reply.

hiddenReplies

List of hidden reply URIs.

Constructors

Link copied to clipboard
constructor(post: AtUri, allow: List<ThreadgateAllowUnion> = emptyList(), createdAt: Timestamp, hiddenReplies: List<AtUri> = emptyList())

Properties

Link copied to clipboard

List of rules defining who can reply to this post. If value is an empty array, no one can reply. If value is undefined, anyone can reply.

Link copied to clipboard
Link copied to clipboard

List of hidden reply URIs.

Link copied to clipboard
val post: AtUri

Reference (AT-URI) to the post record.