-
- All Implemented Interfaces:
-
android.os.Parcelable
,java.io.Serializable
public class MenigaTopMerchant implements Parcelable, Serializable
Copyright 2017 Meniga Iceland Inc.
-
-
Field Summary
Fields Modifier and Type Field Description protected long
merchantId
protected String
text
protected MenigaDecimal
nettoAmount
protected int
transactionCount
public final static Parcelable.Creator<MenigaTopMerchant>
CREATOR
-
Method Summary
Modifier and Type Method Description static void
setOperator(MenigaTopMerchantOperations operator)
Sets the api operator for doing api calls boolean
equals(Object o)
int
hashCode()
int
describeContents()
void
writeToParcel(Parcel dest, int flags)
static Result<List<MenigaTopMerchant>>
fetch(TransactionsFilter filter, TopMerchantOptions options)
Gets a list of top merchants long
getMerchantId()
String
getText()
MenigaDecimal
getNettoAmount()
int
getTransactionCount()
-
-
Method Detail
-
setOperator
static void setOperator(MenigaTopMerchantOperations operator)
Sets the api operator for doing api calls
- Parameters:
operator
- An object that implements the MenigaTopMerchantOperations interface for carrying out api operations on this class.
-
hashCode
int hashCode()
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(Parcel dest, int flags)
-
fetch
static Result<List<MenigaTopMerchant>> fetch(TransactionsFilter filter, TopMerchantOptions options)
Gets a list of top merchants
- Parameters:
filter
- Transaction filteroptions
- Top merchant filter
-
getMerchantId
long getMerchantId()
-
getNettoAmount
MenigaDecimal getNettoAmount()
-
getTransactionCount
int getTransactionCount()
-
-
-
-