"""Schema for payment_group_payment_batch_account serialization.""" from abacus_common_logic.marshalling.custom_fields import ma class PaymentGroupPaymentBatchAccountSchema(ma.Schema): """Payment Group Payment Batch Account schema.""" payment_group_payment_batch_account_id = ma.NonNegativeInteger(required=True) payment_group_payment_account_id = ma.NonNegativeInteger(required=True) payment_group_payment_batch_id = ma.NonNegativeInteger(required=True)