const (
// ErrUnauthorized is thrown when the API user is unauthorized to perform// the request
ErrUnauthorized Code = "Unauthorized"
// ErrInvalidInput is thrown when the API user input is invalid ErrInvalidInput Code = "InvalidInput"
// ErrWrongCreds is thrown when the API user provides wrong authentication// credentials
ErrWrongCreds Code = "WrongCreds"
)