GetContent returns the Content field if it's non-nil, zero value otherwise.
()
| 2864 | |
| 2865 | // GetContent returns the Content field if it's non-nil, zero value otherwise. |
| 2866 | func (b *Blob) GetContent() string { |
| 2867 | if b == nil || b.Content == nil { |
| 2868 | return "" |
| 2869 | } |
| 2870 | return *b.Content |
| 2871 | } |
| 2872 | |
| 2873 | // GetEncoding returns the Encoding field if it's non-nil, zero value otherwise. |
| 2874 | func (b *Blob) GetEncoding() string { |
no outgoing calls