com.ringcentral.definitions.SIPInfoRequest Maven / Gradle / Ivy
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