Skip to main content

UserAppAccount

Properties

NameTypeDescriptionNotes
idstrthe account ID[optional]
typestrIt will always be "ACCOUNT"[optional]
namestrthe account name[optional]
}

Example

from sailpoint.v2024.models.user_app_account import UserAppAccount

user_app_account = UserAppAccount(
id='85d173e7d57e496569df763231d6deb6a',
type='ACCOUNT',
name='test account'
)

[Back to top]