com.precisely.apis.model.ContactDetails Maven / Gradle / Ivy
/*
* Precisely APIs
* Enhance & enrich your data, applications, business processes, and workflows with rich location, information, and identify APIs.
*
* The version of the OpenAPI document: 15.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.precisely.apis.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.precisely.apis.model.Address;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* ContactDetails
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-04-12T11:12:38.208312800+05:30[Asia/Calcutta]")
public class ContactDetails {
public static final String SERIALIZED_NAME_ADDRESS = "address";
@SerializedName(SERIALIZED_NAME_ADDRESS)
private Address address;
public static final String SERIALIZED_NAME_PHONE = "phone";
@SerializedName(SERIALIZED_NAME_PHONE)
private String phone;
public static final String SERIALIZED_NAME_FAX = "fax";
@SerializedName(SERIALIZED_NAME_FAX)
private String fax;
public static final String SERIALIZED_NAME_COUNTRY_ACCESS_CODE = "countryAccessCode";
@SerializedName(SERIALIZED_NAME_COUNTRY_ACCESS_CODE)
private String countryAccessCode;
public static final String SERIALIZED_NAME_EMAIL = "email";
@SerializedName(SERIALIZED_NAME_EMAIL)
private String email;
public static final String SERIALIZED_NAME_URL = "url";
@SerializedName(SERIALIZED_NAME_URL)
private String url;
public ContactDetails() {
}
public ContactDetails address(Address address) {
this.address = address;
return this;
}
/**
* Get address
* @return address
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public Address getAddress() {
return address;
}
public void setAddress(Address address) {
this.address = address;
}
public ContactDetails phone(String phone) {
this.phone = phone;
return this;
}
/**
* Get phone
* @return phone
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public ContactDetails fax(String fax) {
this.fax = fax;
return this;
}
/**
* Get fax
* @return fax
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public String getFax() {
return fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public ContactDetails countryAccessCode(String countryAccessCode) {
this.countryAccessCode = countryAccessCode;
return this;
}
/**
* Get countryAccessCode
* @return countryAccessCode
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public String getCountryAccessCode() {
return countryAccessCode;
}
public void setCountryAccessCode(String countryAccessCode) {
this.countryAccessCode = countryAccessCode;
}
public ContactDetails email(String email) {
this.email = email;
return this;
}
/**
* Get email
* @return email
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public ContactDetails url(String url) {
this.url = url;
return this;
}
/**
* Get url
* @return url
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ContactDetails contactDetails = (ContactDetails) o;
return Objects.equals(this.address, contactDetails.address) &&
Objects.equals(this.phone, contactDetails.phone) &&
Objects.equals(this.fax, contactDetails.fax) &&
Objects.equals(this.countryAccessCode, contactDetails.countryAccessCode) &&
Objects.equals(this.email, contactDetails.email) &&
Objects.equals(this.url, contactDetails.url);
}
@Override
public int hashCode() {
return Objects.hash(address, phone, fax, countryAccessCode, email, url);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ContactDetails {\n");
sb.append(" address: ").append(toIndentedString(address)).append("\n");
sb.append(" phone: ").append(toIndentedString(phone)).append("\n");
sb.append(" fax: ").append(toIndentedString(fax)).append("\n");
sb.append(" countryAccessCode: ").append(toIndentedString(countryAccessCode)).append("\n");
sb.append(" email: ").append(toIndentedString(email)).append("\n");
sb.append(" url: ").append(toIndentedString(url)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}