blob: b76a7be0a17aaa406347cdfad2dd487c0b535f45 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Red Hat Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Red Hat - Initial Contribution
*******************************************************************************/
package org.eclipse.linuxtools.internal.mylyn.osio.rest.core.response.data;
public class WorkItemTypeField {
private String description;
private String label;
private Boolean required;
private WorkItemTypeFieldType type;
public String getDescription() {
return description;
}
public String getLabel() {
return label;
}
public Boolean getRequired() {
return required;
}
public WorkItemTypeFieldType getType() {
return type;
}
}