PeerGroupMember
Properties
Name | Type | Description | Notes |
---|---|---|---|
id | str | A unique identifier for the peer group member. | [optional] |
type | str | The type of the peer group member. | [optional] |
peer_group_id | str | The ID of the peer group. | [optional] |
attributes | map[string]object | Arbitrary key-value pairs, belonging to the peer group member. | [optional] |
} |
Example
from sailpoint.v2024.models.peer_group_member import PeerGroupMember
peer_group_member = PeerGroupMember(
id='',
type='',
peer_group_id='',
attributes={
'key' : None
}
)