Interface IUpdateProjectResult
Interface to represent the response returned by the Update method in IProjectsApiClient.
Namespace: Tableau.Migration.Api.Models
Assembly: Tableau.Migration.dll
Syntax
public interface IUpdateProjectResult
Properties
ContentPermissions
Gets the content permissions mode for the project.
Declaration
string? ContentPermissions { get; }
Property Value
Type | Description |
---|---|
string |
ControllingPermissionsProjectId
Gets the unique identifier of the controlling permissions project.
Declaration
Guid? ControllingPermissionsProjectId { get; }
Property Value
Type | Description |
---|---|
Guid? |
Description
Gets the description of the project.
Declaration
string? Description { get; }
Property Value
Type | Description |
---|---|
string |
Id
Gets the unique identifier of the project.
Declaration
Guid Id { get; }
Property Value
Type | Description |
---|---|
Guid |
Name
Gets the name of the project.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
string |
OwnerId
Gets the owner id of the project.
Declaration
Guid OwnerId { get; }
Property Value
Type | Description |
---|---|
Guid |
ParentProjectId
Gets the unique identifier of the parent of the project, or null if the project is a top-level project.
Declaration
Guid? ParentProjectId { get; }
Property Value
Type | Description |
---|---|
Guid? |