GetBookUUID gets the bookUUID from the UpdateNoteParams
()
| 84 | |
| 85 | // GetBookUUID gets the bookUUID from the UpdateNoteParams |
| 86 | func (r UpdateNoteParams) GetBookUUID() string { |
| 87 | if r.BookUUID == nil { |
| 88 | return "" |
| 89 | } |
| 90 | |
| 91 | return *r.BookUUID |
| 92 | } |
| 93 | |
| 94 | // GetContent gets the content from the UpdateNoteParams |
| 95 | func (r UpdateNoteParams) GetContent() string { |