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

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

package com.ringcentral.definitions;


/**
 * Account sub-brand information
 */
public class ServiceInfoUBrand {
    /**
     * Sub-brand unique ID
     * Example: 111.222
     */
    public String id;
    /**
     * Sub-brand name
     * Example: Sub-brand name
     */
    public String name;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy