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

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

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


public class AddPartyRequest {
    /**
     * Internal identifier of a call session
     * Required
     */
    public String sessionId;
    /**
     * Internal identifier of a party that should be added to the call session
     * Required
     */
    public String partyId;

    public AddPartyRequest sessionId(String sessionId) {
        this.sessionId = sessionId;
        return this;
    }

    public AddPartyRequest partyId(String partyId) {
        this.partyId = partyId;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy