com.hederahashgraph.api.proto.java.TokenDeleteTransactionBodyOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: token_delete.proto
package com.hederahashgraph.api.proto.java;
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.hederahashgraph.api.proto.java.TokenID getToken();
/**
*
**
* The token to be deleted. If invalid token is specified, transaction will
* result in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
*/
com.hederahashgraph.api.proto.java.TokenIDOrBuilder getTokenOrBuilder();
}