Skip to main content

ReportConfigDTO

Properties

NameTypeDescriptionNotes
column_namestrName of column in report[optional]
requiredboolIf 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]
includedboolIf 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]
orderintRelative 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]