com.synopsys.integration.jira.common.model.response.IssueCreatemetaFieldResponseModel 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) 2023 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.google.gson.JsonElement;
import com.synopsys.integration.jira.common.model.JiraResponseModel;
import com.synopsys.integration.jira.common.model.components.SchemaComponent;
public class IssueCreatemetaFieldResponseModel extends JiraResponseModel {
private boolean required;
private SchemaComponent schema;
private String name;
private String key;
private boolean hasDefaultValue;
private List operations;
private List allowedValues;
public IssueCreatemetaFieldResponseModel() {
}
public IssueCreatemetaFieldResponseModel(
boolean required,
SchemaComponent schema,
String name,
String key,
boolean hasDefaultValue,
List operations,
List allowedValues
) {
this.required = required;
this.schema = schema;
this.name = name;
this.key = key;
this.hasDefaultValue = hasDefaultValue;
this.operations = operations;
this.allowedValues = allowedValues;
}
public boolean isRequired() {
return required;
}
public SchemaComponent getSchema() {
return schema;
}
public String getName() {
return name;
}
public String getKey() {
return key;
}
public boolean isHasDefaultValue() {
return hasDefaultValue;
}
public List getOperations() {
return operations;
}
public List getAllowedValues() {
return allowedValues;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy