Пример #1
0
 public LedgerResponse(long sequence, string hash, string pagingToken, string prevHash, int transactionCount, int operationCount, string closedAt, string totalCoins, string feePool, long baseFee, String baseReserve, int maxTxSetSize, LedgerResponseLinks links)
 {
     Sequence         = sequence;
     Hash             = hash;
     PagingToken      = pagingToken;
     PrevHash         = prevHash;
     TransactionCount = transactionCount;
     OperationCount   = operationCount;
     ClosedAt         = closedAt;
     TotalCoins       = totalCoins;
     FeePool          = feePool;
     BaseFee          = baseFee;
     BaseReserve      = baseReserve;
     MaxTxSetSize     = maxTxSetSize;
     Links            = links;
 }
 public LedgerResponse(uint sequence, String hash, String pagingToken, String prevHash,
                       int?failedTransactionCount, int successfulTransactionCount, int operationCount, String closedAt,
                       String totalCoins, String feePool, long baseFee, String baseReserve, String baseFeeInStroops,
                       String baseReserveInStroops, int maxTxSetSize, LedgerResponseLinks links)
 {
     Sequence                   = sequence;
     Hash                       = hash;
     PagingToken                = pagingToken;
     PrevHash                   = prevHash;
     FailedTransactionCount     = failedTransactionCount;
     SuccessfulTransactionCount = successfulTransactionCount;
     OperationCount             = operationCount;
     ClosedAt                   = closedAt;
     TotalCoins                 = totalCoins;
     FeePool                    = feePool;
     BaseFee                    = baseFee;
     BaseFeeInStroops           = baseFeeInStroops;
     BaseReserve                = baseReserve;
     BaseReserveInStroops       = baseReserveInStroops;
     MaxTxSetSize               = maxTxSetSize;
     Links                      = links;
 }