GetHTMLURL returns the HTMLURL field if it's non-nil, zero value otherwise.
()
| 1488 | |
| 1489 | // GetHTMLURL returns the HTMLURL field if it's non-nil, zero value otherwise. |
| 1490 | func (a *App) GetHTMLURL() string { |
| 1491 | if a == nil || a.HTMLURL == nil { |
| 1492 | return "" |
| 1493 | } |
| 1494 | return *a.HTMLURL |
| 1495 | } |
| 1496 | |
| 1497 | // GetID returns the ID field if it's non-nil, zero value otherwise. |
| 1498 | func (a *App) GetID() int64 { |
no outgoing calls