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

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

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


public class BulkDeleteUsersRequest {
    /**
     * Indicates that the freed users' assets (phone numbers and devices) should be moved
     * to account inventory rather then deleted. If set to 'True, the phone numbers and devices
     * assigned to deleted extensions will be kept in the account's inventory. If set to 'False',
     * these assets will be deleted from the account and returned to either the partner's phone
     * numbers or RingCentral's phone number pool
     * Default: true
     */
    public Boolean keepAssetsInInventory;
    /**
     * Required
     */
    public BulkOperationExtensionReference[] records;

    public BulkDeleteUsersRequest keepAssetsInInventory(Boolean keepAssetsInInventory) {
        this.keepAssetsInInventory = keepAssetsInInventory;
        return this;
    }

    public BulkDeleteUsersRequest records(BulkOperationExtensionReference[] records) {
        this.records = records;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy