Skip to main content

UserappSourceApp

Properties

NameTypeDescriptionNotes
idstrthe source app ID[optional]
typestrIt will always be "APPLICATION"[optional]
namestrthe source app name[optional]
}

Example

from sailpoint.apps.models.userapp_source_app import UserappSourceApp

userapp_source_app = UserappSourceApp(
id='edcb0951812949d085b60cd8bf35bc78',
type='APPLICATION',
name='test-app'
)

[Back to top]