Package com.vortexsoftware.sdk.types
Class AcceptUser
java.lang.Object
com.vortexsoftware.sdk.types.AcceptUser
User data for accepting invitations
Required fields: At least one of email or phone must be provided
Optional fields:
- email: User's email address
- phone: User's phone number
- name: User's display name
Example:
AcceptUser user = new AcceptUser();
user.setEmail("user@example.com");
user.setName("John Doe");
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for Jackson deserializationAcceptUser(String email) Create a new AcceptUser with emailAcceptUser(String email, String name) Create a new AcceptUser with email and nameAcceptUser(String email, String phone, String name) Create a new AcceptUser with all fields -
Method Summary
-
Constructor Details
-
AcceptUser
public AcceptUser()Default constructor for Jackson deserialization -
AcceptUser
Create a new AcceptUser with email- Parameters:
email- User's email address
-
AcceptUser
Create a new AcceptUser with email and name- Parameters:
email- User's email addressname- User's display name
-
AcceptUser
Create a new AcceptUser with all fields- Parameters:
email- User's email addressphone- User's phone numbername- User's display name
-
-
Method Details