app.blueprints.base.BaseResource

class app.blueprints.base.BaseResource(api=None, *args, **kwargs)

Bases: flask_restx.resource.Resource

Attributes

BaseResource.decorators

The canonical way to decorate class-based views is to decorate the return value of as_view().

BaseResource.method_decorators

BaseResource.methods

A list of methods this view can handle.

BaseResource.provide_automatic_options

Setting this disables or force-enables the automatic options handling.

BaseResource.representations

Methods

BaseResource.__init__([api])

BaseResource.as_view(name, *class_args, ...)

Converts the class into an actual view function that can be used with the routing system.

BaseResource.dispatch_request(*args, **kwargs)

Subclasses have to override this method to implement the actual view function code.

BaseResource.validate_payload(func)

Perform a payload validation on expected model if necessary