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

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

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


public class TMAddTeamMembersRequestMembers {
    /**
     * Internal identifier of a person
     */
    public String id;
    /**
     * Email of a person
     * Format: email
     */
    public String email;

    public TMAddTeamMembersRequestMembers id(String id) {
        this.id = id;
        return this;
    }

    public TMAddTeamMembersRequestMembers email(String email) {
        this.email = email;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy