blob: 128aab9f5219898e3fdeb851d6a069b8c08e6d7c [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;
import java.util.Map;
public class WorkItemResponse {
private String type;
private String id;
private Map<String, Object> attributes;
private WorkItemRelationships relationships;
private GenericLinksForWorkItem links;
public String getType() {
return type;
}
public String getId() {
return id;
}
public Object getAttributes() {
return attributes;
}
public WorkItemRelationships getRelationships() {
return relationships;
}
public GenericLinksForWorkItem getLinks() {
return links;
}
}