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

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

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


public class CustomFieldResource {
    /**
     * Custom field identifier
     */
    public String id;
    /**
     * Object category to attach custom fields
     * Enum: User
     */
    public String category;
    /**
     * Custom field display name
     */
    public String displayName;

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

    public CustomFieldResource category(String category) {
        this.category = category;
        return this;
    }

    public CustomFieldResource displayName(String displayName) {
        this.displayName = displayName;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy