"""ReferencePaymentEntity marshmallow schema.""" from abacus_common_logic.marshalling.custom_fields import ma class ReferencePaymentEntitySchema(ma.Schema): """ReferencePaymentEntity schema.""" reference_payment_entity_id = ma.IntegerId(required=True) payment_entity_name = ma.NonemptyString(required=True) country_of_tax_reporting = ma.NonemptyString(required=True)