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

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

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


public class ForwardingNumberResource {
    /**
     * Format: uri
     */
    public String uri;
    /**
     *
     */
    public String id;
    /**
     *
     */
    public String phoneNumber;
    /**
     *
     */
    public String label;
    /**
     * Enum: CallFlip, CallForwarding
     */
    public String[] features;
    /**
     *
     */
    public String flipNumber;
    /**
     * Forwarding phone number type
     * Enum: Home, Mobile, Work, PhoneLine, Outage, Other
     */
    public String type;

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

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

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

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

    public ForwardingNumberResource features(String[] features) {
        this.features = features;
        return this;
    }

    public ForwardingNumberResource flipNumber(String flipNumber) {
        this.flipNumber = flipNumber;
        return this;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy