main.java.com.streamlayer.importer.CsvInvalidRowOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/interactive/importer/importer.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.importer;
public interface CsvInvalidRowOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.interactive.importer.CsvInvalidRow)
com.google.protobuf.MessageLiteOrBuilder {
/**
* .streamlayer.interactive.importer.CsvRow row = 1 [json_name = "row"];
* @return Whether the row field is set.
*/
boolean hasRow();
/**
* .streamlayer.interactive.importer.CsvRow row = 1 [json_name = "row"];
* @return The row.
*/
com.streamlayer.importer.CsvRow getRow();
/**
* uint32 row_number = 2 [json_name = "rowNumber"];
* @return The rowNumber.
*/
int getRowNumber();
/**
* string reason = 3 [json_name = "reason"];
* @return The reason.
*/
java.lang.String getReason();
/**
* string reason = 3 [json_name = "reason"];
* @return The bytes for reason.
*/
com.google.protobuf.ByteString
getReasonBytes();
}