-
- 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 class
Customer.Builder
-
Method Summary
Modifier and Type Method Description String
getGivenName()
Returns the given name or first name of customer. String
getSurname()
Returns the last name or surname of customer. String
getPhone()
Returns the phone number of customer. String
getEmail()
Returns the email of customer. int
describeContents()
void
writeToParcel(@NonNull() Parcel dest, int flags)
boolean
equals(Object o)
int
hashCode()
-
-
Method Detail
-
getGivenName
@Nullable() String getGivenName()
Returns the given name or first name of customer.
-
getSurname
@Nullable() String getSurname()
Returns the last name or surname of customer.
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(@NonNull() Parcel dest, int flags)
-
hashCode
int hashCode()
-
-
-
-