com.hedera.hashgraph.sdk.proto.TokenDeleteTransactionBodyOrBuilder 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: token_delete.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface TokenDeleteTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TokenDeleteTransactionBody)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The token to be deleted. If invalid token is specified, transaction will
* result in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
* @return Whether the token field is set.
*/
boolean hasToken();
/**
*
**
* The token to be deleted. If invalid token is specified, transaction will
* result in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
* @return The token.
*/
com.hedera.hashgraph.sdk.proto.TokenID getToken();
/**
*
**
* The token to be deleted. If invalid token is specified, transaction will
* result in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getTokenOrBuilder();
}