Skip to main content

WorkgroupDto

Properties

NameTypeDescriptionNotes
ownerWorkgroupDtoOwner[optional]
idstrGovernance group ID.[optional] [readonly]
namestrGovernance group name.[optional]
descriptionstrGovernance group description.[optional]
member_countintNumber of members in the governance group.[optional] [readonly]
connection_countintNumber of connections in the governance group.[optional] [readonly]
createddatetime[optional]
modifieddatetime[optional]
}

Example

from sailpoint.v2024.models.workgroup_dto import WorkgroupDto

workgroup_dto = WorkgroupDto(
owner=,
id='2c91808568c529c60168cca6f90c1313',
name='DB Access Governance Group',
description='Description of the Governance Group',
member_count=1641498673000,
connection_count=1641498673000,
created='2022-01-06T19:51:13Z',
modified='2022-01-06T19:51:13Z'
)

[Back to top]