com.wallee.sdk.model.PaymentConnector 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.
The newest version!
/**
* 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 com.wallee.sdk.model.CustomersPresence;
import com.wallee.sdk.model.DataCollectionType;
import com.wallee.sdk.model.PaymentMethodBrand;
import com.wallee.sdk.model.PaymentPrimaryRiskTaker;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.*;
import java.time.OffsetDateTime;
/**
*
*/
@ApiModel(description = "")
public class PaymentConnector {
@JsonProperty("dataCollectionType")
protected DataCollectionType dataCollectionType = null;
@JsonProperty("deprecated")
protected Boolean deprecated = null;
@JsonProperty("deprecationReason")
protected Map deprecationReason = null;
@JsonProperty("description")
protected Map description = null;
@JsonProperty("id")
protected Long id = null;
@JsonProperty("name")
protected Map name = null;
@JsonProperty("paymentMethod")
protected Long paymentMethod = null;
@JsonProperty("paymentMethodBrand")
protected PaymentMethodBrand paymentMethodBrand = null;
@JsonProperty("primaryRiskTaker")
protected PaymentPrimaryRiskTaker primaryRiskTaker = null;
@JsonProperty("processor")
protected Long processor = null;
@JsonProperty("supportedCurrencies")
protected List supportedCurrencies = null;
@JsonProperty("supportedCustomersPresences")
protected List supportedCustomersPresences = null;
@JsonProperty("supportedFeatures")
protected List supportedFeatures = null;
/**
* The data collection type specifies how the payment information is collected.
* @return dataCollectionType
**/
@ApiModelProperty(value = "The data collection type specifies how the payment information is collected.")
public DataCollectionType getDataCollectionType() {
return dataCollectionType;
}
/**
* Whether the object was deprecated.
* @return deprecated
**/
@ApiModelProperty(value = "Whether the object was deprecated.")
public Boolean isDeprecated() {
return deprecated;
}
/**
* The deprecation reason describes why the object was deprecated.
* @return deprecationReason
**/
@ApiModelProperty(value = "The deprecation reason describes why the object was deprecated.")
public Map getDeprecationReason() {
return deprecationReason;
}
/**
* The localized description of the object.
* @return description
**/
@ApiModelProperty(value = "The localized description of the object.")
public Map getDescription() {
return description;
}
/**
* A unique identifier for the object.
* @return id
**/
@ApiModelProperty(value = "A unique identifier for the object.")
public Long getId() {
return id;
}
/**
* The localized name of the object.
* @return name
**/
@ApiModelProperty(value = "The localized name of the object.")
public Map getName() {
return name;
}
/**
* The payment method that the connector supports.
* @return paymentMethod
**/
@ApiModelProperty(value = "The payment method that the connector supports.")
public Long getPaymentMethod() {
return paymentMethod;
}
/**
* The specific brand that this payment connector supports.
* @return paymentMethodBrand
**/
@ApiModelProperty(value = "The specific brand that this payment connector supports.")
public PaymentMethodBrand getPaymentMethodBrand() {
return paymentMethodBrand;
}
/**
* The entity that bears the main risk in the event that a contracting party fails to meet its obligations.
* @return primaryRiskTaker
**/
@ApiModelProperty(value = "The entity that bears the main risk in the event that a contracting party fails to meet its obligations.")
public PaymentPrimaryRiskTaker getPrimaryRiskTaker() {
return primaryRiskTaker;
}
/**
* The processor that the connector belongs to.
* @return processor
**/
@ApiModelProperty(value = "The processor that the connector belongs to.")
public Long getProcessor() {
return processor;
}
/**
* The currencies that are supported by the connector.
* @return supportedCurrencies
**/
@ApiModelProperty(value = "The currencies that are supported by the connector.")
public List getSupportedCurrencies() {
return supportedCurrencies;
}
/**
* The types of customer's presence that are supported by the connector.
* @return supportedCustomersPresences
**/
@ApiModelProperty(value = "The types of customer's presence that are supported by the connector.")
public List getSupportedCustomersPresences() {
return supportedCustomersPresences;
}
/**
* The features that are supported by the connector.
* @return supportedFeatures
**/
@ApiModelProperty(value = "The features that are supported by the connector.")
public List getSupportedFeatures() {
return supportedFeatures;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PaymentConnector paymentConnector = (PaymentConnector) o;
return Objects.equals(this.dataCollectionType, paymentConnector.dataCollectionType) &&
Objects.equals(this.deprecated, paymentConnector.deprecated) &&
Objects.equals(this.deprecationReason, paymentConnector.deprecationReason) &&
Objects.equals(this.description, paymentConnector.description) &&
Objects.equals(this.id, paymentConnector.id) &&
Objects.equals(this.name, paymentConnector.name) &&
Objects.equals(this.paymentMethod, paymentConnector.paymentMethod) &&
Objects.equals(this.paymentMethodBrand, paymentConnector.paymentMethodBrand) &&
Objects.equals(this.primaryRiskTaker, paymentConnector.primaryRiskTaker) &&
Objects.equals(this.processor, paymentConnector.processor) &&
Objects.equals(this.supportedCurrencies, paymentConnector.supportedCurrencies) &&
Objects.equals(this.supportedCustomersPresences, paymentConnector.supportedCustomersPresences) &&
Objects.equals(this.supportedFeatures, paymentConnector.supportedFeatures);
}
@Override
public int hashCode() {
return Objects.hash(dataCollectionType, deprecated, deprecationReason, description, id, name, paymentMethod, paymentMethodBrand, primaryRiskTaker, processor, supportedCurrencies, supportedCustomersPresences, supportedFeatures);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaymentConnector {\n");
sb.append(" dataCollectionType: ").append(toIndentedString(dataCollectionType)).append("\n");
sb.append(" deprecated: ").append(toIndentedString(deprecated)).append("\n");
sb.append(" deprecationReason: ").append(toIndentedString(deprecationReason)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" paymentMethod: ").append(toIndentedString(paymentMethod)).append("\n");
sb.append(" paymentMethodBrand: ").append(toIndentedString(paymentMethodBrand)).append("\n");
sb.append(" primaryRiskTaker: ").append(toIndentedString(primaryRiskTaker)).append("\n");
sb.append(" processor: ").append(toIndentedString(processor)).append("\n");
sb.append(" supportedCurrencies: ").append(toIndentedString(supportedCurrencies)).append("\n");
sb.append(" supportedCustomersPresences: ").append(toIndentedString(supportedCustomersPresences)).append("\n");
sb.append(" supportedFeatures: ").append(toIndentedString(supportedFeatures)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy