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

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

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


public class CallersInfoRequest {
    /**
     * Phone number of a caller
     */
    public String callerId;
    /**
     * Contact name of a caller
     */
    public String name;

    public CallersInfoRequest callerId(String callerId) {
        this.callerId = callerId;
        return this;
    }

    public CallersInfoRequest name(String name) {
        this.name = name;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy