"""Reference SAP Profit Center marshmallow schema.""" from abacus_common_logic.marshalling.custom_fields import ma class ReferenceSapProfitCenterSchema(ma.Schema): """Reference SAP Profit Center schema.""" reference_sap_profit_center_id = ma.IntegerId() profit_center = ma.NonemptyString(required=True) company_code = ma.NonemptyString(required=True) business_group = ma.NonemptyString(required=True)