
Model.InlineResponse2011PayoutInformation Maven / Gradle / Ivy
/*
* CyberSource Merged Spec
* All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
*
* OpenAPI spec version: 0.0.1
*
*
* 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 Model;
import java.util.Objects;
import java.util.Arrays;
import Model.InlineResponse2011PayoutInformationPullFunds;
import Model.InlineResponse2011PayoutInformationPushFunds;
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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* InlineResponse2011PayoutInformation
*/
public class InlineResponse2011PayoutInformation {
@SerializedName("pushFunds")
private InlineResponse2011PayoutInformationPushFunds pushFunds = null;
@SerializedName("pullFunds")
private InlineResponse2011PayoutInformationPullFunds pullFunds = null;
@SerializedName("geoRestrictionIndicator")
private String geoRestrictionIndicator = null;
public InlineResponse2011PayoutInformation pushFunds(InlineResponse2011PayoutInformationPushFunds pushFunds) {
this.pushFunds = pushFunds;
return this;
}
/**
* Get pushFunds
* @return pushFunds
**/
@ApiModelProperty(value = "")
public InlineResponse2011PayoutInformationPushFunds getPushFunds() {
return pushFunds;
}
public void setPushFunds(InlineResponse2011PayoutInformationPushFunds pushFunds) {
this.pushFunds = pushFunds;
}
public InlineResponse2011PayoutInformation pullFunds(InlineResponse2011PayoutInformationPullFunds pullFunds) {
this.pullFunds = pullFunds;
return this;
}
/**
* Get pullFunds
* @return pullFunds
**/
@ApiModelProperty(value = "")
public InlineResponse2011PayoutInformationPullFunds getPullFunds() {
return pullFunds;
}
public void setPullFunds(InlineResponse2011PayoutInformationPullFunds pullFunds) {
this.pullFunds = pullFunds;
}
public InlineResponse2011PayoutInformation geoRestrictionIndicator(String geoRestrictionIndicator) {
this.geoRestrictionIndicator = geoRestrictionIndicator;
return this;
}
/**
* This field indicates if the recipient issuer can accept transactions from the originator country. Possible values: - `Y` - `N`
* @return geoRestrictionIndicator
**/
@ApiModelProperty(value = "This field indicates if the recipient issuer can accept transactions from the originator country. Possible values: - `Y` - `N` ")
public String getGeoRestrictionIndicator() {
return geoRestrictionIndicator;
}
public void setGeoRestrictionIndicator(String geoRestrictionIndicator) {
this.geoRestrictionIndicator = geoRestrictionIndicator;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
InlineResponse2011PayoutInformation inlineResponse2011PayoutInformation = (InlineResponse2011PayoutInformation) o;
return Objects.equals(this.pushFunds, inlineResponse2011PayoutInformation.pushFunds) &&
Objects.equals(this.pullFunds, inlineResponse2011PayoutInformation.pullFunds) &&
Objects.equals(this.geoRestrictionIndicator, inlineResponse2011PayoutInformation.geoRestrictionIndicator);
}
@Override
public int hashCode() {
return Objects.hash(pushFunds, pullFunds, geoRestrictionIndicator);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InlineResponse2011PayoutInformation {\n");
if (pushFunds != null) sb.append(" pushFunds: ").append(toIndentedString(pushFunds)).append("\n");
if (pullFunds != null) sb.append(" pullFunds: ").append(toIndentedString(pullFunds)).append("\n");
if (geoRestrictionIndicator != null) sb.append(" geoRestrictionIndicator: ").append(toIndentedString(geoRestrictionIndicator)).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