/** * @namespace proto * @typedef {import("@hashgraph/proto").proto.IQuery} HashgraphProto.proto.IQuery * @typedef {import("@hashgraph/proto").proto.IQueryHeader} HashgraphProto.proto.IQueryHeader * @typedef {import("@hashgraph/proto").proto.IResponse} HashgraphProto.proto.IResponse * @typedef {import("@hashgraph/proto").proto.IResponseHeader} HashgraphProto.proto.IResponseHeader * @typedef {import("@hashgraph/proto").proto.ICryptoGetAccountRecordsQuery} HashgraphProto.proto.ICryptoGetAccountRecordsQuery * @typedef {import("@hashgraph/proto").proto.ICryptoGetAccountRecordsResponse} HashgraphProto.proto.ICryptoGetAccountRecordsResponse * @typedef {import("@hashgraph/proto").proto.ITransactionRecord} HashgraphProto.proto.ITransactionRecord */ /** * @typedef {import("../channel/Channel.js").default} Channel * @typedef {import("../client/Client.js").default<*, *>} Client */ /** * Get all the records for an account for any transfers into it and out of it, * that were above the threshold, during the last 25 hours. * * @augments {Query} */ export default class AccountRecordsQuery extends Query { /** * @internal * @param {HashgraphProto.proto.IQuery} query * @returns {AccountRecordsQuery} */ static _fromProtobuf(query: HashgraphProto.proto.IQuery): AccountRecordsQuery; /** * @param {object} [props] * @param {AccountId | string} [props.accountId] */ constructor(props?: { accountId?: string | AccountId | undefined; } | undefined); /** * @type {?AccountId} * @private */ private _accountId; /** * @returns {?AccountId} */ get accountId(): AccountId | null; /** * Set the account ID for which the records are being requested. * * @param {AccountId | string} accountId * @returns {this} */ setAccountId(accountId: AccountId | string): this; } export namespace HashgraphProto { namespace proto { type IQuery = import("@hashgraph/proto").proto.IQuery; type IQueryHeader = import("@hashgraph/proto").proto.IQueryHeader; type IResponse = import("@hashgraph/proto").proto.IResponse; type IResponseHeader = import("@hashgraph/proto").proto.IResponseHeader; type ICryptoGetAccountRecordsQuery = import("@hashgraph/proto").proto.ICryptoGetAccountRecordsQuery; type ICryptoGetAccountRecordsResponse = import("@hashgraph/proto").proto.ICryptoGetAccountRecordsResponse; type ITransactionRecord = import("@hashgraph/proto").proto.ITransactionRecord; } } export type Channel = import("../channel/Channel.js").default; export type Client = import("../client/Client.js").default; import TransactionRecord from "../transaction/TransactionRecord.js"; import Query from "../query/Query.js"; import AccountId from "./AccountId.js";