forked from tangled.org/core
this repo has no description
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package tangled 4 5// schema: sh.tangled.knot.ack 6 7import ( 8 "github.com/bluesky-social/indigo/lex/util" 9) 10 11const ( 12 KnotAckNSID = "sh.tangled.knot.ack" 13) 14 15func init() { 16 util.RegisterType("sh.tangled.knot.ack", &KnotAck{}) 17} // 18// RECORDTYPE: KnotAck 19type KnotAck struct { 20 LexiconTypeID string `json:"$type,const=sh.tangled.knot.ack" cborgen:"$type,const=sh.tangled.knot.ack"` 21 // aturi: the at-uri to ack 22 Aturi string `json:"aturi" cborgen:"aturi"` 23 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 24 // host: the host of the knot that is acking this at-uri 25 Host string `json:"host" cborgen:"host"` 26 Status string `json:"status" cborgen:"status"` 27}