Source code for aries_cloudagent.protocols.present_proof.v1_0.messages.presentation_problem_report

"""A problem report message."""

from enum import Enum

from marshmallow import EXCLUDE, validates_schema, ValidationError

from ....problem_report.v1_0.message import ProblemReport, ProblemReportSchema

from ..message_types import PRESENTATION_PROBLEM_REPORT, PROTOCOL_PACKAGE

HANDLER_CLASS = (
    f"{PROTOCOL_PACKAGE}.handlers.presentation_problem_report_handler."
    "PresentationProblemReportHandler"
)


[docs]class ProblemReportReason(Enum): """Supported reason codes.""" ABANDONED = "abandoned"
[docs]class PresentationProblemReport(ProblemReport): """Class representing a problem report message."""
[docs] class Meta: """Problem report metadata.""" handler_class = HANDLER_CLASS schema_class = "PresentationProblemReportSchema" message_type = PRESENTATION_PROBLEM_REPORT
def __init__(self, *args, **kwargs): """Initialize problem report object.""" super().__init__(*args, **kwargs)
[docs]class PresentationProblemReportSchema(ProblemReportSchema): """Problem report schema."""
[docs] class Meta: """Schema metadata.""" model_class = PresentationProblemReport unknown = EXCLUDE
@validates_schema def validate_fields(self, data, **kwargs): """ Validate schema fields. Args: data: The data to validate """ if not data.get("description", {}).get("code", ""): raise ValidationError("Value for description.code must be present")