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

net.snowflake.ingest.streaming.internal.RefreshTableInformationResponse Maven / Gradle / Ivy

The newest version!
package net.snowflake.ingest.streaming.internal;

import com.fasterxml.jackson.annotation.JsonProperty;

public class RefreshTableInformationResponse extends StreamingIngestResponse {
  @JsonProperty("status_code")
  private Long statusCode;

  @JsonProperty("message")
  private String message;

  @JsonProperty("iceberg_location")
  private FileLocationInfo icebergLocationInfo;

  @Override
  Long getStatusCode() {
    return this.statusCode;
  }

  String getMessage() {
    return this.message;
  }

  FileLocationInfo getIcebergLocationInfo() {
    return this.icebergLocationInfo;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy