io.permit.sdk.openapi.models.OrganizationUpdate 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;
/**
* OrganizationUpdate
*
*
*
*/
@Generated("jsonschema2pojo")
public class OrganizationUpdate {
/**
* Name
*
* The name of the organization, usually it's your company's name.
*
*/
@SerializedName("name")
@Expose
public String name;
/**
* Settings
*
* the settings for this project
*
*/
@SerializedName("settings")
@Expose
public Settings__3 settings;
public OrganizationUpdate withName(String name) {
this.name = name;
return this;
}
public OrganizationUpdate withSettings(Settings__3 settings) {
this.settings = settings;
return this;
}
}