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

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

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


/**
 * Linked message (Fax/Voicemail)
 */
public class CallLogRecordMessage {
    /**
     * Internal identifier of a message
     * Required
     */
    public String id;
    /**
     * Type of message
     * Required
     */
    public String type;
    /**
     * Link to a message resource
     * Required
     * Format: uri
     */
    public String uri;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy