AI-generated Key Takeaways
- 
          AppSetIdInfo contains information about the app set ID. 
- 
          The AppSetIdInfo class includes a nested class called Scope, which provides allowed constants for getScope(). 
- 
          The AppSetIdInfo class defines two constants: SCOPE_APP and SCOPE_DEVELOPER, indicating whether the app set ID is scoped to the app or the developer account. 
- 
          The AppSetIdInfo class provides public methods to get the app set ID and its scope. 
Contains information about app set ID.
Nested Class Summary
| @interface | AppSetIdInfo.Scope | Allowed constants for AppSetIdInfo.getScope(). | |
Constant Summary
| int | SCOPE_APP | The app set ID is scoped to the app. | 
| int | SCOPE_DEVELOPER | The app set ID is scoped to a developer account on an app store. | 
Public Method Summary
| String | 
                  getId()
                   
                    Gets the app set ID.
                   | 
| int | 
                  getScope()
                   
                    Returns the  AppSetIdInfo.Scopeof the app set ID. | 
Inherited Method Summary
Constants
public static final int SCOPE_APP
The app set ID is scoped to the app.
public static final int SCOPE_DEVELOPER
The app set ID is scoped to a developer account on an app store. All apps from the same developer on a device will have the same developer scoped app set ID.
Public Methods
public String getId ()
Gets the app set ID.
Returns
- the app set ID.
public int getScope ()
Returns the AppSetIdInfo.Scope
            of the app set ID. Possible values include SCOPE_APP
            and SCOPE_DEVELOPER.
Returns
- the app set ID's AppSetIdInfo.Scope.