com.hedera.hashgraph.sdk.proto.SystemDeleteTransactionBodyOrBuilder 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
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: system_delete.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface SystemDeleteTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.SystemDeleteTransactionBody)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The file ID of the file to delete, in the format used in transactions
*
*
* .proto.FileID fileID = 1;
* @return Whether the fileID field is set.
*/
boolean hasFileID();
/**
*
**
* The file ID of the file to delete, in the format used in transactions
*
*
* .proto.FileID fileID = 1;
* @return The fileID.
*/
com.hedera.hashgraph.sdk.proto.FileID getFileID();
/**
*
**
* The file ID of the file to delete, in the format used in transactions
*
*
* .proto.FileID fileID = 1;
*/
com.hedera.hashgraph.sdk.proto.FileIDOrBuilder getFileIDOrBuilder();
/**
*
**
* The contract ID instance to delete, in the format used in transactions
*
*
* .proto.ContractID contractID = 2;
* @return Whether the contractID field is set.
*/
boolean hasContractID();
/**
*
**
* The contract ID instance to delete, in the format used in transactions
*
*
* .proto.ContractID contractID = 2;
* @return The contractID.
*/
com.hedera.hashgraph.sdk.proto.ContractID getContractID();
/**
*
**
* The contract ID instance to delete, in the format used in transactions
*
*
* .proto.ContractID contractID = 2;
*/
com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder getContractIDOrBuilder();
/**
*
**
* The timestamp in seconds at which the "deleted" file should truly be permanently deleted
*
*
* .proto.TimestampSeconds expirationTime = 3;
* @return Whether the expirationTime field is set.
*/
boolean hasExpirationTime();
/**
*
**
* The timestamp in seconds at which the "deleted" file should truly be permanently deleted
*
*
* .proto.TimestampSeconds expirationTime = 3;
* @return The expirationTime.
*/
com.hedera.hashgraph.sdk.proto.TimestampSeconds getExpirationTime();
/**
*
**
* The timestamp in seconds at which the "deleted" file should truly be permanently deleted
*
*
* .proto.TimestampSeconds expirationTime = 3;
*/
com.hedera.hashgraph.sdk.proto.TimestampSecondsOrBuilder getExpirationTimeOrBuilder();
com.hedera.hashgraph.sdk.proto.SystemDeleteTransactionBody.IdCase getIdCase();
}