23 lines
417 B
Go
23 lines
417 B
Go
package requests
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/status-im/status-go/eth-node/types"
|
|
)
|
|
|
|
var ErrCreateOneToOneChatInvalidID = errors.New("create-one-to-one-chat: invalid id")
|
|
|
|
type CreateOneToOneChat struct {
|
|
ID types.HexBytes `json:"id"`
|
|
ENSName string `json:"ensName"`
|
|
}
|
|
|
|
func (c *CreateOneToOneChat) Validate() error {
|
|
if len(c.ID) == 0 {
|
|
return ErrCreateOneToOneChatInvalidID
|
|
}
|
|
|
|
return nil
|
|
}
|