export interface EntityPropertyDetails {
  /** The entity property ID. */
  entityId: number;
  /** The entity property key. */
  key: string;
  /** The new value of the entity property. */
  value: string;
}
