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

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

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


public class ParsePhoneNumberResponse {
    /**
     * Canonical URI of a resource
     */
    public String uri;
    /**
     * Required
     */
    public GetCountryInfoNumberParser homeCountry;
    /**
     * Parsed phone numbers data
     * Required
     */
    public PhoneNumberInfoNumberParser[] phoneNumbers;

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

    public ParsePhoneNumberResponse homeCountry(GetCountryInfoNumberParser homeCountry) {
        this.homeCountry = homeCountry;
        return this;
    }

    public ParsePhoneNumberResponse phoneNumbers(PhoneNumberInfoNumberParser[] phoneNumbers) {
        this.phoneNumbers = phoneNumbers;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy