main.java.com.streamlayer.importer.CsvImportParseResultOrBuilder 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 CsvImportParseResultOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.interactive.importer.CsvImportParseResult)
com.google.protobuf.MessageLiteOrBuilder {
/**
* uint32 total = 1 [json_name = "total"];
* @return The total.
*/
int getTotal();
/**
* repeated .streamlayer.interactive.importer.CsvInvalidRow invalid_rows = 2 [json_name = "invalidRows"];
*/
java.util.List
getInvalidRowsList();
/**
* repeated .streamlayer.interactive.importer.CsvInvalidRow invalid_rows = 2 [json_name = "invalidRows"];
*/
com.streamlayer.importer.CsvInvalidRow getInvalidRows(int index);
/**
* repeated .streamlayer.interactive.importer.CsvInvalidRow invalid_rows = 2 [json_name = "invalidRows"];
*/
int getInvalidRowsCount();
/**
* repeated string errors = 3 [json_name = "errors"];
* @return A list containing the errors.
*/
java.util.List
getErrorsList();
/**
* repeated string errors = 3 [json_name = "errors"];
* @return The count of errors.
*/
int getErrorsCount();
/**
* repeated string errors = 3 [json_name = "errors"];
* @param index The index of the element to return.
* @return The errors at the given index.
*/
java.lang.String getErrors(int index);
/**
* repeated string errors = 3 [json_name = "errors"];
* @param index The index of the element to return.
* @return The errors at the given index.
*/
com.google.protobuf.ByteString
getErrorsBytes(int index);
/**
* repeated .streamlayer.interactive.importer.QuestionSource questions = 4 [json_name = "questions"];
*/
java.util.List
getQuestionsList();
/**
* repeated .streamlayer.interactive.importer.QuestionSource questions = 4 [json_name = "questions"];
*/
com.streamlayer.importer.QuestionSource getQuestions(int index);
/**
* repeated .streamlayer.interactive.importer.QuestionSource questions = 4 [json_name = "questions"];
*/
int getQuestionsCount();
}