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

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

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


/**
 * The internal IDs of RC-authenticated users.
 */
public class HostModel {
    /**
     * First (given) name
     * Example: John
     */
    public String firstName;
    /**
     * Last (family) name
     * Example: Doe
     */
    public String lastName;
    /**
     *
     */
    public RcwDomainUserModel linkedUser;

    public HostModel firstName(String firstName) {
        this.firstName = firstName;
        return this;
    }

    public HostModel lastName(String lastName) {
        this.lastName = lastName;
        return this;
    }

    public HostModel linkedUser(RcwDomainUserModel linkedUser) {
        this.linkedUser = linkedUser;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy