8 lines
386 B
Go
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
|
|
}
|