Skip to main content

BulkTaggedObjectResponse

Properties

NameTypeDescriptionNotes
object_refs[]TaggedObjectDto[optional]
tags[]strLabel to be applied to an Object[optional]
}

Example

from sailpoint.v2024.models.bulk_tagged_object_response import BulkTaggedObjectResponse

bulk_tagged_object_response = BulkTaggedObjectResponse(
object_refs=[
sailpoint.v2024.models.tagged_object_dto.TaggedObjectDto(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', )
],
tags=[BU_FINANCE, PCI]
)

[Back to top]