All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.swagger.client.model.UpdateOutstandingRequest Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
/*
 * Qualpay Platform API
 * This document describes the Qualpay Platform API.
 *
 * OpenAPI spec version: 1.1.9
 * 
 *
 * 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 io.swagger.client.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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.client.model.Contact;
import java.io.IOException;

/**
 * UpdateOutstandingRequest
 */

public class UpdateOutstandingRequest {
  @SerializedName("from_contact")
  private Contact fromContact = null;

  @SerializedName("billing_contact")
  private Contact billingContact = null;

  public UpdateOutstandingRequest fromContact(Contact fromContact) {
    this.fromContact = fromContact;
    return this;
  }

   /**
   * The merchant business contact information. 
   * @return fromContact
  **/
  @ApiModelProperty(value = "The merchant business contact information. ")
  public Contact getFromContact() {
    return fromContact;
  }

  public void setFromContact(Contact fromContact) {
    this.fromContact = fromContact;
  }

  public UpdateOutstandingRequest billingContact(Contact billingContact) {
    this.billingContact = billingContact;
    return this;
  }

   /**
   * The customer contact information. 
   * @return billingContact
  **/
  @ApiModelProperty(value = "The customer contact information. ")
  public Contact getBillingContact() {
    return billingContact;
  }

  public void setBillingContact(Contact billingContact) {
    this.billingContact = billingContact;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    UpdateOutstandingRequest updateOutstandingRequest = (UpdateOutstandingRequest) o;
    return Objects.equals(this.fromContact, updateOutstandingRequest.fromContact) &&
        Objects.equals(this.billingContact, updateOutstandingRequest.billingContact);
  }

  @Override
  public int hashCode() {
    return Objects.hash(fromContact, billingContact);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class UpdateOutstandingRequest {\n");
    
    sb.append("    fromContact: ").append(toIndentedString(fromContact)).append("\n");
    sb.append("    billingContact: ").append(toIndentedString(billingContact)).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