PropertyChangeDto

data class PropertyChangeDto(val typeName: String, val propertyName: String, val renamedTo: String?, val before: String, val after: String)

What a schema change did to one property.

Constructors

Link copied to clipboard
constructor(typeName: String, propertyName: String, renamedTo: String?, before: String, after: String)

Properties

Link copied to clipboard

How it looks now, the same way.

Link copied to clipboard

How the property looked before, as a person would read it: string ONE, Company LIST.

Link copied to clipboard

The property's name before the change.

Link copied to clipboard

The property's new name when the change renamed it, null when the name held.

Link copied to clipboard

The entity type the property belongs to.