com.hedera.hashgraph.sdk.proto.TokenDissociateTransactionBodyOrBuilder 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: token_dissociate.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
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.hedera.hashgraph.sdk.proto.AccountID getAccount();
/**
*
**
* The account to be dissociated with the provided tokens
*
*
* .proto.AccountID account = 1;
*/
com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.TokenIDOrBuilder>
getTokensOrBuilderList();
/**
*
**
* The tokens to be dissociated with the provided account
*
*
* repeated .proto.TokenID tokens = 2;
*/
com.hedera.hashgraph.sdk.proto.TokenIDOrBuilder getTokensOrBuilder(
int index);
}