Skip to main content

Int64StringKeyValuePair

Properties

NameTypeDescriptionNotes
keyintThe key for the tag or pair.[optional]
valuestrThe value for the tag or pair.[optional]
}

Example

from sailpoint.data_access_security.models.int64_string_key_value_pair import Int64StringKeyValuePair

int64_string_key_value_pair = Int64StringKeyValuePair(
key=1,
value='Confidential'
)

[Back to top]