[WIP] music platform user data scraper
teal-fm atproto
at main 823 B view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package teal 4 5// schema: fm.teal.alpha.actor.status 6 7import ( 8 "github.com/bluesky-social/indigo/lex/util" 9) 10 11func init() { 12 util.RegisterType("fm.teal.alpha.actor.status", &AlphaActorStatus{}) 13} // 14// RECORDTYPE: AlphaActorStatus 15type AlphaActorStatus struct { 16 LexiconTypeID string `json:"$type,const=fm.teal.alpha.actor.status" cborgen:"$type,const=fm.teal.alpha.actor.status"` 17 // expiry: The unix timestamp of the expiry time of the item. If unavailable, default to 10 minutes past the start time. 18 Expiry *string `json:"expiry,omitempty" cborgen:"expiry,omitempty"` 19 Item *AlphaFeedDefs_PlayView `json:"item" cborgen:"item"` 20 // time: The unix timestamp of when the item was recorded 21 Time string `json:"time" cborgen:"time"` 22}