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

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

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


/**
 * Company business address
 */
public class BusinessAddressInfo {
    /**
     * Name of a country
     */
    public String country;
    /**
     * Name of a state/province
     */
    public String state;
    /**
     * Name of a city
     */
    public String city;
    /**
     * Street address
     */
    public String street;
    /**
     * Zip code
     */
    public String zip;

    public BusinessAddressInfo country(String country) {
        this.country = country;
        return this;
    }

    public BusinessAddressInfo state(String state) {
        this.state = state;
        return this;
    }

    public BusinessAddressInfo city(String city) {
        this.city = city;
        return this;
    }

    public BusinessAddressInfo street(String street) {
        this.street = street;
        return this;
    }

    public BusinessAddressInfo zip(String zip) {
        this.zip = zip;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy