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

io.permit.sdk.openapi.models.DerivedRole Maven / Gradle / Ivy

There is a newer version: 983f46e
Show newest version

package io.permit.sdk.openapi.models;

import java.util.List;
import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;


/**
 * DerivedRole
 * 

* * */ @Generated("jsonschema2pojo") public class DerivedRole { /** * Conditions *

* * */ @SerializedName("conditions") @Expose public String conditions; /** * * (Required) * */ @SerializedName("settings") @Expose public DerivedRoleSettings settings; /** * Rules *

* * (Required) * */ @SerializedName("rules") @Expose public List rules; /** * No args constructor for use in serialization * */ public DerivedRole() { } /** * * @param settings * @param rules */ public DerivedRole(DerivedRoleSettings settings, List rules) { super(); this.settings = settings; this.rules = rules; } public DerivedRole withConditions(String conditions) { this.conditions = conditions; return this; } public DerivedRole withSettings(DerivedRoleSettings settings) { this.settings = settings; return this; } public DerivedRole withRules(List rules) { this.rules = rules; return this; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy