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

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

There is a newer version: 983f46e
Show newest version

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; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy