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

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

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


public class BulkDeleteUsersResponseRecords {
    /**
     * Internal identifier of an extension
     * Example: 1162820004
     */
    public String id;
    /**
     * Indicates if this item was processed successfully during bulk operation.
     * If false, `bulkItemErrors` attribute contains the list of errors
     * Example: true
     */
    public Boolean bulkItemSuccessful;
    /**
     * The list of errors occurred during processing of particular item of bulk operation.
     * Returned only if `bulkItemSuccessful` is false
     */
    public ApiError[] bulkItemErrors;

    public BulkDeleteUsersResponseRecords id(String id) {
        this.id = id;
        return this;
    }

    public BulkDeleteUsersResponseRecords bulkItemSuccessful(Boolean bulkItemSuccessful) {
        this.bulkItemSuccessful = bulkItemSuccessful;
        return this;
    }

    public BulkDeleteUsersResponseRecords bulkItemErrors(ApiError[] bulkItemErrors) {
        this.bulkItemErrors = bulkItemErrors;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy