com.tinypass.client.user.model.Country Maven / Gradle / Ivy
package com.tinypass.client.user.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 Country {
/* The country name */
private String countryName = null;
/* The country code */
private String countryCode = null;
/* The country ID */
private String countryId = null;
public String getCountryName() {
return countryName;
}
public void setCountryName(String countryName) {
this.countryName = countryName;
}
public String getCountryCode() {
return countryCode;
}
public void setCountryCode(String countryCode) {
this.countryCode = countryCode;
}
public String getCountryId() {
return countryId;
}
public void setCountryId(String countryId) {
this.countryId = countryId;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Country {\n");
sb.append(" countryName: ").append(countryName).append("\n");
sb.append(" countryCode: ").append(countryCode).append("\n");
sb.append(" countryId: ").append(countryId).append("\n");
sb.append("}\n");
return sb.toString();
}
}