mirror of
https://github.com/ProtonMail/go-proton-api.git
synced 2025-12-23 15:47:52 -05:00
15 lines
201 B
Go
15 lines
201 B
Go
package proton
|
|
|
|
import "errors"
|
|
|
|
var ErrUndoTokenExpired = errors.New("undo token expired")
|
|
|
|
type UndoToken struct {
|
|
Token string
|
|
ValidUntil int64
|
|
}
|
|
|
|
type UndoRes struct {
|
|
Messages []Message
|
|
}
|