com.synopsys.integration.jira.common.model.response.CustomFieldCreationResponseModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of int-jira-common Show documentation
Show all versions of int-jira-common Show documentation
A library for using various capabilities of Jira.
/*
* int-jira-common
*
* Copyright (c) 2024 Synopsys, Inc.
*
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide.
*/
package com.synopsys.integration.jira.common.model.response;
import java.util.List;
import com.synopsys.integration.jira.common.model.JiraResponseModel;
import com.synopsys.integration.jira.common.model.components.SchemaComponent;
public class CustomFieldCreationResponseModel extends JiraResponseModel {
private String id;
private String key;
private String name;
private Boolean custom;
private Boolean navigable;
private Boolean searchable;
private List clauseNames;
private SchemaComponent schema;
public CustomFieldCreationResponseModel() {
}
public CustomFieldCreationResponseModel(
String id,
String key,
String name,
Boolean custom,
Boolean navigable,
Boolean searchable,
List clauseNames,
SchemaComponent schema
) {
this.id = id;
this.key = key;
this.name = name;
this.custom = custom;
this.navigable = navigable;
this.searchable = searchable;
this.clauseNames = clauseNames;
this.schema = schema;
}
public String getId() {
return id;
}
public String getKey() {
return key;
}
public String getName() {
return name;
}
public Boolean getCustom() {
return custom;
}
public Boolean getNavigable() {
return navigable;
}
public Boolean getSearchable() {
return searchable;
}
public List getClauseNames() {
return clauseNames;
}
public SchemaComponent getSchema() {
return schema;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy