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

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

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


public class ScimPatchOperation {
    /**
     * Required
     * Enum: add, replace, remove
     */
    public String op;
    /**
     *
     */
    public String path;
    /**
     * Corresponding 'value' of that field specified by 'path'
     */
    public String value;

    public ScimPatchOperation op(String op) {
        this.op = op;
        return this;
    }

    public ScimPatchOperation path(String path) {
        this.path = path;
        return this;
    }

    public ScimPatchOperation value(String value) {
        this.value = value;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy