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

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

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


/**
 * Target number country information. Either `id` or `isoCode` can be specified.
 */
public class SmsRequestCountryInfo {
    /**
     * Internal identifier of a country
     */
    public String id;
    /**
     * ISO 3166-1 alpha-2 code of a country
     */
    public String isoCode;

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

    public SmsRequestCountryInfo isoCode(String isoCode) {
        this.isoCode = isoCode;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy