Interface TokenUnfreezeAccountTransactionBodyOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
All Known Implementing Classes:
TokenUnfreezeAccountTransactionBody, TokenUnfreezeAccountTransactionBody.Builder

@Generated public interface TokenUnfreezeAccountTransactionBodyOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    * An account identifier.
    * A token identifier.
    boolean
    * An account identifier.
    boolean
    * A token identifier.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    getDefaultInstanceForType, isInitialized
  • Method Details

    • hasToken

      boolean hasToken()
       *
       A token identifier.
       <p>
       This SHALL identify the token type to "unfreeze".<br/>
       The identified token MUST exist, MUST NOT be deleted, and MUST be
       associated to the identified account.
       
      .proto.TokenID token = 1;
      Returns:
      Whether the token field is set.
    • getToken

      TokenID getToken()
       *
       A token identifier.
       <p>
       This SHALL identify the token type to "unfreeze".<br/>
       The identified token MUST exist, MUST NOT be deleted, and MUST be
       associated to the identified account.
       
      .proto.TokenID token = 1;
      Returns:
      The token.
    • hasAccount

      boolean hasAccount()
       *
       An account identifier.
       <p>
       This shall identify the account to "unfreeze".<br/>
       The identified account MUST exist, MUST NOT be deleted, MUST NOT be
       expired, and MUST be associated to the identified token.<br/>
       The identified account SHOULD be "frozen" with respect to the
       identified token.
       
      .proto.AccountID account = 2;
      Returns:
      Whether the account field is set.
    • getAccount

      AccountID getAccount()
       *
       An account identifier.
       <p>
       This shall identify the account to "unfreeze".<br/>
       The identified account MUST exist, MUST NOT be deleted, MUST NOT be
       expired, and MUST be associated to the identified token.<br/>
       The identified account SHOULD be "frozen" with respect to the
       identified token.
       
      .proto.AccountID account = 2;
      Returns:
      The account.