2👍
✅
You are trying to assign things to the class, not the instance of the class. Try:
campaign = Campaign()
campaign.participant_reward = single_voucher_reward
campaign.save()
or
campaign = Campaign(participant_reward = single_voucher_reward)
campaign.save()
Source:stackexchange.com