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

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

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


public class AddDeviceToInventoryRequest {
    /**
     * Device type. Use `OtherPhone` to indicate BYOD (customer provided) device
     * Required
     * Enum: OtherPhone
     */
    public String type;
    /**
     * Quantity of devices (total quantity should not exceed 50)
     * Required
     * Maximum: 50
     * Minimum: 1
     * Format: int32
     */
    public Long quantity;
    /**
     *
     */
    public AddDeviceToInventoryRequestSite site;

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

    public AddDeviceToInventoryRequest quantity(Long quantity) {
        this.quantity = quantity;
        return this;
    }

    public AddDeviceToInventoryRequest site(AddDeviceToInventoryRequestSite site) {
        this.site = site;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy