
com.blazebit.query.connector.kandji.model.CreateCustomApp201Response Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blaze-query-connector-kandji-jersey3 Show documentation
Show all versions of blaze-query-connector-kandji-jersey3 Show documentation
A multi-platform querying library
The newest version!
/*
* Kandji API
* # Welcome to the Kandji API Documentation You can find your API URL in Settings > Access. The API URL will follow the below formats. - US - `https://SubDomain.api.kandji.io` - EU - `https://SubDomain.api.eu.kandji.io` For information on how to obtain an API token, please refer to the following support article. [https://support.kandji.io/api](https://support.kandji.io/api) #### Rate Limit The Kandji API currently has an API rate limit of 10,000 requests per hour per customer. #### Request Methods HTTP request methods supported by the Kandji API. | Method | Definition | | --- | --- | | GET | The `GET` method requests a representation of the specified resource. | | POST | The `POST` method submits an entity to the specified resource. | | PATCH | The `PATCH` method applies partial modifications to a resource. | | DELETE | The `DELETE` method deletes the specified resource. | #### Response codes Not all response codes apply to every endpoint. | Code | Response | | --- | --- | | 200 | OK | | 201 | Created | | 204 | No content | | | Typical response when sending the DELETE method. | | 400 | Bad Request | | | \"Command already running\" - The command may already be running in a _Pending_ state waiting on the device. | | | \"Command is not allowed for current device\" - The command may not be compatible with the target device. | | | \"JSON parse error - Expecting ',' delimiter: line 3 column 2 (char 65)\" | | 401 | Unauthorized | | | This error can occur if the token is incorrect, was revoked, or the token has expired. | | 403 | Forbidden | | | The request was understood but cannot be authorized. | | 404 | Not found | | | Unable to locate the resource in the Kandji tenant. | | 415 | Unsupported Media Type | | | The request contains a media type which the server or resource does not support. | | 500 | Internal server error | | 503 | Service unavailable | | | This error can occur if a file upload is still being processed via the custom apps API. | #### Data structure The API returns all structured responses in JSON schema format. #### Examples Code examples using the API can be found in the Kandji support [GitHub](https://github.com/kandji-inc/support/tree/main/api-tools).
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.blazebit.query.connector.kandji.model;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.blazebit.query.connector.kandji.invoker.JSON;
/**
* CreateCustomApp201Response
*/
@JsonPropertyOrder({
CreateCustomApp201Response.JSON_PROPERTY_ACTIVE,
CreateCustomApp201Response.JSON_PROPERTY_AUDIT_SCRIPT,
CreateCustomApp201Response.JSON_PROPERTY_CREATED_AT,
CreateCustomApp201Response.JSON_PROPERTY_FILE_KEY,
CreateCustomApp201Response.JSON_PROPERTY_FILE_SIZE,
CreateCustomApp201Response.JSON_PROPERTY_FILE_UPDATED,
CreateCustomApp201Response.JSON_PROPERTY_FILE_URL,
CreateCustomApp201Response.JSON_PROPERTY_ID,
CreateCustomApp201Response.JSON_PROPERTY_INSTALL_ENFORCEMENT,
CreateCustomApp201Response.JSON_PROPERTY_INSTALL_TYPE,
CreateCustomApp201Response.JSON_PROPERTY_NAME,
CreateCustomApp201Response.JSON_PROPERTY_POSTINSTALL_SCRIPT,
CreateCustomApp201Response.JSON_PROPERTY_PREINSTALL_SCRIPT,
CreateCustomApp201Response.JSON_PROPERTY_RESTART,
CreateCustomApp201Response.JSON_PROPERTY_SELF_SERVICE_CATEGORY_ID,
CreateCustomApp201Response.JSON_PROPERTY_SELF_SERVICE_RECOMMENDED,
CreateCustomApp201Response.JSON_PROPERTY_SHA256,
CreateCustomApp201Response.JSON_PROPERTY_SHOW_IN_SELF_SERVICE,
CreateCustomApp201Response.JSON_PROPERTY_UNZIP_LOCATION,
CreateCustomApp201Response.JSON_PROPERTY_UPDATED_AT
})
@JsonTypeName("createCustomApp_201_response")
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-04-30T07:19:31.168100307Z[Etc/UTC]", comments = "Generator version: 7.10.0")
public class CreateCustomApp201Response {
public static final String JSON_PROPERTY_ACTIVE = "active";
@jakarta.annotation.Nullable
private Boolean active;
public static final String JSON_PROPERTY_AUDIT_SCRIPT = "audit_script";
@jakarta.annotation.Nullable
private String auditScript;
public static final String JSON_PROPERTY_CREATED_AT = "created_at";
@jakarta.annotation.Nullable
private String createdAt;
public static final String JSON_PROPERTY_FILE_KEY = "file_key";
@jakarta.annotation.Nullable
private String fileKey;
public static final String JSON_PROPERTY_FILE_SIZE = "file_size";
@jakarta.annotation.Nullable
private BigDecimal fileSize;
public static final String JSON_PROPERTY_FILE_UPDATED = "file_updated";
@jakarta.annotation.Nullable
private String fileUpdated;
public static final String JSON_PROPERTY_FILE_URL = "file_url";
@jakarta.annotation.Nullable
private String fileUrl;
public static final String JSON_PROPERTY_ID = "id";
@jakarta.annotation.Nullable
private String id;
public static final String JSON_PROPERTY_INSTALL_ENFORCEMENT = "install_enforcement";
@jakarta.annotation.Nullable
private String installEnforcement;
public static final String JSON_PROPERTY_INSTALL_TYPE = "install_type";
@jakarta.annotation.Nullable
private String installType;
public static final String JSON_PROPERTY_NAME = "name";
@jakarta.annotation.Nullable
private String name;
public static final String JSON_PROPERTY_POSTINSTALL_SCRIPT = "postinstall_script";
@jakarta.annotation.Nullable
private String postinstallScript;
public static final String JSON_PROPERTY_PREINSTALL_SCRIPT = "preinstall_script";
@jakarta.annotation.Nullable
private String preinstallScript;
public static final String JSON_PROPERTY_RESTART = "restart";
@jakarta.annotation.Nullable
private Boolean restart;
public static final String JSON_PROPERTY_SELF_SERVICE_CATEGORY_ID = "self_service_category_id";
@jakarta.annotation.Nullable
private String selfServiceCategoryId;
public static final String JSON_PROPERTY_SELF_SERVICE_RECOMMENDED = "self_service_recommended";
@jakarta.annotation.Nullable
private Boolean selfServiceRecommended;
public static final String JSON_PROPERTY_SHA256 = "sha256";
@jakarta.annotation.Nullable
private String sha256;
public static final String JSON_PROPERTY_SHOW_IN_SELF_SERVICE = "show_in_self_service";
@jakarta.annotation.Nullable
private Boolean showInSelfService;
public static final String JSON_PROPERTY_UNZIP_LOCATION = "unzip_location";
@jakarta.annotation.Nullable
private String unzipLocation;
public static final String JSON_PROPERTY_UPDATED_AT = "updated_at";
@jakarta.annotation.Nullable
private String updatedAt;
public CreateCustomApp201Response() {
}
public CreateCustomApp201Response active(@jakarta.annotation.Nullable Boolean active) {
this.active = active;
return this;
}
/**
* Get active
* @return active
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTIVE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getActive() {
return active;
}
@JsonProperty(JSON_PROPERTY_ACTIVE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setActive(@jakarta.annotation.Nullable Boolean active) {
this.active = active;
}
public CreateCustomApp201Response auditScript(@jakarta.annotation.Nullable String auditScript) {
this.auditScript = auditScript;
return this;
}
/**
* Get auditScript
* @return auditScript
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_AUDIT_SCRIPT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getAuditScript() {
return auditScript;
}
@JsonProperty(JSON_PROPERTY_AUDIT_SCRIPT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAuditScript(@jakarta.annotation.Nullable String auditScript) {
this.auditScript = auditScript;
}
public CreateCustomApp201Response createdAt(@jakarta.annotation.Nullable String createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Get createdAt
* @return createdAt
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CREATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getCreatedAt() {
return createdAt;
}
@JsonProperty(JSON_PROPERTY_CREATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setCreatedAt(@jakarta.annotation.Nullable String createdAt) {
this.createdAt = createdAt;
}
public CreateCustomApp201Response fileKey(@jakarta.annotation.Nullable String fileKey) {
this.fileKey = fileKey;
return this;
}
/**
* Get fileKey
* @return fileKey
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getFileKey() {
return fileKey;
}
@JsonProperty(JSON_PROPERTY_FILE_KEY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFileKey(@jakarta.annotation.Nullable String fileKey) {
this.fileKey = fileKey;
}
public CreateCustomApp201Response fileSize(@jakarta.annotation.Nullable BigDecimal fileSize) {
this.fileSize = fileSize;
return this;
}
/**
* Get fileSize
* @return fileSize
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE_SIZE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public BigDecimal getFileSize() {
return fileSize;
}
@JsonProperty(JSON_PROPERTY_FILE_SIZE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFileSize(@jakarta.annotation.Nullable BigDecimal fileSize) {
this.fileSize = fileSize;
}
public CreateCustomApp201Response fileUpdated(@jakarta.annotation.Nullable String fileUpdated) {
this.fileUpdated = fileUpdated;
return this;
}
/**
* Get fileUpdated
* @return fileUpdated
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE_UPDATED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getFileUpdated() {
return fileUpdated;
}
@JsonProperty(JSON_PROPERTY_FILE_UPDATED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFileUpdated(@jakarta.annotation.Nullable String fileUpdated) {
this.fileUpdated = fileUpdated;
}
public CreateCustomApp201Response fileUrl(@jakarta.annotation.Nullable String fileUrl) {
this.fileUrl = fileUrl;
return this;
}
/**
* Get fileUrl
* @return fileUrl
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_FILE_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getFileUrl() {
return fileUrl;
}
@JsonProperty(JSON_PROPERTY_FILE_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setFileUrl(@jakarta.annotation.Nullable String fileUrl) {
this.fileUrl = fileUrl;
}
public CreateCustomApp201Response id(@jakarta.annotation.Nullable String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setId(@jakarta.annotation.Nullable String id) {
this.id = id;
}
public CreateCustomApp201Response installEnforcement(@jakarta.annotation.Nullable String installEnforcement) {
this.installEnforcement = installEnforcement;
return this;
}
/**
* Get installEnforcement
* @return installEnforcement
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INSTALL_ENFORCEMENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getInstallEnforcement() {
return installEnforcement;
}
@JsonProperty(JSON_PROPERTY_INSTALL_ENFORCEMENT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setInstallEnforcement(@jakarta.annotation.Nullable String installEnforcement) {
this.installEnforcement = installEnforcement;
}
public CreateCustomApp201Response installType(@jakarta.annotation.Nullable String installType) {
this.installType = installType;
return this;
}
/**
* Get installType
* @return installType
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INSTALL_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getInstallType() {
return installType;
}
@JsonProperty(JSON_PROPERTY_INSTALL_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setInstallType(@jakarta.annotation.Nullable String installType) {
this.installType = installType;
}
public CreateCustomApp201Response name(@jakarta.annotation.Nullable String name) {
this.name = name;
return this;
}
/**
* Get name
* @return name
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getName() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setName(@jakarta.annotation.Nullable String name) {
this.name = name;
}
public CreateCustomApp201Response postinstallScript(@jakarta.annotation.Nullable String postinstallScript) {
this.postinstallScript = postinstallScript;
return this;
}
/**
* Get postinstallScript
* @return postinstallScript
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_POSTINSTALL_SCRIPT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getPostinstallScript() {
return postinstallScript;
}
@JsonProperty(JSON_PROPERTY_POSTINSTALL_SCRIPT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPostinstallScript(@jakarta.annotation.Nullable String postinstallScript) {
this.postinstallScript = postinstallScript;
}
public CreateCustomApp201Response preinstallScript(@jakarta.annotation.Nullable String preinstallScript) {
this.preinstallScript = preinstallScript;
return this;
}
/**
* Get preinstallScript
* @return preinstallScript
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PREINSTALL_SCRIPT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getPreinstallScript() {
return preinstallScript;
}
@JsonProperty(JSON_PROPERTY_PREINSTALL_SCRIPT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPreinstallScript(@jakarta.annotation.Nullable String preinstallScript) {
this.preinstallScript = preinstallScript;
}
public CreateCustomApp201Response restart(@jakarta.annotation.Nullable Boolean restart) {
this.restart = restart;
return this;
}
/**
* Get restart
* @return restart
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_RESTART)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getRestart() {
return restart;
}
@JsonProperty(JSON_PROPERTY_RESTART)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setRestart(@jakarta.annotation.Nullable Boolean restart) {
this.restart = restart;
}
public CreateCustomApp201Response selfServiceCategoryId(@jakarta.annotation.Nullable String selfServiceCategoryId) {
this.selfServiceCategoryId = selfServiceCategoryId;
return this;
}
/**
* Get selfServiceCategoryId
* @return selfServiceCategoryId
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SELF_SERVICE_CATEGORY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getSelfServiceCategoryId() {
return selfServiceCategoryId;
}
@JsonProperty(JSON_PROPERTY_SELF_SERVICE_CATEGORY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSelfServiceCategoryId(@jakarta.annotation.Nullable String selfServiceCategoryId) {
this.selfServiceCategoryId = selfServiceCategoryId;
}
public CreateCustomApp201Response selfServiceRecommended(@jakarta.annotation.Nullable Boolean selfServiceRecommended) {
this.selfServiceRecommended = selfServiceRecommended;
return this;
}
/**
* Get selfServiceRecommended
* @return selfServiceRecommended
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SELF_SERVICE_RECOMMENDED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getSelfServiceRecommended() {
return selfServiceRecommended;
}
@JsonProperty(JSON_PROPERTY_SELF_SERVICE_RECOMMENDED)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSelfServiceRecommended(@jakarta.annotation.Nullable Boolean selfServiceRecommended) {
this.selfServiceRecommended = selfServiceRecommended;
}
public CreateCustomApp201Response sha256(@jakarta.annotation.Nullable String sha256) {
this.sha256 = sha256;
return this;
}
/**
* Get sha256
* @return sha256
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SHA256)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getSha256() {
return sha256;
}
@JsonProperty(JSON_PROPERTY_SHA256)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setSha256(@jakarta.annotation.Nullable String sha256) {
this.sha256 = sha256;
}
public CreateCustomApp201Response showInSelfService(@jakarta.annotation.Nullable Boolean showInSelfService) {
this.showInSelfService = showInSelfService;
return this;
}
/**
* Get showInSelfService
* @return showInSelfService
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_SHOW_IN_SELF_SERVICE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getShowInSelfService() {
return showInSelfService;
}
@JsonProperty(JSON_PROPERTY_SHOW_IN_SELF_SERVICE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setShowInSelfService(@jakarta.annotation.Nullable Boolean showInSelfService) {
this.showInSelfService = showInSelfService;
}
public CreateCustomApp201Response unzipLocation(@jakarta.annotation.Nullable String unzipLocation) {
this.unzipLocation = unzipLocation;
return this;
}
/**
* Get unzipLocation
* @return unzipLocation
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_UNZIP_LOCATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getUnzipLocation() {
return unzipLocation;
}
@JsonProperty(JSON_PROPERTY_UNZIP_LOCATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUnzipLocation(@jakarta.annotation.Nullable String unzipLocation) {
this.unzipLocation = unzipLocation;
}
public CreateCustomApp201Response updatedAt(@jakarta.annotation.Nullable String updatedAt) {
this.updatedAt = updatedAt;
return this;
}
/**
* Get updatedAt
* @return updatedAt
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_UPDATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getUpdatedAt() {
return updatedAt;
}
@JsonProperty(JSON_PROPERTY_UPDATED_AT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUpdatedAt(@jakarta.annotation.Nullable String updatedAt) {
this.updatedAt = updatedAt;
}
/**
* Return true if this createCustomApp_201_response object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CreateCustomApp201Response createCustomApp201Response = (CreateCustomApp201Response) o;
return Objects.equals(this.active, createCustomApp201Response.active) &&
Objects.equals(this.auditScript, createCustomApp201Response.auditScript) &&
Objects.equals(this.createdAt, createCustomApp201Response.createdAt) &&
Objects.equals(this.fileKey, createCustomApp201Response.fileKey) &&
Objects.equals(this.fileSize, createCustomApp201Response.fileSize) &&
Objects.equals(this.fileUpdated, createCustomApp201Response.fileUpdated) &&
Objects.equals(this.fileUrl, createCustomApp201Response.fileUrl) &&
Objects.equals(this.id, createCustomApp201Response.id) &&
Objects.equals(this.installEnforcement, createCustomApp201Response.installEnforcement) &&
Objects.equals(this.installType, createCustomApp201Response.installType) &&
Objects.equals(this.name, createCustomApp201Response.name) &&
Objects.equals(this.postinstallScript, createCustomApp201Response.postinstallScript) &&
Objects.equals(this.preinstallScript, createCustomApp201Response.preinstallScript) &&
Objects.equals(this.restart, createCustomApp201Response.restart) &&
Objects.equals(this.selfServiceCategoryId, createCustomApp201Response.selfServiceCategoryId) &&
Objects.equals(this.selfServiceRecommended, createCustomApp201Response.selfServiceRecommended) &&
Objects.equals(this.sha256, createCustomApp201Response.sha256) &&
Objects.equals(this.showInSelfService, createCustomApp201Response.showInSelfService) &&
Objects.equals(this.unzipLocation, createCustomApp201Response.unzipLocation) &&
Objects.equals(this.updatedAt, createCustomApp201Response.updatedAt);
}
@Override
public int hashCode() {
return Objects.hash(active, auditScript, createdAt, fileKey, fileSize, fileUpdated, fileUrl, id, installEnforcement, installType, name, postinstallScript, preinstallScript, restart, selfServiceCategoryId, selfServiceRecommended, sha256, showInSelfService, unzipLocation, updatedAt);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CreateCustomApp201Response {\n");
sb.append(" active: ").append(toIndentedString(active)).append("\n");
sb.append(" auditScript: ").append(toIndentedString(auditScript)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" fileKey: ").append(toIndentedString(fileKey)).append("\n");
sb.append(" fileSize: ").append(toIndentedString(fileSize)).append("\n");
sb.append(" fileUpdated: ").append(toIndentedString(fileUpdated)).append("\n");
sb.append(" fileUrl: ").append(toIndentedString(fileUrl)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" installEnforcement: ").append(toIndentedString(installEnforcement)).append("\n");
sb.append(" installType: ").append(toIndentedString(installType)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" postinstallScript: ").append(toIndentedString(postinstallScript)).append("\n");
sb.append(" preinstallScript: ").append(toIndentedString(preinstallScript)).append("\n");
sb.append(" restart: ").append(toIndentedString(restart)).append("\n");
sb.append(" selfServiceCategoryId: ").append(toIndentedString(selfServiceCategoryId)).append("\n");
sb.append(" selfServiceRecommended: ").append(toIndentedString(selfServiceRecommended)).append("\n");
sb.append(" sha256: ").append(toIndentedString(sha256)).append("\n");
sb.append(" showInSelfService: ").append(toIndentedString(showInSelfService)).append("\n");
sb.append(" unzipLocation: ").append(toIndentedString(unzipLocation)).append("\n");
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy