app.serializers.auth.AuthUserLoginSerializer

class app.serializers.auth.AuthUserLoginSerializer(*, only: Optional[Union[Sequence[str], Set[str]]] = None, exclude: Union[Sequence[str], Set[str]] = (), many: bool = False, context: Optional[Dict] = None, load_only: Union[Sequence[str], Set[str]] = (), dump_only: Union[Sequence[str], Set[str]] = (), partial: Union[bool, Sequence[str], Set[str]] = False, unknown: Optional[str] = None)

Bases: flask_marshmallow.schema.Schema

Attributes

AuthUserLoginSerializer.TYPE_MAPPING

AuthUserLoginSerializer.dict_class

AuthUserLoginSerializer.error_messages

Overrides for default schema-level error messages

AuthUserLoginSerializer.opts

AuthUserLoginSerializer.set_class

Methods

AuthUserLoginSerializer.__init__(*[, only, ...])

AuthUserLoginSerializer.dump(obj, *[, many])

Serialize an object to native Python data types according to this Schema's fields.

AuthUserLoginSerializer.dumps(obj, *args[, many])

Same as dump(), except return a JSON-encoded string.

AuthUserLoginSerializer.from_dict(fields, *)

Generate a Schema class given a dictionary of fields.

AuthUserLoginSerializer.get_attribute(obj, ...)

Defines how to pull values from an object to serialize.

AuthUserLoginSerializer.handle_error(error, ...)

Custom error handler function for the schema.

AuthUserLoginSerializer.jsonify(obj[, many])

Return a JSON response containing the serialized data.

AuthUserLoginSerializer.load(data, *[, ...])

Deserialize a data structure to an object defined by this Schema's fields.

AuthUserLoginSerializer.loads(json_data, *)

Same as load(), except it takes a JSON string as input.

AuthUserLoginSerializer.make_object(data, ...)

AuthUserLoginSerializer.on_bind_field(...)

Hook to modify a field when it is bound to the Schema.

AuthUserLoginSerializer.validate(data, *[, ...])

Validate data against the schema, returning a dictionary of validation errors.

AuthUserLoginSerializer.validate_email(email)

AuthUserLoginSerializer.validate_password(...)