BitcoinLib.Services.CoinService.ListReceivedByAccount C# (CSharp) Method

ListReceivedByAccount() public method

public ListReceivedByAccount ( int minConf, bool includeEmpty, bool includeWatchonly ) : List
minConf int
includeEmpty bool
includeWatchonly bool
return List
        public List<ListReceivedByAccountResponse> ListReceivedByAccount(int minConf, bool includeEmpty, bool? includeWatchonly)
        {
            return includeWatchonly == null
                ? _rpcConnector.MakeRequest<List<ListReceivedByAccountResponse>>(RpcMethods.listreceivedbyaccount, minConf, includeEmpty)
                : _rpcConnector.MakeRequest<List<ListReceivedByAccountResponse>>(RpcMethods.listreceivedbyaccount, minConf, includeEmpty, includeWatchonly);
        }