public class AppSetIdInfo extends Object
  
  
  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.Scope
                    of the app set ID.
                   | 
            
Inherited Method Summary
Constants
public static final int SCOPE_APP
The app set ID is scoped to the app.
            Constant Value: 1
          
        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.
            Constant Value: 2
          
        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.