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

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

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


public class BridgePstnPins {
    /**
     * Host PSTN PIN. If it is not specified while creation, then a PIN will be generated.
     * Example: 432331057631
     */
    public String host;
    /**
     * Participant PSTN PIN. If it is not specified while creation, then a PIN will be generated.
     * Example: 013409241367
     */
    public String participant;

    public BridgePstnPins host(String host) {
        this.host = host;
        return this;
    }

    public BridgePstnPins participant(String participant) {
        this.participant = participant;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy