Skip to main content

ObjectExportImportOptions

Properties

NameTypeDescriptionNotes
included_ids[]strObject ids to be included in an import or export.[optional]
included_names[]strObject names to be included in an import or export.[optional]
}

Example

from sailpoint.beta.models.object_export_import_options import ObjectExportImportOptions

object_export_import_options = ObjectExportImportOptions(
included_ids=[
'be9e116d-08e1-49fc-ab7f-fa585e96c9e4'
],
included_names=[
'Test Object'
]
)

[Back to top]