Monorepo for Tangled
at push-pkuzytwlwptp 22 lines 743 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package tangled 4 5// schema: sh.tangled.repo.collaborator 6 7const ( 8 RepoCollaboratorNSID = "sh.tangled.repo.collaborator" 9) 10 11func init() { 12 // util.RegisterType("sh.tangled.repo.collaborator", &RepoCollaborator{}) 13} // 14// RECORDTYPE: RepoCollaborator 15type RepoCollaborator struct { 16 LexiconTypeID string `json:"$type,const=sh.tangled.repo.collaborator" cborgen:"$type,const=sh.tangled.repo.collaborator"` 17 CreatedAt string `json:"createdAt" cborgen:"createdAt"` 18 // repo: repo to add this user to 19 Repo string `json:"repo" cborgen:"repo"` 20 RepoDid *string `json:"repoDid,omitempty" cborgen:"repoDid,omitempty"` 21 Subject string `json:"subject" cborgen:"subject"` 22}