Skip to content

Instantly share code, notes, and snippets.

@jtemporal
Last active October 14, 2018 03:29
Show Gist options
  • Save jtemporal/772722f88e7aabe25d659bda0c515361 to your computer and use it in GitHub Desktop.
Save jtemporal/772722f88e7aabe25d659bda0c515361 to your computer and use it in GitHub Desktop.
v8
class Cachorrinho(Model):
nome = StringType(required=True, deserialize_from="name",
serialized_name="name")
cor = StringType(required=True, deserialize_from="fur",
serialized_name="fur")
def validate_nome(self, data, value):
if data['nome'].capitalize() != data['nome']:
raise ValidationError('Pet name is not capitalized!')
return value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment