io.permit.sdk.openapi.models.ResourceInstanceUpdate 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;
/**
* ResourceInstanceUpdate
*
*
*
*/
@Generated("jsonschema2pojo")
public class ResourceInstanceUpdate {
/**
* Attributes
*
* Arbitraty resource attributes that will be used to enforce attribute-based access control policies.
*
*/
@SerializedName("attributes")
@Expose
public Attributes attributes;
public ResourceInstanceUpdate withAttributes(Attributes attributes) {
this.attributes = attributes;
return this;
}
}