All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.seeq.model.FormulaDocOutputV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 60.1.3-v202304250417
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.seeq.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.seeq.model.FormulaExampleOutputV1;
import com.seeq.model.FunctionVariantOutputV1;
import com.seeq.model.ParameterDocOutputV1;
import com.seeq.model.SeeAlsoDocOutputV1;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.List;
/**
* The list of results from doc updates. The Nth output corresponds to the Nth input.
*/
@Schema(description = "The list of results from doc updates. The Nth output corresponds to the Nth input.")
public class FormulaDocOutputV1 {
@JsonProperty("children")
private List children = new ArrayList();
@JsonProperty("constants")
private List constants = new ArrayList();
@JsonProperty("description")
private String description = null;
@JsonProperty("docCreatedAt")
private String docCreatedAt = null;
@JsonProperty("docUpdatedAt")
private String docUpdatedAt = null;
@JsonProperty("documentationHref")
private String documentationHref = null;
@JsonProperty("examples")
private List examples = new ArrayList();
@JsonProperty("excelSynonyms")
private List excelSynonyms = new ArrayList();
@JsonProperty("functionGroupId")
private String functionGroupId = null;
@JsonProperty("functions")
private List functions = new ArrayList();
@JsonProperty("keywords")
private List keywords = new ArrayList();
@JsonProperty("packageCreatedAt")
private String packageCreatedAt = null;
@JsonProperty("packageCreatorContactInfo")
private String packageCreatorContactInfo = null;
@JsonProperty("packageCreatorName")
private String packageCreatorName = null;
@JsonProperty("packageId")
private String packageId = null;
@JsonProperty("packageInstallerName")
private String packageInstallerName = null;
@JsonProperty("packageUpdatedAt")
private String packageUpdatedAt = null;
@JsonProperty("packageVersion")
private String packageVersion = null;
@JsonProperty("parameters")
private List parameters = new ArrayList();
@JsonProperty("parents")
private List parents = new ArrayList();
@JsonProperty("seeAlsos")
private List seeAlsos = new ArrayList();
@JsonProperty("title")
private String title = null;
public FormulaDocOutputV1 children(List children) {
this.children = children;
return this;
}
public FormulaDocOutputV1 addChildrenItem(SeeAlsoDocOutputV1 childrenItem) {
if (this.children == null) {
this.children = new ArrayList();
}
this.children.add(childrenItem);
return this;
}
/**
* Child links of this document
* @return children
**/
@Schema(description = "Child links of this document")
public List getChildren() {
return children;
}
public void setChildren(List children) {
this.children = children;
}
public FormulaDocOutputV1 constants(List constants) {
this.constants = constants;
return this;
}
public FormulaDocOutputV1 addConstantsItem(String constantsItem) {
if (this.constants == null) {
this.constants = new ArrayList();
}
this.constants.add(constantsItem);
return this;
}
/**
* Constants provided by this document
* @return constants
**/
@Schema(description = "Constants provided by this document")
public List getConstants() {
return constants;
}
public void setConstants(List constants) {
this.constants = constants;
}
public FormulaDocOutputV1 description(String description) {
this.description = description;
return this;
}
/**
* The body of this document
* @return description
**/
@Schema(description = "The body of this document")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public FormulaDocOutputV1 docCreatedAt(String docCreatedAt) {
this.docCreatedAt = docCreatedAt;
return this;
}
/**
* The timestamp that this document was created at
* @return docCreatedAt
**/
@Schema(description = "The timestamp that this document was created at")
public String getDocCreatedAt() {
return docCreatedAt;
}
public void setDocCreatedAt(String docCreatedAt) {
this.docCreatedAt = docCreatedAt;
}
public FormulaDocOutputV1 docUpdatedAt(String docUpdatedAt) {
this.docUpdatedAt = docUpdatedAt;
return this;
}
/**
* The timestamp that this document was last updated at
* @return docUpdatedAt
**/
@Schema(description = "The timestamp that this document was last updated at")
public String getDocUpdatedAt() {
return docUpdatedAt;
}
public void setDocUpdatedAt(String docUpdatedAt) {
this.docUpdatedAt = docUpdatedAt;
}
public FormulaDocOutputV1 documentationHref(String documentationHref) {
this.documentationHref = documentationHref;
return this;
}
/**
* The href of this document
* @return documentationHref
**/
@Schema(description = "The href of this document")
public String getDocumentationHref() {
return documentationHref;
}
public void setDocumentationHref(String documentationHref) {
this.documentationHref = documentationHref;
}
public FormulaDocOutputV1 examples(List examples) {
this.examples = examples;
return this;
}
public FormulaDocOutputV1 addExamplesItem(FormulaExampleOutputV1 examplesItem) {
if (this.examples == null) {
this.examples = new ArrayList();
}
this.examples.add(examplesItem);
return this;
}
/**
* Formula examples demonstrating the functions in this document
* @return examples
**/
@Schema(description = "Formula examples demonstrating the functions in this document")
public List getExamples() {
return examples;
}
public void setExamples(List examples) {
this.examples = examples;
}
public FormulaDocOutputV1 excelSynonyms(List excelSynonyms) {
this.excelSynonyms = excelSynonyms;
return this;
}
public FormulaDocOutputV1 addExcelSynonymsItem(String excelSynonymsItem) {
if (this.excelSynonyms == null) {
this.excelSynonyms = new ArrayList();
}
this.excelSynonyms.add(excelSynonymsItem);
return this;
}
/**
* Search synonyms for this document, generally corresponding to an excel function
* @return excelSynonyms
**/
@Schema(description = "Search synonyms for this document, generally corresponding to an excel function")
public List getExcelSynonyms() {
return excelSynonyms;
}
public void setExcelSynonyms(List excelSynonyms) {
this.excelSynonyms = excelSynonyms;
}
public FormulaDocOutputV1 functionGroupId(String functionGroupId) {
this.functionGroupId = functionGroupId;
return this;
}
/**
* The identifier of this document
* @return functionGroupId
**/
@Schema(description = "The identifier of this document")
public String getFunctionGroupId() {
return functionGroupId;
}
public void setFunctionGroupId(String functionGroupId) {
this.functionGroupId = functionGroupId;
}
public FormulaDocOutputV1 functions(List functions) {
this.functions = functions;
return this;
}
public FormulaDocOutputV1 addFunctionsItem(FunctionVariantOutputV1 functionsItem) {
if (this.functions == null) {
this.functions = new ArrayList();
}
this.functions.add(functionsItem);
return this;
}
/**
* Functions in this document
* @return functions
**/
@Schema(description = "Functions in this document")
public List getFunctions() {
return functions;
}
public void setFunctions(List functions) {
this.functions = functions;
}
public FormulaDocOutputV1 keywords(List keywords) {
this.keywords = keywords;
return this;
}
public FormulaDocOutputV1 addKeywordsItem(String keywordsItem) {
if (this.keywords == null) {
this.keywords = new ArrayList();
}
this.keywords.add(keywordsItem);
return this;
}
/**
* Search keywords for this document
* @return keywords
**/
@Schema(description = "Search keywords for this document")
public List getKeywords() {
return keywords;
}
public void setKeywords(List keywords) {
this.keywords = keywords;
}
public FormulaDocOutputV1 packageCreatedAt(String packageCreatedAt) {
this.packageCreatedAt = packageCreatedAt;
return this;
}
/**
* The timestamp that the Package was created at
* @return packageCreatedAt
**/
@Schema(description = "The timestamp that the Package was created at")
public String getPackageCreatedAt() {
return packageCreatedAt;
}
public void setPackageCreatedAt(String packageCreatedAt) {
this.packageCreatedAt = packageCreatedAt;
}
public FormulaDocOutputV1 packageCreatorContactInfo(String packageCreatorContactInfo) {
this.packageCreatorContactInfo = packageCreatorContactInfo;
return this;
}
/**
* The contact information of the Package creator
* @return packageCreatorContactInfo
**/
@Schema(description = "The contact information of the Package creator")
public String getPackageCreatorContactInfo() {
return packageCreatorContactInfo;
}
public void setPackageCreatorContactInfo(String packageCreatorContactInfo) {
this.packageCreatorContactInfo = packageCreatorContactInfo;
}
public FormulaDocOutputV1 packageCreatorName(String packageCreatorName) {
this.packageCreatorName = packageCreatorName;
return this;
}
/**
* The name of the Package creator
* @return packageCreatorName
**/
@Schema(description = "The name of the Package creator")
public String getPackageCreatorName() {
return packageCreatorName;
}
public void setPackageCreatorName(String packageCreatorName) {
this.packageCreatorName = packageCreatorName;
}
public FormulaDocOutputV1 packageId(String packageId) {
this.packageId = packageId;
return this;
}
/**
* The package containing this document
* @return packageId
**/
@Schema(description = "The package containing this document")
public String getPackageId() {
return packageId;
}
public void setPackageId(String packageId) {
this.packageId = packageId;
}
public FormulaDocOutputV1 packageInstallerName(String packageInstallerName) {
this.packageInstallerName = packageInstallerName;
return this;
}
/**
* The name of the Package installer
* @return packageInstallerName
**/
@Schema(description = "The name of the Package installer")
public String getPackageInstallerName() {
return packageInstallerName;
}
public void setPackageInstallerName(String packageInstallerName) {
this.packageInstallerName = packageInstallerName;
}
public FormulaDocOutputV1 packageUpdatedAt(String packageUpdatedAt) {
this.packageUpdatedAt = packageUpdatedAt;
return this;
}
/**
* The timestamp that the Package was last updated at
* @return packageUpdatedAt
**/
@Schema(description = "The timestamp that the Package was last updated at")
public String getPackageUpdatedAt() {
return packageUpdatedAt;
}
public void setPackageUpdatedAt(String packageUpdatedAt) {
this.packageUpdatedAt = packageUpdatedAt;
}
public FormulaDocOutputV1 packageVersion(String packageVersion) {
this.packageVersion = packageVersion;
return this;
}
/**
* The version of the Package
* @return packageVersion
**/
@Schema(description = "The version of the Package")
public String getPackageVersion() {
return packageVersion;
}
public void setPackageVersion(String packageVersion) {
this.packageVersion = packageVersion;
}
public FormulaDocOutputV1 parameters(List parameters) {
this.parameters = parameters;
return this;
}
public FormulaDocOutputV1 addParametersItem(ParameterDocOutputV1 parametersItem) {
if (this.parameters == null) {
this.parameters = new ArrayList();
}
this.parameters.add(parametersItem);
return this;
}
/**
* Parameters of the functions in this document
* @return parameters
**/
@Schema(description = "Parameters of the functions in this document")
public List getParameters() {
return parameters;
}
public void setParameters(List parameters) {
this.parameters = parameters;
}
public FormulaDocOutputV1 parents(List parents) {
this.parents = parents;
return this;
}
public FormulaDocOutputV1 addParentsItem(SeeAlsoDocOutputV1 parentsItem) {
if (this.parents == null) {
this.parents = new ArrayList();
}
this.parents.add(parentsItem);
return this;
}
/**
* Parent link of this document
* @return parents
**/
@Schema(description = "Parent link of this document")
public List getParents() {
return parents;
}
public void setParents(List parents) {
this.parents = parents;
}
public FormulaDocOutputV1 seeAlsos(List seeAlsos) {
this.seeAlsos = seeAlsos;
return this;
}
public FormulaDocOutputV1 addSeeAlsosItem(SeeAlsoDocOutputV1 seeAlsosItem) {
if (this.seeAlsos == null) {
this.seeAlsos = new ArrayList();
}
this.seeAlsos.add(seeAlsosItem);
return this;
}
/**
* Related links of this document
* @return seeAlsos
**/
@Schema(description = "Related links of this document")
public List getSeeAlsos() {
return seeAlsos;
}
public void setSeeAlsos(List seeAlsos) {
this.seeAlsos = seeAlsos;
}
public FormulaDocOutputV1 title(String title) {
this.title = title;
return this;
}
/**
* The title of this document
* @return title
**/
@Schema(description = "The title of this document")
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
FormulaDocOutputV1 formulaDocOutputV1 = (FormulaDocOutputV1) o;
return Objects.equals(this.children, formulaDocOutputV1.children) &&
Objects.equals(this.constants, formulaDocOutputV1.constants) &&
Objects.equals(this.description, formulaDocOutputV1.description) &&
Objects.equals(this.docCreatedAt, formulaDocOutputV1.docCreatedAt) &&
Objects.equals(this.docUpdatedAt, formulaDocOutputV1.docUpdatedAt) &&
Objects.equals(this.documentationHref, formulaDocOutputV1.documentationHref) &&
Objects.equals(this.examples, formulaDocOutputV1.examples) &&
Objects.equals(this.excelSynonyms, formulaDocOutputV1.excelSynonyms) &&
Objects.equals(this.functionGroupId, formulaDocOutputV1.functionGroupId) &&
Objects.equals(this.functions, formulaDocOutputV1.functions) &&
Objects.equals(this.keywords, formulaDocOutputV1.keywords) &&
Objects.equals(this.packageCreatedAt, formulaDocOutputV1.packageCreatedAt) &&
Objects.equals(this.packageCreatorContactInfo, formulaDocOutputV1.packageCreatorContactInfo) &&
Objects.equals(this.packageCreatorName, formulaDocOutputV1.packageCreatorName) &&
Objects.equals(this.packageId, formulaDocOutputV1.packageId) &&
Objects.equals(this.packageInstallerName, formulaDocOutputV1.packageInstallerName) &&
Objects.equals(this.packageUpdatedAt, formulaDocOutputV1.packageUpdatedAt) &&
Objects.equals(this.packageVersion, formulaDocOutputV1.packageVersion) &&
Objects.equals(this.parameters, formulaDocOutputV1.parameters) &&
Objects.equals(this.parents, formulaDocOutputV1.parents) &&
Objects.equals(this.seeAlsos, formulaDocOutputV1.seeAlsos) &&
Objects.equals(this.title, formulaDocOutputV1.title);
}
@Override
public int hashCode() {
return Objects.hash(children, constants, description, docCreatedAt, docUpdatedAt, documentationHref, examples, excelSynonyms, functionGroupId, functions, keywords, packageCreatedAt, packageCreatorContactInfo, packageCreatorName, packageId, packageInstallerName, packageUpdatedAt, packageVersion, parameters, parents, seeAlsos, title);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class FormulaDocOutputV1 {\n");
sb.append(" children: ").append(toIndentedString(children)).append("\n");
sb.append(" constants: ").append(toIndentedString(constants)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" docCreatedAt: ").append(toIndentedString(docCreatedAt)).append("\n");
sb.append(" docUpdatedAt: ").append(toIndentedString(docUpdatedAt)).append("\n");
sb.append(" documentationHref: ").append(toIndentedString(documentationHref)).append("\n");
sb.append(" examples: ").append(toIndentedString(examples)).append("\n");
sb.append(" excelSynonyms: ").append(toIndentedString(excelSynonyms)).append("\n");
sb.append(" functionGroupId: ").append(toIndentedString(functionGroupId)).append("\n");
sb.append(" functions: ").append(toIndentedString(functions)).append("\n");
sb.append(" keywords: ").append(toIndentedString(keywords)).append("\n");
sb.append(" packageCreatedAt: ").append(toIndentedString(packageCreatedAt)).append("\n");
sb.append(" packageCreatorContactInfo: ").append(toIndentedString(packageCreatorContactInfo)).append("\n");
sb.append(" packageCreatorName: ").append(toIndentedString(packageCreatorName)).append("\n");
sb.append(" packageId: ").append(toIndentedString(packageId)).append("\n");
sb.append(" packageInstallerName: ").append(toIndentedString(packageInstallerName)).append("\n");
sb.append(" packageUpdatedAt: ").append(toIndentedString(packageUpdatedAt)).append("\n");
sb.append(" packageVersion: ").append(toIndentedString(packageVersion)).append("\n");
sb.append(" parameters: ").append(toIndentedString(parameters)).append("\n");
sb.append(" parents: ").append(toIndentedString(parents)).append("\n");
sb.append(" seeAlsos: ").append(toIndentedString(seeAlsos)).append("\n");
sb.append(" title: ").append(toIndentedString(title)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}