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

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

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

import com.google.gson.annotations.SerializedName;


/**
 * Service Plan information (billing package, brand, etc)
 */
public class ServiceInfoV2 {
    /**
     * Required
     */
    @SerializedName("package")
    public ServiceInfoPackage _package;
    /**
     *
     */
    public ServiceInfoBrand brand;

    public ServiceInfoV2 _package(ServiceInfoPackage _package) {
        this._package = _package;
        return this;
    }

    public ServiceInfoV2 brand(ServiceInfoBrand brand) {
        this.brand = brand;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy