Package com.launchdarkly.api.model
Class CustomRolePostData
- java.lang.Object
-
- com.launchdarkly.api.model.CustomRolePostData
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2023-04-19T22:24:20.163470Z[Etc/UTC]") public class CustomRolePostData extends java.lang.ObjectCustomRolePostData
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCustomRolePostData.CustomTypeAdapterFactory
-
Field Summary
Fields Modifier and Type Field Description static java.util.HashSet<java.lang.String>openapiFieldsstatic java.util.HashSet<java.lang.String>openapiRequiredFieldsstatic java.lang.StringSERIALIZED_NAME_BASE_PERMISSIONSstatic java.lang.StringSERIALIZED_NAME_DESCRIPTIONstatic java.lang.StringSERIALIZED_NAME_KEYstatic java.lang.StringSERIALIZED_NAME_NAMEstatic java.lang.StringSERIALIZED_NAME_POLICY
-
Constructor Summary
Constructors Constructor Description CustomRolePostData()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CustomRolePostDataaddPolicyItem(StatementPost policyItem)CustomRolePostDatabasePermissions(java.lang.String basePermissions)CustomRolePostDatadescription(java.lang.String description)booleanequals(java.lang.Object o)static CustomRolePostDatafromJson(java.lang.String jsonString)Create an instance of CustomRolePostData given an JSON stringjava.util.Map<java.lang.String,java.lang.Object>getAdditionalProperties()Return the additional (undeclared) property.java.lang.ObjectgetAdditionalProperty(java.lang.String key)Return the additional (undeclared) property with the specified name.java.lang.StringgetBasePermissions()Get basePermissionsjava.lang.StringgetDescription()Description of custom rolejava.lang.StringgetKey()The custom role keyjava.lang.StringgetName()A human-friendly name for the custom rolejava.util.List<StatementPost>getPolicy()Get policyinthashCode()CustomRolePostDatakey(java.lang.String key)CustomRolePostDataname(java.lang.String name)CustomRolePostDatapolicy(java.util.List<StatementPost> policy)CustomRolePostDataputAdditionalProperty(java.lang.String key, java.lang.Object value)Set the additional (undeclared) property with the specified name and value.voidsetBasePermissions(java.lang.String basePermissions)voidsetDescription(java.lang.String description)voidsetKey(java.lang.String key)voidsetName(java.lang.String name)voidsetPolicy(java.util.List<StatementPost> policy)java.lang.StringtoJson()Convert an instance of CustomRolePostData to an JSON stringjava.lang.StringtoString()static voidvalidateJsonObject(com.google.gson.JsonObject jsonObj)Validates the JSON Object and throws an exception if issues found
-
-
-
Field Detail
-
SERIALIZED_NAME_NAME
public static final java.lang.String SERIALIZED_NAME_NAME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_KEY
public static final java.lang.String SERIALIZED_NAME_KEY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_DESCRIPTION
public static final java.lang.String SERIALIZED_NAME_DESCRIPTION
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_POLICY
public static final java.lang.String SERIALIZED_NAME_POLICY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_BASE_PERMISSIONS
public static final java.lang.String SERIALIZED_NAME_BASE_PERMISSIONS
- See Also:
- Constant Field Values
-
openapiFields
public static java.util.HashSet<java.lang.String> openapiFields
-
openapiRequiredFields
public static java.util.HashSet<java.lang.String> openapiRequiredFields
-
-
Method Detail
-
name
public CustomRolePostData name(java.lang.String name)
-
getName
@Nonnull public java.lang.String getName()
A human-friendly name for the custom role- Returns:
- name
-
setName
public void setName(java.lang.String name)
-
key
public CustomRolePostData key(java.lang.String key)
-
getKey
@Nonnull public java.lang.String getKey()
The custom role key- Returns:
- key
-
setKey
public void setKey(java.lang.String key)
-
description
public CustomRolePostData description(java.lang.String description)
-
getDescription
@Nullable public java.lang.String getDescription()
Description of custom role- Returns:
- description
-
setDescription
public void setDescription(java.lang.String description)
-
policy
public CustomRolePostData policy(java.util.List<StatementPost> policy)
-
addPolicyItem
public CustomRolePostData addPolicyItem(StatementPost policyItem)
-
getPolicy
@Nonnull public java.util.List<StatementPost> getPolicy()
Get policy- Returns:
- policy
-
setPolicy
public void setPolicy(java.util.List<StatementPost> policy)
-
basePermissions
public CustomRolePostData basePermissions(java.lang.String basePermissions)
-
getBasePermissions
@Nullable public java.lang.String getBasePermissions()
Get basePermissions- Returns:
- basePermissions
-
setBasePermissions
public void setBasePermissions(java.lang.String basePermissions)
-
putAdditionalProperty
public CustomRolePostData putAdditionalProperty(java.lang.String key, java.lang.Object value)
Set the additional (undeclared) property with the specified name and value. If the property does not already exist, create it otherwise replace it.
-
getAdditionalProperties
public java.util.Map<java.lang.String,java.lang.Object> getAdditionalProperties()
Return the additional (undeclared) property.
-
getAdditionalProperty
public java.lang.Object getAdditionalProperty(java.lang.String key)
Return the additional (undeclared) property with the specified name.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
validateJsonObject
public static void validateJsonObject(com.google.gson.JsonObject jsonObj) throws java.io.IOExceptionValidates the JSON Object and throws an exception if issues found- Parameters:
jsonObj- JSON Object- Throws:
java.io.IOException- if the JSON Object is invalid with respect to CustomRolePostData
-
fromJson
public static CustomRolePostData fromJson(java.lang.String jsonString) throws java.io.IOException
Create an instance of CustomRolePostData given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of CustomRolePostData
- Throws:
java.io.IOException- if the JSON string is invalid with respect to CustomRolePostData
-
toJson
public java.lang.String toJson()
Convert an instance of CustomRolePostData to an JSON string- Returns:
- JSON string
-
-