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

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

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


// Call recording data. Returned if the call is recorded - `withRecording` parameter is set to 'True' in this case
public class CallLogRecordingInfo {
    /**
     * Internal identifier of the call recording
     */
    public String id;
    /**
     * Link to the call recording metadata resource
     */
    public String uri;
    /**
     * Indicates recording mode used
     * Enum: Automatic, OnDemand
     */
    public String type;
    /**
     * Link to the call recording binary content
     */
    public String contentUri;

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

    public CallLogRecordingInfo uri(String uri) {
        this.uri = uri;
        return this;
    }

    public CallLogRecordingInfo type(String type) {
        this.type = type;
        return this;
    }

    public CallLogRecordingInfo contentUri(String contentUri) {
        this.contentUri = contentUri;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy