Skip to main content

TaggedObject

Tagged object.

Properties

NameTypeDescriptionNotes
object_refTaggedObjectDto[optional]
tags[]strLabels to be applied to an Object[optional]
}

Example

from sailpoint.v3.models.tagged_object import TaggedObject

tagged_object = TaggedObject(
object_ref=sailpoint.v3.models.tagged_object_dto.TaggedObjectDto(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', ),
tags=[BU_FINANCE, PCI]
)

[Back to top]