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

com.tinypass.client.publisher.model.SubscriptionReallocationError Maven / Gradle / Ivy

There is a newer version: 16.331.0
Show newest version
package com.tinypass.client.publisher.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

public class SubscriptionReallocationError {

    private String errorMessage = null;
  

    private Integer errorElementIndex = null;
  

    private String fieldName = null;
  


  public String getErrorMessage() {
    return errorMessage;
  }
  public void setErrorMessage(String errorMessage) {
    this.errorMessage = errorMessage;
  }


  public Integer getErrorElementIndex() {
    return errorElementIndex;
  }
  public void setErrorElementIndex(Integer errorElementIndex) {
    this.errorElementIndex = errorElementIndex;
  }


  public String getFieldName() {
    return fieldName;
  }
  public void setFieldName(String fieldName) {
    this.fieldName = fieldName;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class SubscriptionReallocationError {\n");
    sb.append("  errorMessage: ").append(errorMessage).append("\n");
    sb.append("  errorElementIndex: ").append(errorElementIndex).append("\n");
    sb.append("  fieldName: ").append(fieldName).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy