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

org.finra.herd.sdk.model.StorageFile Maven / Gradle / Ivy

There is a newer version: 0.160.0
Show newest version
/*
 * herd-external
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * OpenAPI spec version: 0.125.0
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package org.finra.herd.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;

/**
 * StorageFile
 */
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class StorageFile {
  @JsonProperty("filePath")
  private String filePath = null;

  @JsonProperty("fileSizeBytes")
  private Long fileSizeBytes = null;

  @JsonProperty("rowCount")
  private Long rowCount = null;

  public StorageFile filePath(String filePath) {
    this.filePath = filePath;
    return this;
  }

   /**
   * The fully qualified file path to the data. When Storage Directory is specified, all Storage File paths should start with the                   Storage Directory path                
   * @return filePath
  **/
  @ApiModelProperty(required = true, value = "The fully qualified file path to the data. When Storage Directory is specified, all Storage File paths should start with the                   Storage Directory path                ")
  public String getFilePath() {
    return filePath;
  }

  public void setFilePath(String filePath) {
    this.filePath = filePath;
  }

  public StorageFile fileSizeBytes(Long fileSizeBytes) {
    this.fileSizeBytes = fileSizeBytes;
    return this;
  }

   /**
   * The file size in bytes
   * @return fileSizeBytes
  **/
  @ApiModelProperty(value = "The file size in bytes")
  public Long getFileSizeBytes() {
    return fileSizeBytes;
  }

  public void setFileSizeBytes(Long fileSizeBytes) {
    this.fileSizeBytes = fileSizeBytes;
  }

  public StorageFile rowCount(Long rowCount) {
    this.rowCount = rowCount;
    return this;
  }

   /**
   * The number of lines in the file
   * @return rowCount
  **/
  @ApiModelProperty(value = "The number of lines in the file")
  public Long getRowCount() {
    return rowCount;
  }

  public void setRowCount(Long rowCount) {
    this.rowCount = rowCount;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    StorageFile storageFile = (StorageFile) o;
    return Objects.equals(this.filePath, storageFile.filePath) &&
        Objects.equals(this.fileSizeBytes, storageFile.fileSizeBytes) &&
        Objects.equals(this.rowCount, storageFile.rowCount);
  }

  @Override
  public int hashCode() {
    return Objects.hash(filePath, fileSizeBytes, rowCount);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class StorageFile {\n");
    
    sb.append("    filePath: ").append(toIndentedString(filePath)).append("\n");
    sb.append("    fileSizeBytes: ").append(toIndentedString(fileSizeBytes)).append("\n");
    sb.append("    rowCount: ").append(toIndentedString(rowCount)).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 - 2024 Weber Informatics LLC | Privacy Policy