com.hederahashgraph.api.proto.java.TokenDissociateTransactionBodyOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: token_dissociate.proto
package com.hederahashgraph.api.proto.java;
public interface TokenDissociateTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TokenDissociateTransactionBody)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The account to be dissociated with the provided tokens
*
*
* .proto.AccountID account = 1;
* @return Whether the account field is set.
*/
boolean hasAccount();
/**
*
**
* The account to be dissociated with the provided tokens
*
*
* .proto.AccountID account = 1;
* @return The account.
*/
com.hederahashgraph.api.proto.java.AccountID getAccount();
/**
*
**
* The account to be dissociated with the provided tokens
*
*
* .proto.AccountID account = 1;
*/
com.hederahashgraph.api.proto.java.AccountIDOrBuilder getAccountOrBuilder();
/**
*
**
* The tokens to be dissociated with the provided account
*
*
* repeated .proto.TokenID tokens = 2;
*/
java.util.List
getTokensList();
/**
*
**
* The tokens to be dissociated with the provided account
*
*
* repeated .proto.TokenID tokens = 2;
*/
com.hederahashgraph.api.proto.java.TokenID getTokens(int index);
/**
*
**
* The tokens to be dissociated with the provided account
*
*
* repeated .proto.TokenID tokens = 2;
*/
int getTokensCount();
/**
*
**
* The tokens to be dissociated with the provided account
*
*
* repeated .proto.TokenID tokens = 2;
*/
java.util.List extends com.hederahashgraph.api.proto.java.TokenIDOrBuilder>
getTokensOrBuilderList();
/**
*
**
* The tokens to be dissociated with the provided account
*
*
* repeated .proto.TokenID tokens = 2;
*/
com.hederahashgraph.api.proto.java.TokenIDOrBuilder getTokensOrBuilder(
int index);
}