io.permit.sdk.openapi.models.BulkRoleUnassignmentReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permit-sdk-java Show documentation
Show all versions of permit-sdk-java Show documentation
Java SDK for Permit.io: fullstack permissions for cloud native applications
package io.permit.sdk.openapi.models;
import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
/**
* BulkRoleUnAssignmentReport
*
*
*
*/
@Generated("jsonschema2pojo")
public class BulkRoleUnassignmentReport {
/**
* Assignments Removed
*
*
*
*/
@SerializedName("assignments_removed")
@Expose
public Integer assignmentsRemoved = 0;
public BulkRoleUnassignmentReport withAssignmentsRemoved(Integer assignmentsRemoved) {
this.assignmentsRemoved = assignmentsRemoved;
return this;
}
}