monitoring-api/actions/validations/phone.py
2025-10-06 09:30:41 -03:00

12 lines
No EOL
340 B
Python

class Phone:
@staticmethod
def validate_cellphone(data: str) -> bool:
# Verifica e retorna se o numero de celular é igual a 11
return len(data) == 11
@staticmethod
def validate_telephone(data: str) -> bool:
# Verifica e retorna se o numero de telefone é igual a 11
return len(data) == 10