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. |
project.resource_subtype | string | The subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning. Click to show all enum values
|
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. |
portfolio.resource_subtype | string | The subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning. Click to show all enum values
|
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",
"resource_subtype": "default_project"
},
"portfolio": {
"gid": "12345",
"resource_type": "portfolio",
"name": "Bug Portfolio",
"resource_subtype": "default_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. |
project.resource_subtype | string | The subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning. Click to show all enum values
|
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. |
portfolio.resource_subtype | string | The subtype of this resource. Different subtypes retain many of the same fields and behavior, but may render differently in Asana or represent resources with different semantic meaning. Click to show all enum values
|
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",
"resource_subtype": "default_project"
},
"portfolio": {
"gid": "12345",
"resource_type": "portfolio",
"name": "Bug Portfolio",
"resource_subtype": "default_portfolio"
},
"is_access_control_inherited": true,
"created_at": "2012-02-22T02:06:58.147Z"
}