linstrom/ap/attachment.go
2024-01-31 16:56:07 +00:00

8 lines
386 B
Go

package ap
// An info field on an account page
type PersonInfoField struct {
Type string `json:"type"` // Type of the attachment. Probably should always be "PropertyValue"
Name string `json:"name"` // Name of the property. Example: Source
Value string `json:"value"` // Value of the property. Link or html or just some text. Example: https://gitlab.com/mstarongitlab/Linstrom
}