class documentation

class LoginSerializer(serializers.Serializer):

View In Hierarchy

Serializer for user login object.

Class Meta Meta class to map serializer's fields with the model fields.
Method validate Validate username and password fields match. Arguments: validated_data {[type]} -- [description] Raises: serializers.ValidationError -- [description] Returns: [type] -- [description]
Class Variable password Undocumented
Class Variable username Undocumented
def validate(self, validated_data):

Validate username and password fields match. Arguments: validated_data {[type]} -- [description] Raises: serializers.ValidationError -- [description] Returns: [type] -- [description]

password =

Undocumented

username =

Undocumented