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

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

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


/**
 * Task detailed result. Returned for failed and completed tasks
 */
public class TaskResultInfo {
    /**
     * Detailed task results by elements from initial request
     */
    public TaskResultRecord[] records;

    public TaskResultInfo records(TaskResultRecord[] records) {
        this.records = records;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy