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

io.permit.sdk.openapi.models.OrganizationUpdate 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;


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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy