blob: 55a59d5688ed2f94e17f28aa6d2b75396d12aa34 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Red Hat.
* 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 WorkItemTypeData implements IdNamed {
private String type;
private String id;
private WorkItemTypeAttributes attributes;
private WorkItemTypeRelationships relationships;
public String getId() {
return id;
}
public String getName() {
return attributes.getName();
}
public String getType() {
return type;
}
public WorkItemTypeAttributes getWorkItemTypeAttributes() {
return attributes;
}
public WorkItemTypeRelationships getWorkItemTypeRelationships() {
return relationships;
}
}