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

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

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


public class SIPInfoRequest {
    /**
     * Supported transport. SIP info will be returned for this transport if supported
     * Enum: UDP, TCP, TLS, WSS
     */
    public String transport;

    public SIPInfoRequest transport(String transport) {
        this.transport = transport;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy