ProjectPortfolioSettingCompact
| Property | Type | Description |
|---|---|---|
gid | string | Globally unique identifier of the resource, as a string. |
resource_type | string | The base type of this resource. |
project | object | The project associated with this setting. |
project.gid | string | Globally unique identifier of the resource, as a string. |
project.resource_type | string | The base type of this resource. |
project.name | string | Name of the project. This is generally a short sentence fragment that fits on a line in the UI for maximum readability. However, it can be longer. |
portfolio | object | The portfolio associated with this setting. |
portfolio.gid | string | Globally unique identifier of the resource, as a string. |
portfolio.resource_type | string | The base type of this resource. |
portfolio.name | string | The name of the portfolio. |
is_access_control_inherited | boolean | When true, the portfolio members gain access to the project. |
Example JSON for ProjectPortfolioSettingCompact:
{
"gid": "12345",
"resource_type": "project_portfolio_setting",
"project": {
"gid": "12345",
"resource_type": "project",
"name": "Stuff to buy"
},
"portfolio": {
"gid": "12345",
"resource_type": "portfolio",
"name": "Bug Portfolio"
},
"is_access_control_inherited": true
}ProjectPortfolioSetting
| Property | Type | Description |
|---|---|---|
gid | string | Globally unique identifier of the resource, as a string. |
resource_type | string | The base type of this resource. |
project | object | The project associated with this setting. |
project.gid | string | Globally unique identifier of the resource, as a string. |
project.resource_type | string | The base type of this resource. |
project.name | string | Name of the project. This is generally a short sentence fragment that fits on a line in the UI for maximum readability. However, it can be longer. |
portfolio | object | The portfolio associated with this setting. |
portfolio.gid | string | Globally unique identifier of the resource, as a string. |
portfolio.resource_type | string | The base type of this resource. |
portfolio.name | string | The name of the portfolio. |
is_access_control_inherited | boolean | When true, the portfolio members gain access to the project. |
created_at | string (date-time) | The time at which this project portfolio setting was created. |
Example JSON for ProjectPortfolioSetting:
{
"gid": "12345",
"resource_type": "project_portfolio_setting",
"project": {
"gid": "12345",
"resource_type": "project",
"name": "Stuff to buy"
},
"portfolio": {
"gid": "12345",
"resource_type": "portfolio",
"name": "Bug Portfolio"
},
"is_access_control_inherited": true,
"created_at": "2012-02-22T02:06:58.147Z"
}