"""Schema for Reference Adjustment Type serialization.""" from abacus_common_logic.marshalling.custom_fields import ma class ReferenceAdjustmentTypeDetailSchema(ma.Schema): """Reference Adjustment Type detail schema.""" reference_adjustment_type_id = ma.IntegerId() type_name = ma.String(allow_none=True) oa_category_name = ma.String(allow_none=True)