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

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

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


public class ForwardingNumberInfoRulesCreateRuleRequest {
    /**
     * Internal identifier of a forwarding number
     */
    public String id;
    /**
     * Forwarding phone number type
     * Enum: Home, Mobile, Work, PhoneLine, Outage, Other, BusinessMobilePhone, ExternalCarrier
     */
    public String type;
    /**
     * Canonical URI of a forwarding/call flip phone number
     */
    public String uri;
    /**
     * Forwarding/Call flip phone number
     */
    public String phoneNumber;
    /**
     * Forwarding/Call flip number title
     */
    public String label;

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

    public ForwardingNumberInfoRulesCreateRuleRequest type(String type) {
        this.type = type;
        return this;
    }

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

    public ForwardingNumberInfoRulesCreateRuleRequest phoneNumber(String phoneNumber) {
        this.phoneNumber = phoneNumber;
        return this;
    }

    public ForwardingNumberInfoRulesCreateRuleRequest label(String label) {
        this.label = label;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy