Interface TransactionData.UserOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TransactionData.User
,TransactionData.User.Builder
- Enclosing class:
- TransactionData
public static interface TransactionData.UserOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAccountId()
Unique account identifier for this user.com.google.protobuf.ByteString
getAccountIdBytes()
Unique account identifier for this user.long
getCreationMs()
The epoch milliseconds of the user's account creation.String
getEmail()
The email address of the user.com.google.protobuf.ByteString
getEmailBytes()
The email address of the user.boolean
getEmailVerified()
Whether the email has been verified to be accessible by the user (OTP or similar).String
getPhoneNumber()
The phone number of the user, with country code.com.google.protobuf.ByteString
getPhoneNumberBytes()
The phone number of the user, with country code.boolean
getPhoneVerified()
Whether the phone number has been verified to be accessible by the user (OTP or similar).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAccountId
String getAccountId()
Unique account identifier for this user. If using account defender, this should match the hashed_account_id field. Otherwise, a unique and persistent identifier for this account.
string account_id = 6;
- Returns:
- The accountId.
-
getAccountIdBytes
com.google.protobuf.ByteString getAccountIdBytes()
Unique account identifier for this user. If using account defender, this should match the hashed_account_id field. Otherwise, a unique and persistent identifier for this account.
string account_id = 6;
- Returns:
- The bytes for accountId.
-
getCreationMs
long getCreationMs()
The epoch milliseconds of the user's account creation.
int64 creation_ms = 1;
- Returns:
- The creationMs.
-
getEmail
String getEmail()
The email address of the user.
string email = 2;
- Returns:
- The email.
-
getEmailBytes
com.google.protobuf.ByteString getEmailBytes()
The email address of the user.
string email = 2;
- Returns:
- The bytes for email.
-
getEmailVerified
boolean getEmailVerified()
Whether the email has been verified to be accessible by the user (OTP or similar).
bool email_verified = 3;
- Returns:
- The emailVerified.
-
getPhoneNumber
String getPhoneNumber()
The phone number of the user, with country code.
string phone_number = 4;
- Returns:
- The phoneNumber.
-
getPhoneNumberBytes
com.google.protobuf.ByteString getPhoneNumberBytes()
The phone number of the user, with country code.
string phone_number = 4;
- Returns:
- The bytes for phoneNumber.
-
getPhoneVerified
boolean getPhoneVerified()
Whether the phone number has been verified to be accessible by the user (OTP or similar).
bool phone_verified = 5;
- Returns:
- The phoneVerified.
-
-