com.hedera.hashgraph.sdk.proto.FileAppendTransactionBodyOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: file_append.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface FileAppendTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.FileAppendTransactionBody)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* The file to which the bytes will be appended
*
*
* .proto.FileID fileID = 2;
* @return Whether the fileID field is set.
*/
boolean hasFileID();
/**
*
**
* The file to which the bytes will be appended
*
*
* .proto.FileID fileID = 2;
* @return The fileID.
*/
com.hedera.hashgraph.sdk.proto.FileID getFileID();
/**
*
**
* The bytes that will be appended to the end of the specified file
*
*
* bytes contents = 4;
* @return The contents.
*/
com.google.protobuf.ByteString getContents();
}