Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/Column.md
2025-04-01 09:23:12 -04:00

698 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-column Column Column Column pythonsdk
python
Python
sdk
Column
V2025Column
/tools/sdk/python/v2025/models/column
SDK
Software Development Kit
Column
V2025Column

Column

Properties

Name Type Description Notes
var_field str The name of the field. [required]
header str The value of the header. [optional]
}

Example

from sailpoint.v2025.models.column import Column

column = Column(
var_field='email',
header='Work Email'
)

[Back to top]