linstrom/ap/attachment.go

8 lines
350 B
Go
Raw Normal View History

2024-01-30 11:26:41 +00:00
package ap
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
}