blob: e9e38053ab25d07c7232c66b028e4c26f33d1fa9 [file] [log] [blame]
// Copyright (C) 2014 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.googlesource.gerrit.plugins.its.phabricator.conduit.results;
/**
* Models the result for a call to maniphest.edit
*
* <p>JSON looks like:
*
* <pre>
* {
* "id":"48",
* "phid":"PHID-TASK-pemd324eosnymq3tdkyo",
* "authorPHID":"PHID-USER-na3one2sht11aone",
* "ownerPHID":null,
* "ccPHIDs":[
* "PHID-USER-h4n62fq2kt2v3a2qjyqh"
* ],
* "status":"open",
* "statusName":"Open",
* "isClosed":false,
* "priority": "Needs Triage",
* "priorityColor":"violet",
* "title":"QChris test task",
* "description":"",
* "projectPHIDs":[],
* "uri":"https://phab-01.wmflabs.org/T47",
* "auxiliary":{
* "std:maniphest:security_topic":"default",
* "isdc:sprint:storypoints":null
* },
* "objectName":"T47",
* "dateCreated":"1413484594",
* "dateModified":1413549869,
* "dependsOnTaskPHIDs":[]
* }
* </pre>
*/
public class ManiphestEdit extends Task {}