package auth

import (
	

	
)

// SignUpRequired means that log in failed because corresponding account
// does not exist, so sign up is required.
type SignUpRequired struct {
	TermsOfService tg.HelpTermsOfService
}

// Is returns true if err is SignUpRequired.
func ( *SignUpRequired) ( error) bool {
	,  := .(*SignUpRequired)
	return 
}

func ( *SignUpRequired) () string {
	return "account with provided number does not exist (sign up required)"
}

// checkResult checks that `a` is *tg.AuthAuthorization and returns authorization result or error.
func ( tg.AuthAuthorizationClass) (*tg.AuthAuthorization, error) {
	switch a := .(type) {
	case *tg.AuthAuthorization:
		return , nil // ok
	case *tg.AuthAuthorizationSignUpRequired:
		return nil, &SignUpRequired{
			TermsOfService: .TermsOfService,
		}
	default:
		return nil, errors.Errorf("got unexpected response %T", )
	}
}