Package com.oppwa.mobile.connect.payment
Class Customer
-
- All Implemented Interfaces:
-
android.os.Parcelable
public class Customer implements Parcelable
The Customer holds the customer details.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classCustomer.Builder
-
Method Summary
Modifier and Type Method Description StringgetGivenName()Returns the given name or first name of customer. StringgetSurname()Returns the last name or surname of customer. StringgetPhone()Returns the phone number of customer. StringgetEmail()Returns the email of customer. intdescribeContents()voidwriteToParcel(@NonNull() Parcel dest, int flags)booleanequals(Object o)inthashCode()-
-
Method Detail
-
getGivenName
@Nullable() String getGivenName()
Returns the given name or first name of customer.
- Returns:
the given name or first name
-
getSurname
@Nullable() String getSurname()
Returns the last name or surname of customer.
- Returns:
the last name or surname
-
getPhone
@Nullable() String getPhone()
Returns the phone number of customer.
- Returns:
the phone number
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(@NonNull() Parcel dest, int flags)
-
hashCode
int hashCode()
-
-
-
-