The Application Group object that defines a group of users' app-specific profile and credentials for an app
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ID of the group | [optional] [readonly] |
| last_updated | datetime | [optional] | |
| priority | int | Priority assigned to the group. If an app has more than one group assigned to the same user, then the group with the higher priority has its profile applied to the application user. If a priority value isn't specified, then the next highest priority is assigned by default. See Assign attribute group priority and the sample priority use case. | [optional] |
| profile | Dict[str, object] | Specifies the profile properties applied to application users that are assigned to the app through group membership. Some reference properties are imported from the target app and can't be configured. See profile. | [optional] |
| embedded | Dict[str, object] | Embedded resource related to the Application Group using the JSON Hypertext Application Language specification. If the `expand=group` query parameter is specified, then the group object is embedded. If the `expand=metadata` query parameter is specified, then the group assignment metadata is embedded. | [optional] [readonly] |
| links | ApplicationGroupAssignmentLinks | [optional] |
from okta.models.application_group_assignment import ApplicationGroupAssignment
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationGroupAssignment from a JSON string
application_group_assignment_instance = ApplicationGroupAssignment.from_json(json)
# print the JSON string representation of the object
print(ApplicationGroupAssignment.to_json())
# convert the object into a dict
application_group_assignment_dict = application_group_assignment_instance.to_dict()
# create an instance of ApplicationGroupAssignment from a dict
application_group_assignment_from_dict = ApplicationGroupAssignment.from_dict(application_group_assignment_dict)