com.ringcentral.definitions.UserTransitionInfo Maven / Gradle / Ivy
package com.ringcentral.definitions;
public class UserTransitionInfo {
/**
* Specifies if an activation email is automatically sent to new users (Not Activated extensions) or not
*/
public Boolean sendWelcomeEmailsToUsers;
/**
* Supported for account confirmation. Specifies whether welcome email is sent
*/
public Boolean sendWelcomeEmail;
public UserTransitionInfo sendWelcomeEmailsToUsers(Boolean sendWelcomeEmailsToUsers) {
this.sendWelcomeEmailsToUsers = sendWelcomeEmailsToUsers;
return this;
}
public UserTransitionInfo sendWelcomeEmail(Boolean sendWelcomeEmail) {
this.sendWelcomeEmail = sendWelcomeEmail;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy