13 lines
202 B
Go
13 lines
202 B
Go
|
package jiraclient
|
||
|
|
||
|
type Project struct {
|
||
|
Id string `json:"id"`
|
||
|
Self string `json:"self"`
|
||
|
Name string `json:"name"`
|
||
|
Key string `json:"key"`
|
||
|
}
|
||
|
|
||
|
func (p Project) String() string {
|
||
|
return p.Name
|
||
|
}
|