Represents that a failure event occurred before, during, or after a co-activity.
FAILURE_EVENT_UNSPECIFIED
: Failure event that's not specified in the predefined types.FAILURE_USER_INSUFFICIENT_TIER
: Failure due to the user membership tier not having sufficient privileges. For example, user not having a premium membership for the add-on app.FAILURE_USER_UNKNOWN
: Failure due to user sign-in or a related failure.FAILURE_USER_CANCELLED
: Failure due to cancellation of the operation by the user.FAILURE_USER_UNAUTHORIZED
: Failure due to the user being in the wrong locale or age group, etc., effectively being an unauthorized user for the co-activity.FAILURE_APP_GENERIC_ERROR
: Failure due to a generic error with the add-on app.FAILURE_APP_NETWORK_CONNECTIVITY
: Failure due to a network connectivity issue between the add-on app and its servers.FAILURE_APP_STARTUP
: Failure due to an error in starting the add-on app.
Signature
type LiveSharingFailureEventType =
| 'FAILURE_EVENT_UNSPECIFIED'
| 'FAILURE_USER_INSUFFICIENT_TIER'
| 'FAILURE_USER_UNKNOWN'
| 'FAILURE_USER_CANCELLED'
| 'FAILURE_USER_UNAUTHORIZED'
| 'FAILURE_APP_GENERIC_ERROR'
| 'FAILURE_APP_NETWORK_CONNECTIVITY'
| 'FAILURE_APP_STARTUP';