All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.synopsys.integration.jira.common.model.response.IssueCreatemetaFieldResponseModel Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
/*
 * 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.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