api/src/main/java/org/apache/fineract/cn/customer/catalog/api/v1/domain/Option.java [38:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public String getLabel() {
    return this.label;
  }

  public void setLabel(final String label) {
    this.label = label;
  }

  public Integer getValue() {
    return this.value;
  }

  public void setValue(final Integer value) {
    this.value = value;
  }

  public String getCreatedBy() {
    return this.createdBy;
  }

  public void setCreatedBy(final String createdBy) {
    this.createdBy = createdBy;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



service/src/main/java/org/apache/fineract/cn/customer/catalog/internal/repository/OptionEntity.java [74:95]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public String getLabel() {
    return this.label;
  }

  public void setLabel(final String label) {
    this.label = label;
  }

  public Integer getValue() {
    return this.value;
  }

  public void setValue(final Integer value) {
    this.value = value;
  }

  public String getCreatedBy() {
    return this.createdBy;
  }

  public void setCreatedBy(final String createdBy) {
    this.createdBy = createdBy;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



