com.ringcentral.definitions.ShippingMethodInfo Maven / Gradle / Ivy
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;
}
}