Module com.hedera.hashgraph.sdk
Package com.hedera.hashgraph.sdk.proto
Interface TokenRevokeKycTransactionBodyOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
TokenRevokeKycTransactionBody,TokenRevokeKycTransactionBody.Builder
@Generated
public interface TokenRevokeKycTransactionBodyOrBuilder
extends com.google.protobuf.MessageLiteOrBuilder
-
Method Details
-
hasToken
boolean hasToken()* A token identifier. <p> The identified token SHALL revoke "KYC" for the account identified by the `account` field.<br/> The identified token MUST be associated to the account identified by the `account` field.
.proto.TokenID token = 1;- Returns:
- Whether the token field is set.
-
getToken
TokenID getToken()* A token identifier. <p> The identified token SHALL revoke "KYC" for the account identified by the `account` field.<br/> The identified token MUST be associated to the account identified by the `account` field.
.proto.TokenID token = 1;- Returns:
- The token.
-
hasAccount
boolean hasAccount()* An account identifier. <p> The token identified by the `token` field SHALL revoke "KYC" for the identified account.<br/> This account MUST be associated to the token identified by the `token` field.
.proto.AccountID account = 2;- Returns:
- Whether the account field is set.
-
getAccount
AccountID getAccount()* An account identifier. <p> The token identified by the `token` field SHALL revoke "KYC" for the identified account.<br/> This account MUST be associated to the token identified by the `token` field.
.proto.AccountID account = 2;- Returns:
- The account.
-