--- id: identities-report-arguments title: IdentitiesReportArguments pagination_label: IdentitiesReportArguments sidebar_label: IdentitiesReportArguments sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'IdentitiesReportArguments', 'IdentitiesReportArguments'] slug: /tools/sdk/python/v3/models/identities-report-arguments tags: ['SDK', 'Software Development Kit', 'IdentitiesReportArguments', 'IdentitiesReportArguments'] --- # IdentitiesReportArguments Arguments for Identities report (IDENTITIES) ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **correlated_only** | **bool** | Flag to specify if only correlated identities are included in report. | [optional] [default to False] } ## Example ```python from sailpoint.v3.models.identities_report_arguments import IdentitiesReportArguments identities_report_arguments = IdentitiesReportArguments( correlated_only=True ) ``` [[Back to top]](#)