-
- All Implemented Interfaces:
-
android.os.Parcelable
,java.io.Serializable
public class AccountSyncStatus implements Serializable, Parcelable
Contains further details about the sync status of specific accounts.
Copyright 2017 Meniga Iceland Inc.
-
-
Field Summary
Fields Modifier and Type Field Description protected long
accountId
protected Integer
transactionsProcessed
protected MenigaDecimal
balance
protected MenigaDecimal
limit
protected Integer
totalTransactions
protected DateTime
startDate
protected DateTime
endDate
protected String
accountStatus
protected AccountSyncResult
status
public final static Parcelable.Creator<AccountSyncStatus>
CREATOR
-
Method Summary
Modifier and Type Method Description boolean
equals(Object o)
int
hashCode()
int
describeContents()
void
writeToParcel(Parcel dest, int flags)
long
getAccountId()
Integer
getTransactionsProcessed()
MenigaDecimal
getBalance()
MenigaDecimal
getLimit()
Integer
getTotalTransactions()
DateTime
getStartDate()
DateTime
getEndDate()
String
getAccountStatus()
AccountSyncResult
getStatus()
-
-
Method Detail
-
hashCode
int hashCode()
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(Parcel dest, int flags)
-
getAccountId
long getAccountId()
-
getTransactionsProcessed
Integer getTransactionsProcessed()
-
getBalance
MenigaDecimal getBalance()
-
getLimit
MenigaDecimal getLimit()
-
getTotalTransactions
Integer getTotalTransactions()
-
getStartDate
DateTime getStartDate()
-
getEndDate
DateTime getEndDate()
-
getAccountStatus
String getAccountStatus()
-
getStatus
AccountSyncResult getStatus()
-
-
-
-