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

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

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


/**
 * Personal contact information
 */
public class BasicContactInfoWithPhone {
    /**
     * Given name
     * Example: John
     */
    public String firstName;
    /**
     * Family name
     * Example: Smith
     */
    public String lastName;
    /**
     * Contact email
     * Format: email
     * Example: [email protected]
     */
    public String email;
    /**
     * Phone number in e.164 format (with '+' prefix)
     * Example: +16501234567
     */
    public String contactPhone;

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

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

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

    public BasicContactInfoWithPhone contactPhone(String contactPhone) {
        this.contactPhone = contactPhone;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy