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

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

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


/**
 * Devices shipping method. It is required if devices are ordered.
 * Availability of different shipping methods depends on package
 * definition.
 */
public class ShippingMethodInfo {
    /**
     * Shipping method ID:
     * - "1" - Ground Shipping (5-7 business days)
     * - "2" - Expedited Shipping (2-days)
     * - "3" - Overnight Shipping
     * Required
     * Default: 1
     * Enum: 1, 2, 3
     */
    public String id;
    /**
     * Method name, corresponding to the identifier
     * Enum: Ground, 2 Day, Overnight
     */
    public String name;

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

    public ShippingMethodInfo name(String name) {
        this.name = name;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy