-
- All Implemented Interfaces:
-
android.os.Parcelable
,java.io.Serializable
public class RealmSyncResponse implements Serializable, Parcelable
Represents a response for all the accounts in a specific realm. A realm can be e.g. a bank institute.
Copyright 2017 Meniga Iceland Inc.
-
-
Field Summary
Fields Modifier and Type Field Description protected long
realmCredentialsId
protected String
realmCredentialsDisplayName
protected long
organizationId
protected String
organizationName
protected String
organizationBankCode
protected List<AccountSyncStatus>
accountSyncStatuses
protected AuthenticationChallenge
authenticationChallenge
protected boolean
isSyncDone
protected long
realmId
protected DateTime
realmSyncStartDate
protected DateTime
realmSyncEndDate
protected RealmSyncResult
status
public final static Parcelable.Creator<RealmSyncResponse>
CREATOR
-
Method Summary
Modifier and Type Method Description int
describeContents()
void
writeToParcel(Parcel dest, int flags)
boolean
equals(Object o)
int
hashCode()
long
getRealmCredentialsId()
String
getRealmCredentialsDisplayName()
long
getOrganizationId()
String
getOrganizationName()
String
getOrganizationBankCode()
List<AccountSyncStatus>
getAccountSyncStatuses()
AuthenticationChallenge
getAuthenticationChallenge()
boolean
isSyncDone()
long
getRealmId()
DateTime
getRealmSyncStartDate()
DateTime
getRealmSyncEndDate()
RealmSyncResult
getStatus()
-
-
Method Detail
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(Parcel dest, int flags)
-
hashCode
int hashCode()
-
getRealmCredentialsId
long getRealmCredentialsId()
-
getRealmCredentialsDisplayName
String getRealmCredentialsDisplayName()
-
getOrganizationId
long getOrganizationId()
-
getOrganizationName
String getOrganizationName()
-
getOrganizationBankCode
String getOrganizationBankCode()
-
getAccountSyncStatuses
List<AccountSyncStatus> getAccountSyncStatuses()
-
getAuthenticationChallenge
AuthenticationChallenge getAuthenticationChallenge()
-
isSyncDone
boolean isSyncDone()
-
getRealmId
long getRealmId()
-
getRealmSyncStartDate
DateTime getRealmSyncStartDate()
-
getRealmSyncEndDate
DateTime getRealmSyncEndDate()
-
getStatus
RealmSyncResult getStatus()
-
-
-
-