All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ringcentral.definitions.UserTransitionInfo Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package com.ringcentral.definitions;


/**
 * For NotActivated extensions only. Welcome email settings
 */
public class UserTransitionInfo {
    /**
     * Specifies if a welcome/activation email is sent to the existing
     * users during account confirmation
     */
    public Boolean sendWelcomeEmailsToUsers;
    /**
     * Specifies if a welcome/activation email is sent to the new users (within extension status changing from
     * 'Unassigned' to 'NotActivated/Disabled')
     */
    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