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