com.wallee.sdk.model.PaymentProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wallee-java-sdk Show documentation
Show all versions of wallee-java-sdk Show documentation
The SDK for simplifying the integration with wallee API.
/**
* wallee SDK
*
* This library allows to interact with the wallee payment service.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.wallee.sdk.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 java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.*;
import java.time.OffsetDateTime;
/**
*
*/
@ApiModel(description = "")
public class PaymentProcessor {
@JsonProperty("companyName")
protected Map companyName = null;
@JsonProperty("description")
protected Map description = null;
@JsonProperty("feature")
protected Long feature = null;
@JsonProperty("headquartersLocation")
protected Map headquartersLocation = null;
@JsonProperty("id")
protected Long id = null;
@JsonProperty("logoPath")
protected String logoPath = null;
@JsonProperty("name")
protected Map name = null;
@JsonProperty("productName")
protected Map productName = null;
/**
*
* @return companyName
**/
@ApiModelProperty(value = "")
public Map getCompanyName() {
return companyName;
}
/**
* The localized description of the object.
* @return description
**/
@ApiModelProperty(value = "The localized description of the object.")
public Map getDescription() {
return description;
}
/**
*
* @return feature
**/
@ApiModelProperty(value = "")
public Long getFeature() {
return feature;
}
/**
*
* @return headquartersLocation
**/
@ApiModelProperty(value = "")
public Map getHeadquartersLocation() {
return headquartersLocation;
}
/**
* A unique identifier for the object.
* @return id
**/
@ApiModelProperty(value = "A unique identifier for the object.")
public Long getId() {
return id;
}
/**
*
* @return logoPath
**/
@ApiModelProperty(value = "")
public String getLogoPath() {
return logoPath;
}
/**
* The localized name of the object.
* @return name
**/
@ApiModelProperty(value = "The localized name of the object.")
public Map getName() {
return name;
}
/**
*
* @return productName
**/
@ApiModelProperty(value = "")
public Map getProductName() {
return productName;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PaymentProcessor paymentProcessor = (PaymentProcessor) o;
return Objects.equals(this.companyName, paymentProcessor.companyName) &&
Objects.equals(this.description, paymentProcessor.description) &&
Objects.equals(this.feature, paymentProcessor.feature) &&
Objects.equals(this.headquartersLocation, paymentProcessor.headquartersLocation) &&
Objects.equals(this.id, paymentProcessor.id) &&
Objects.equals(this.logoPath, paymentProcessor.logoPath) &&
Objects.equals(this.name, paymentProcessor.name) &&
Objects.equals(this.productName, paymentProcessor.productName);
}
@Override
public int hashCode() {
return Objects.hash(companyName, description, feature, headquartersLocation, id, logoPath, name, productName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaymentProcessor {\n");
sb.append(" companyName: ").append(toIndentedString(companyName)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" feature: ").append(toIndentedString(feature)).append("\n");
sb.append(" headquartersLocation: ").append(toIndentedString(headquartersLocation)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" logoPath: ").append(toIndentedString(logoPath)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" productName: ").append(toIndentedString(productName)).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 ");
}
}