Int64StringKeyValuePair
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| key | int | The key for the tag or pair. | [optional] |
| value | str | The 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'
)