[WIP] music platform user data scraper
teal-fm atproto
at main 1.4 kB view raw
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package chat 4 5// schema: chat.bsky.actor.defs 6 7import ( 8 comatprototypes "github.com/bluesky-social/indigo/api/atproto" 9 appbskytypes "github.com/bluesky-social/indigo/api/bsky" 10) 11 12// ActorDefs_ProfileViewBasic is a "profileViewBasic" in the chat.bsky.actor.defs schema. 13type ActorDefs_ProfileViewBasic struct { 14 Associated *appbskytypes.ActorDefs_ProfileAssociated `json:"associated,omitempty" cborgen:"associated,omitempty"` 15 Avatar *string `json:"avatar,omitempty" cborgen:"avatar,omitempty"` 16 // chatDisabled: Set to true when the actor cannot actively participate in conversations 17 ChatDisabled *bool `json:"chatDisabled,omitempty" cborgen:"chatDisabled,omitempty"` 18 Did string `json:"did" cborgen:"did"` 19 DisplayName *string `json:"displayName,omitempty" cborgen:"displayName,omitempty"` 20 Handle string `json:"handle" cborgen:"handle"` 21 Labels []*comatprototypes.LabelDefs_Label `json:"labels,omitempty" cborgen:"labels,omitempty"` 22 Verification *appbskytypes.ActorDefs_VerificationState `json:"verification,omitempty" cborgen:"verification,omitempty"` 23 Viewer *appbskytypes.ActorDefs_ViewerState `json:"viewer,omitempty" cborgen:"viewer,omitempty"` 24}