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

Model.TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions Maven / Gradle / Ivy

There is a newer version: 0.0.8
Show newest version
/*
 * 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 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;

/**
 * TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions
 */

public class TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions {
  @SerializedName("totalCaptureCount")
  private Integer totalCaptureCount = null;

  @SerializedName("captureSequenceNumber")
  private Integer captureSequenceNumber = null;

  public TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions totalCaptureCount(Integer totalCaptureCount) {
    this.totalCaptureCount = totalCaptureCount;
    return this;
  }

   /**
   * Total number of captures when requesting multiple partial captures for one payment. Used along with `captureSequenceNumber` field to track which capture is being processed.  For example, the second of five captures would be passed to CyberSource as:   - `captureSequenceNumber = 2`, and   - `totalCaptureCount = 5` 
   * minimum: 1
   * maximum: 99
   * @return totalCaptureCount
  **/
  @ApiModelProperty(value = "Total number of captures when requesting multiple partial captures for one payment. Used along with `captureSequenceNumber` field to track which capture is being processed.  For example, the second of five captures would be passed to CyberSource as:   - `captureSequenceNumber = 2`, and   - `totalCaptureCount = 5` ")
  public Integer getTotalCaptureCount() {
    return totalCaptureCount;
  }

  public void setTotalCaptureCount(Integer totalCaptureCount) {
    this.totalCaptureCount = totalCaptureCount;
  }

  public TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions captureSequenceNumber(Integer captureSequenceNumber) {
    this.captureSequenceNumber = captureSequenceNumber;
    return this;
  }

   /**
   * Capture number when requesting multiple partial captures for one authorization. Used along with `totalCaptureCount` to track which capture is being processed.  For example, the second of five captures would be passed to CyberSource as:   - `captureSequenceNumber_ = 2`, and   - `totalCaptureCount = 5` 
   * minimum: 1
   * maximum: 99
   * @return captureSequenceNumber
  **/
  @ApiModelProperty(value = "Capture number when requesting multiple partial captures for one authorization. Used along with `totalCaptureCount` to track which capture is being processed.  For example, the second of five captures would be passed to CyberSource as:   - `captureSequenceNumber_ = 2`, and   - `totalCaptureCount = 5` ")
  public Integer getCaptureSequenceNumber() {
    return captureSequenceNumber;
  }

  public void setCaptureSequenceNumber(Integer captureSequenceNumber) {
    this.captureSequenceNumber = captureSequenceNumber;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions tssV2TransactionsGet200ResponseProcessingInformationCaptureOptions = (TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions) o;
    return Objects.equals(this.totalCaptureCount, tssV2TransactionsGet200ResponseProcessingInformationCaptureOptions.totalCaptureCount) &&
        Objects.equals(this.captureSequenceNumber, tssV2TransactionsGet200ResponseProcessingInformationCaptureOptions.captureSequenceNumber);
  }

  @Override
  public int hashCode() {
    return Objects.hash(totalCaptureCount, captureSequenceNumber);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions {\n");
    
    if (totalCaptureCount != null) sb.append("    totalCaptureCount: ").append(toIndentedString(totalCaptureCount)).append("\n");
    if (captureSequenceNumber != null) sb.append("    captureSequenceNumber: ").append(toIndentedString(captureSequenceNumber)).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