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

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

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


public class MakeCallOutRequest {
    /**
     * Required
     */
    public MakeCallOutCallerInfoRequestFrom from;
    /**
     * Required
     */
    public MakeCallOutCallerInfoRequestTo to;
    /**
     * Optional. Dialing plan country data. If not specified, then extension home country is applied by default.
     * Format: int64
     */
    public Long countryId;

    public MakeCallOutRequest from(MakeCallOutCallerInfoRequestFrom from) {
        this.from = from;
        return this;
    }

    public MakeCallOutRequest to(MakeCallOutCallerInfoRequestTo to) {
        this.to = to;
        return this;
    }

    public MakeCallOutRequest countryId(Long countryId) {
        this.countryId = countryId;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy