All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.geotab.model.entity.customproperty.PropertyValue Maven / Gradle / Ivy

package com.geotab.model.entity.customproperty;

import com.geotab.model.entity.EntityWithVersion;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.SuperBuilder;

/**
 * The custom {@link Property} of an entity that is customizable.
 */
@Getter @Setter
@NoArgsConstructor
@SuperBuilder
public class PropertyValue extends EntityWithVersion {

  /**
   * The value.
   */
  private String value;

  /**
   * The property.
   */
  private Property property;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy