Skip to main content

ContextAttributeDto

Properties

NameTypeDescriptionNotes
attributestrThe name of the attribute[optional]
valueContextAttributeDtoValue[optional]
derivedboolTrue if the attribute was derived.[optional] [default to False]
}

Example

from sailpoint.beta.models.context_attribute_dto import ContextAttributeDto

context_attribute_dto = ContextAttributeDto(
attribute='location',
value=Austin,
derived=False
)

[Back to top]