com.hedera.hashgraph.sdk.proto.FileUpdateTransactionBodyOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: file_update.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface FileUpdateTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.FileUpdateTransactionBody)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* 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 ID of the file to update
*
*
* .proto.FileID fileID = 1;
*/
com.hedera.hashgraph.sdk.proto.FileIDOrBuilder getFileIDOrBuilder();
/**
*
**
* 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 expiry time (ignored if not later than the current expiry)
*
*
* .proto.Timestamp expirationTime = 2;
*/
com.hedera.hashgraph.sdk.proto.TimestampOrBuilder getExpirationTimeOrBuilder();
/**
*
**
* 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 list of keys that can modify or delete the file
*
*
* .proto.KeyList keys = 3;
*/
com.hedera.hashgraph.sdk.proto.KeyListOrBuilder getKeysOrBuilder();
/**
*
**
* 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();
/**
*
**
* If set, the new memo to be associated with the file (UTF-8 encoding max 100 bytes)
*
*
* .google.protobuf.StringValue memo = 5;
*/
com.google.protobuf.StringValueOrBuilder getMemoOrBuilder();
}