| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | Apps unique ID in OneLogin. | [optional] [readonly] |
| name | str | The name of the app. | [optional] |
| visible | bool | Indicates if the app is visible in the OneLogin portal. | [optional] |
| description | str | Freeform description of the app. | [optional] |
| notes | str | Freeform notes about the app. | [optional] |
| icon_url | str | A link to the apps icon url | [optional] |
| auth_method | AuthMethod | [optional] | |
| policy_id | int | The security policy assigned to the app. | [optional] |
| allow_assumed_signin | bool | Indicates whether or not administrators can access the app as a user that they have assumed control over. | [optional] |
| tab_id | int | ID of the OneLogin portal tab that the app is assigned to. | [optional] |
| connector_id | int | ID of the connector to base the app from. | [optional] |
| created_at | str | the date the app was created | [optional] |
| updated_at | str | the date the app was last updated | [optional] |
| role_ids | List[int] | List of Role IDs that are assigned to the app. On App Create or Update the entire array is replaced with the values provided. | [optional] |
| provisioning | GenericAppProvisioning | [optional] | |
| parameters | SamlAppAllOfParameters | [optional] | |
| enforcement_point | EnforcementPoint | [optional] | |
| configuration | ConfigurationSaml | [optional] | |
| sso | SsoSaml | [optional] |
from onelogin.models.saml_app import SamlApp
# TODO update the JSON string below
json = "{}"
# create an instance of SamlApp from a JSON string
saml_app_instance = SamlApp.from_json(json)
# print the JSON string representation of the object
print SamlApp.to_json()
# convert the object into a dict
saml_app_dict = saml_app_instance.to_dict()
# create an instance of SamlApp from a dict
saml_app_form_dict = saml_app.from_dict(saml_app_dict)