Interface TokenGetAccountNftInfosQueryOrBuilder

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

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

    Modifier and Type
    Method
    Description
    * The Account for which information is requested
    long
    * Specifies the end index (exclusive) of the range of NFTs to query for.
    * Standard information sent with every query operation.<br/> This includes the signed payment and what kind of response is requested (cost, state proof, both, or neither).
    long
    * Specifies the start index (inclusive) of the range of NFTs to query for.
    boolean
    * The Account for which information is requested
    boolean
    * Standard information sent with every query operation.<br/> This includes the signed payment and what kind of response is requested (cost, state proof, both, or neither).

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    getDefaultInstanceForType, isInitialized
  • Method Details

    • hasHeader

      boolean hasHeader()
       *
       Standard information sent with every query operation.<br/>
       This includes the signed payment and what kind of response is requested
       (cost, state proof, both, or neither).
       
      .proto.QueryHeader header = 1;
      Returns:
      Whether the header field is set.
    • getHeader

      QueryHeader getHeader()
       *
       Standard information sent with every query operation.<br/>
       This includes the signed payment and what kind of response is requested
       (cost, state proof, both, or neither).
       
      .proto.QueryHeader header = 1;
      Returns:
      The header.
    • hasAccountID

      boolean hasAccountID()
       *
       The Account for which information is requested
       
      .proto.AccountID accountID = 2;
      Returns:
      Whether the accountID field is set.
    • getAccountID

      AccountID getAccountID()
       *
       The Account for which information is requested
       
      .proto.AccountID accountID = 2;
      Returns:
      The accountID.
    • getStart

      long getStart()
       *
       Specifies the start index (inclusive) of the range of NFTs to query for.
       Value must be in the range [0; ownedNFTs-1]
       
      int64 start = 3;
      Returns:
      The start.
    • getEnd

      long getEnd()
       *
       Specifies the end index (exclusive) of the range of NFTs to query for.
       Value must be in the range (start; ownedNFTs]
       
      int64 end = 4;
      Returns:
      The end.