types.go
changeset 232 de13b1d39099
parent 228 21056fc9563e
child 236 5b87cc73ed97
equal deleted inserted replaced
231:741291bb4772 232:de13b1d39099
   255 	Value string `json:"value"`
   255 	Value string `json:"value"`
   256 }
   256 }
   257 
   257 
   258 // SourceParams is a source params structure
   258 // SourceParams is a source params structure
   259 type SourceParams struct { // Used for verify_credentials
   259 type SourceParams struct { // Used for verify_credentials
   260 	Privacy   *string  `json:"privacy"`
   260 	Privacy   *string  `json:"privacy,omitempty"`
   261 	Language  *string  `json:"language"`
   261 	Language  *string  `json:"language,omitempty"`
   262 	Sensitive *bool    `json:"sensitive"`
   262 	Sensitive *bool    `json:"sensitive,omitempty"`
   263 	Note      *string  `json:"note"`
   263 	Note      *string  `json:"note,omitempty"`
   264 	Fields    *[]Field `json:"fields"`
   264 	Fields    *[]Field `json:"fields,omitempty"`
   265 }
   265 }