public class GetAccountHistoryArgs extends Object
| Constructor and Description |
|---|
GetAccountHistoryArgs(AccountName account,
org.joou.ULong start,
org.joou.UInteger limit)
Create a new
GetAccountHistoryArgs instance to be passed to the
AccountHistoryApi.getAccountHistory(CommunicationHandler, GetAccountHistoryArgs)
method. |
| Modifier and Type | Method and Description |
|---|---|
AccountName |
getAccount() |
org.joou.UInteger |
getLimit() |
org.joou.ULong |
getStart() |
void |
setAccount(AccountName account)
Override the currently configured
account to request the
history for. |
void |
setLimit(org.joou.UInteger limit)
Override the currently configured
limit parameter. |
void |
setStart(org.joou.ULong start)
Override the currently configured
start parameter. |
String |
toString() |
public GetAccountHistoryArgs(AccountName account, @Nullable org.joou.ULong start, @Nullable org.joou.UInteger limit)
GetAccountHistoryArgs instance to be passed to the
AccountHistoryApi.getAccountHistory(CommunicationHandler, GetAccountHistoryArgs)
method.
Define how many operations (see setLimit(UInteger) and
setStart(ULong)) for which account are requested.
account - The account name to request the history for.start - The id of the first operation to return. If not provided,
-1 will be used as a default value.limit - The number of results to return. If not provided,
1000 will be used as a default value.public AccountName getAccount()
account to request the
history for.public void setAccount(AccountName account)
account to request the
history for.account - The account to request the history for.public org.joou.ULong getStart()
start parameter.public void setStart(org.joou.ULong start)
start parameter. The
start parameter defines the first operation returned.start - The start parameter to set.public org.joou.UInteger getLimit()
public void setLimit(@Nullable org.joou.UInteger limit)
limit parameter. The
limit parameter defines how many operations made by the
Account are requested.limit - The limit parameter to set.Copyright © 2019. All rights reserved.