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

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

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


public class OptOutBulkAssignResponseOptIns {
    /**
     * Recipients' phone numbers which opt-ins were successfully added for.
     * Example: +15551237799
     */
    public String[] successful;
    /**
     * Recipients' phone numbers which opt-ins were failed to be added for. Plus, error messages
     * Example: [object Object]
     */
    public OptOutBulkAssignFailedEntry[] failed;

    public OptOutBulkAssignResponseOptIns successful(String[] successful) {
        this.successful = successful;
        return this;
    }

    public OptOutBulkAssignResponseOptIns failed(OptOutBulkAssignFailedEntry[] failed) {
        this.failed = failed;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy