When retrieving a user object set up as below:
class User(models.Model):
    """
    User model
    """
    id = models.UUIDField(primary_key=True, default=uuid4, editable=False)
    email = models.EmailField(max_length=255, null=True, default=None)
    password = models.CharField(max_length=255, null=True, default=None)
    ACCOUNT_CHOICE_UNSET = 0
    ACCOUNT_CHOICE_BRAND = 1
    ACCOUNT_CHOICE_CREATOR = 2
    ACCOUNT_CHOICE_AGENCY = 3
    ACCOUNT_CHOICES = (
        (ACCOUNT_CHOICE_UNSET, 'Unset'),
        (ACCOUNT_CHOICE_BRAND, 'Brand'),
        (ACCOUNT_CHOICE_CREATOR, 'Creator'),
        (ACCOUNT_CHOICE_AGENCY, 'Agency'),
    )
    account_type = models.IntegerField(choices=ACCOUNT_CHOICES, default=ACCOUNT_CHOICE_UNSET)
    class Meta:
        verbose_name_plural = "Users"
    def __str__(self):
        return "%s" % self.email
In the following manner:
        try:
            user = User.objects.get(email=request.data['email'])
        except User.DoesNotExist:
            response_details = {
                    'message': "Invalid email address.",
                    'code': "400",
                    'status': HTTP_400_BAD_REQUEST
            }
            return Response(response_details, status=response_details['status'])
Why can I only view the email property when trying to print it out? I need to be able to access the account_type property as well.
    if user:
        print(user)
 
    