// Code generated by indigo lexgen tool. DO NOT EDIT MANUALLY. // Lexicon schema: place.atwork.profile package placeatwork import ( appbsky "github.com/bluesky-social/indigo/api/bsky" lexutil "github.com/bluesky-social/indigo/lex/util" ) // A user profile for AT://Work.Place type Profile struct { LexiconTypeID string `json:"$type" cborgen:"$type,const=place.atwork.profile"` // avatar: Small image to be displayed next to job listings from account. AKA, 'profile picture' Avatar *lexutil.LexBlob `json:"avatar,omitempty" cborgen:"avatar,omitempty"` // banner: Larger horizontal image to display behind profile view. Banner *lexutil.LexBlob `json:"banner,omitempty" cborgen:"banner,omitempty"` // description: A free text description of the identity. Description *string `json:"description,omitempty" cborgen:"description,omitempty"` // displayName: The display name of the identity. DisplayName *string `json:"displayName,omitempty" cborgen:"displayName,omitempty"` // facets: Annotations of text (mentions, URLs, hashtags, etc) in the description. Facets []appbsky.RichtextFacet `json:"facets,omitempty" cborgen:"facets,omitempty"` // profile_host: The service used for profile links Profile_host *string `json:"profile_host,omitempty" cborgen:"profile_host,omitempty"` // resume: The identity's resume. Resume *lexutil.LexBlob `json:"resume,omitempty" cborgen:"resume,omitempty"` // status: The current status of the identity. Status *string `json:"status,omitempty" cborgen:"status,omitempty"` }