return nil
}
token := &persistencespb.ReadQueueMessagesNextPageToken{
LastReadMessageId: lastReadMessageID,
}
// This can never fail if you inspect the implementation.
b, _ := token.Marshal()
// See the comment above pageTokenPrefixByte for why we want to do this.
return append([]byte{pageTokenPrefixByte}, b...)
}