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

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

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


public class CallLogRecordDeviceInfo {
    /**
     * Internal identifier of a device
     */
    public String id;
    /**
     * string to a device
     */
    public String uri;

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy