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

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

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


public class ScimUserPatch {
    /**
     * Patch operations list
     * Required
     */
    public ScimPatchOperation[] Operations;
    /**
     * Required
     * Enum: urn:ietf:params:scim:api:messages:2.0:PatchOp
     */
    public String[] schemas;

    public ScimUserPatch Operations(ScimPatchOperation[] Operations) {
        this.Operations = Operations;
        return this;
    }

    public ScimUserPatch schemas(String[] schemas) {
        this.schemas = schemas;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy