Class NeonAccount
- java.lang.Object
-
- com.trx.neon.api.neonSettings.model.NeonAccount
-
- All Implemented Interfaces:
android.os.Parcelable
public final class NeonAccount extends java.lang.Object implements android.os.Parcelable
NEON account information Information on the account that the user is currently logged into
-
-
Field Summary
Fields Modifier and Type Field Description static android.os.Parcelable.Creator<NeonAccount>
CREATOR
Used for sending data across bindersjava.lang.String
NodeId
Node Idjava.lang.String
Server
Server endpointjava.lang.String
UserName
User email, user name, api-key, or some other form of identification
-
Constructor Summary
Constructors Constructor Description NeonAccount(java.lang.String server, java.lang.String userName, java.lang.String nodeId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
describeContents()
void
writeToParcel(android.os.Parcel dest, int flags)
-
-
-
Field Detail
-
Server
public final java.lang.String Server
Server endpoint
-
UserName
public final java.lang.String UserName
User email, user name, api-key, or some other form of identification
-
NodeId
public final java.lang.String NodeId
Node Id
-
CREATOR
public static final android.os.Parcelable.Creator<NeonAccount> CREATOR
Used for sending data across binders
-
-