forked from lesstif/php-JiraCloud-RESTAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSchema.php
More file actions
39 lines (32 loc) · 643 Bytes
/
Copy pathSchema.php
File metadata and controls
39 lines (32 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
namespace JiraCloud\Field;
/**
* Custom filed schema.
*
* Class Schema
*/
class Schema
{
/* @var string */
/**
* custom filed type.
*
* @var string
*/
public $type;
/** i don't know what this means.
* @var string
*/
public $items;
/* jira custom field component class full namespace.
* Ex: "com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes",
* "com.atlassian.jira.plugin.system.customfieldtypes:select"
*
* @var string
*/
public $custom;
/** custom filed id. Ex: 10201.
* @var string
*/
public $customId;
}