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

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

There is a newer version: 983f46e
Show newest version

package io.permit.sdk.openapi.models;

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


/**
 * ResourceActionUpdate
 * 

* * */ @Generated("jsonschema2pojo") public class ResourceActionUpdate { /** * Name *

* The name of the action * */ @SerializedName("name") @Expose public String name; /** * Description *

* An optional longer description of what this action respresents in your system * */ @SerializedName("description") @Expose public String description; /** * Attributes *

* optional dictionary of key-value pairs that can be used to store arbitrary metadata about this action. This metadata can be used to filter actions using query parameters with attr_ prefix * */ @SerializedName("attributes") @Expose public HashMap attributes; public ResourceActionUpdate withName(String name) { this.name = name; return this; } public ResourceActionUpdate withDescription(String description) { this.description = description; return this; } public ResourceActionUpdate withAttributes(HashMap attributes) { this.attributes = attributes; return this; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy