Package com.creditcall.chipdnamobile
Class CardHash
- java.lang.Object
-
- com.creditcall.chipdnamobile.CardHash
-
- All Implemented Interfaces:
android.os.Parcelable
public class CardHash extends java.lang.Object implements android.os.ParcelableContains data representing information about a generated card hash.- Author:
- Creditcall Ltd
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCardHash.ScopeScope defines the set of devices that would generate this same hash for a particular card.static classCardHash.SourceSource from where the CardHash was generated.
-
Constructor Summary
Constructors Constructor Description CardHash(android.os.Parcel in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intdescribeContents()CardHash.ScopegetScope()Scope defines the set of devices that would generate this same hash for a particular card.CardHash.SourcegetSource()Source from where the CardHash was generated.java.lang.StringgetValue()Get the card hash value.voidwriteToParcel(android.os.Parcel dest, int flags)
-
-
-
Field Detail
-
CREATOR
public static final android.os.Parcelable.Creator<CardHash> CREATOR
-
-
Method Detail
-
getValue
public java.lang.String getValue()
Get the card hash value.- Returns:
- The card hash value.
-
getScope
public CardHash.Scope getScope()
Scope defines the set of devices that would generate this same hash for a particular card.- Returns:
- The scope of the card hash.
-
getSource
public CardHash.Source getSource()
Source from where the CardHash was generated.- Returns:
- The source of the card hash.
-
writeToParcel
public void writeToParcel(android.os.Parcel dest, int flags)- Specified by:
writeToParcelin interfaceandroid.os.Parcelable
-
describeContents
public int describeContents()
- Specified by:
describeContentsin interfaceandroid.os.Parcelable
-
-