com.hedera.hashgraph.sdk.proto.FileUpdateTransactionBodyOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: file_update.proto
package com.hedera.hashgraph.sdk.proto;
public interface FileUpdateTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.FileUpdateTransactionBody)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
* @return Whether the fileID field is set.
*/
boolean hasFileID();
/**
*
**
* The ID of the file to update
*
*
* .proto.FileID fileID = 1;
* @return The fileID.
*/
com.hedera.hashgraph.sdk.proto.FileID getFileID();
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
* @return Whether the expirationTime field is set.
*/
boolean hasExpirationTime();
/**
*
**
* The new expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
* @return The expirationTime.
*/
com.hedera.hashgraph.sdk.proto.Timestamp getExpirationTime();
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
* @return Whether the keys field is set.
*/
boolean hasKeys();
/**
*
**
* The new list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
* @return The keys.
*/
com.hedera.hashgraph.sdk.proto.KeyList getKeys();
/**
*
**
* The new contents that should overwrite the file's current contents
*
*
* bytes contents = 4;
* @return The contents.
*/
com.google.protobuf.ByteString getContents();
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
* @return Whether the memo field is set.
*/
boolean hasMemo();
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
* @return The memo.
*/
com.google.protobuf.StringValue getMemo();
}