io.permit.sdk.openapi.models.ResourceAttributeUpdate 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;
/**
* ResourceAttributeUpdate
*
*
*
*/
@Generated("jsonschema2pojo")
public class ResourceAttributeUpdate {
@SerializedName("type")
@Expose
public AttributeType type;
/**
* Description
*
* An optional longer description of what this attribute respresents in your system
*
*/
@SerializedName("description")
@Expose
public String description;
public ResourceAttributeUpdate withType(AttributeType type) {
this.type = type;
return this;
}
public ResourceAttributeUpdate withDescription(String description) {
this.description = description;
return this;
}
}