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

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

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


// Information on a country the state belongs to
public class GetCountryInfoState {
    /**
     * Internal identifier of a state
     */
    public String id;
    /**
     * Canonical URI of a state
     */
    public String uri;

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

    public GetCountryInfoState uri(String uri) {
        this.uri = uri;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy