github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelApp.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // AppCatalogs undocumented
     6  type AppCatalogs struct {
     7  	// Entity is the base model of AppCatalogs
     8  	Entity
     9  	// TeamsApps undocumented
    10  	TeamsApps []TeamsApp `json:"teamsApps,omitempty"`
    11  }
    12  
    13  // AppConfigurationSettingItem undocumented
    14  type AppConfigurationSettingItem struct {
    15  	// Object is the base model of AppConfigurationSettingItem
    16  	Object
    17  	// AppConfigKey app configuration key.
    18  	AppConfigKey *string `json:"appConfigKey,omitempty"`
    19  	// AppConfigKeyType app configuration key type.
    20  	AppConfigKeyType *MDMAppConfigKeyType `json:"appConfigKeyType,omitempty"`
    21  	// AppConfigKeyValue app configuration key value.
    22  	AppConfigKeyValue *string `json:"appConfigKeyValue,omitempty"`
    23  }
    24  
    25  // AppHostedMediaConfig undocumented
    26  type AppHostedMediaConfig struct {
    27  	// MediaConfig is the base model of AppHostedMediaConfig
    28  	MediaConfig
    29  	// Blob undocumented
    30  	Blob *string `json:"blob,omitempty"`
    31  }
    32  
    33  // AppIdentity undocumented
    34  type AppIdentity struct {
    35  	// Object is the base model of AppIdentity
    36  	Object
    37  	// AppID undocumented
    38  	AppID *string `json:"appId,omitempty"`
    39  	// DisplayName undocumented
    40  	DisplayName *string `json:"displayName,omitempty"`
    41  	// ServicePrincipalID undocumented
    42  	ServicePrincipalID *string `json:"servicePrincipalId,omitempty"`
    43  	// ServicePrincipalName undocumented
    44  	ServicePrincipalName *string `json:"servicePrincipalName,omitempty"`
    45  }
    46  
    47  // AppListItem undocumented
    48  type AppListItem struct {
    49  	// Object is the base model of AppListItem
    50  	Object
    51  	// Name The application name
    52  	Name *string `json:"name,omitempty"`
    53  	// Publisher The publisher of the application
    54  	Publisher *string `json:"publisher,omitempty"`
    55  	// AppStoreURL The Store URL of the application
    56  	AppStoreURL *string `json:"appStoreUrl,omitempty"`
    57  	// AppID The application or bundle identifier of the application
    58  	AppID *string `json:"appId,omitempty"`
    59  }
    60  
    61  // AppRole undocumented
    62  type AppRole struct {
    63  	// Object is the base model of AppRole
    64  	Object
    65  	// AllowedMemberTypes undocumented
    66  	AllowedMemberTypes []string `json:"allowedMemberTypes,omitempty"`
    67  	// Description undocumented
    68  	Description *string `json:"description,omitempty"`
    69  	// DisplayName undocumented
    70  	DisplayName *string `json:"displayName,omitempty"`
    71  	// ID undocumented
    72  	ID *UUID `json:"id,omitempty"`
    73  	// IsEnabled undocumented
    74  	IsEnabled *bool `json:"isEnabled,omitempty"`
    75  	// Origin undocumented
    76  	Origin *string `json:"origin,omitempty"`
    77  	// Value undocumented
    78  	Value *string `json:"value,omitempty"`
    79  }