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

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

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


/**
 * Personal contact information
 */
public class BasicContactInfo {
    /**
     * Given name
     * Example: John
     */
    public String firstName;
    /**
     * Family name
     * Example: Smith
     */
    public String lastName;
    /**
     * Contact email
     * Format: email
     * Example: [email protected]
     */
    public String email;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy