com.klarna.rest.api.order_management.model.OrderManagementCustomer Maven / Gradle / Ivy
The newest version!
/*
* Klarna Order Managment API
* API to handle order lifecycle
*
* OpenAPI spec version: 1.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.klarna.rest.api.order_management.model;
import java.util.Objects;
import java.util.Arrays;
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;
import org.threeten.bp.LocalDate;
/**
* OrderManagementCustomer
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2020-01-20T09:41:31.881Z")
public class OrderManagementCustomer {
@JsonProperty("date_of_birth")
private LocalDate dateOfBirth = null;
@JsonProperty("national_identification_number")
private String nationalIdentificationNumber = null;
public OrderManagementCustomer dateOfBirth(LocalDate dateOfBirth) {
this.dateOfBirth = dateOfBirth;
return this;
}
/**
* The customer date of birth. ISO 8601.
* @return dateOfBirth
**/
@ApiModelProperty(example = "1981-09-06", value = "The customer date of birth. ISO 8601. ")
public LocalDate getDateOfBirth() {
return dateOfBirth;
}
public void setDateOfBirth(LocalDate dateOfBirth) {
this.dateOfBirth = dateOfBirth;
}
public OrderManagementCustomer nationalIdentificationNumber(String nationalIdentificationNumber) {
this.nationalIdentificationNumber = nationalIdentificationNumber;
return this;
}
/**
* The customer national identification number
* @return nationalIdentificationNumber
**/
@ApiModelProperty(value = "The customer national identification number")
public String getNationalIdentificationNumber() {
return nationalIdentificationNumber;
}
public void setNationalIdentificationNumber(String nationalIdentificationNumber) {
this.nationalIdentificationNumber = nationalIdentificationNumber;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OrderManagementCustomer customer = (OrderManagementCustomer) o;
return Objects.equals(this.dateOfBirth, customer.dateOfBirth) &&
Objects.equals(this.nationalIdentificationNumber, customer.nationalIdentificationNumber);
}
@Override
public int hashCode() {
return Objects.hash(dateOfBirth, nationalIdentificationNumber);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OrderManagementCustomer {\n");
sb.append(" dateOfBirth: ").append(toIndentedString(dateOfBirth)).append("\n");
sb.append(" nationalIdentificationNumber: ").append(toIndentedString(nationalIdentificationNumber)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}