com.hedera.hashgraph.sdk.proto.TokenRevokeKycTransactionBodyOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: token_revoke_kyc.proto
package com.hedera.hashgraph.sdk.proto;
public interface TokenRevokeKycTransactionBodyOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.TokenRevokeKycTransactionBody)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
* @return Whether the token field is set.
*/
boolean hasToken();
/**
*
**
* The token for which this account will get his KYC revoked. If token does not exist,
* transaction results in INVALID_TOKEN_ID
*
*
* .proto.TokenID token = 1;
* @return The token.
*/
com.hedera.hashgraph.sdk.proto.TokenID getToken();
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
* @return Whether the account field is set.
*/
boolean hasAccount();
/**
*
**
* The account to be KYC Revoked
*
*
* .proto.AccountID account = 2;
* @return The account.
*/
com.hedera.hashgraph.sdk.proto.AccountID getAccount();
}