def __repr__()

in db_schema/db_schema_lambda_layer/python/bookstore_orm_objects.py [0:0]


    def __repr__(self):
        return "<Book(title='%s', author='%s', publisher='%s', year='%d')>" % (
            self.title, self.author, self.publisher, self.year)