Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/Column.md
2025-02-20 12:59:19 -05:00

676 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
column Column Column Column pythonsdk
python
Python
sdk
Column
Column
/tools/sdk/python/v3/models/column
SDK
Software Development Kit
Column
Column

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.v3.models.column import Column

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

[Back to top]