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

1.3 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-report-config-dto ReportConfigDTO ReportConfigDTO ReportConfigDTO pythonsdk
python
Python
sdk
ReportConfigDTO
BetaReportConfigDTO
/tools/sdk/python/beta/models/report-config-dto
SDK
Software Development Kit
ReportConfigDTO
BetaReportConfigDTO

ReportConfigDTO

Properties

Name Type Description Notes
column_name str Name of column in report [optional]
required bool If true, column is required in all reports, and this entry is immutable. A 400 error will result from any attempt to modify the column's definition. [optional] [default to False]
included bool If true, column is included in the report. A 400 error will be thrown if an attempt is made to set included=false if required==true. [optional] [default to False]
order int Relative sort order for the column. Columns will be displayed left-to-right in nondecreasing order. [optional]
}

Example

from sailpoint.beta.models.report_config_dto import ReportConfigDTO

report_config_dto = ReportConfigDTO(
column_name='SOD Business Name',
required=True,
included=False,
order=2
)

[Back to top]