github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelTelecom.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // TelecomExpenseManagementPartner telecomExpenseManagementPartner resources represent the metadata and status of a given TEM service. Once your organization has onboarded with a partner, the partner can be enabled or disabled to switch TEM functionality on or off.
     8  type TelecomExpenseManagementPartner struct {
     9  	// Entity is the base model of TelecomExpenseManagementPartner
    10  	Entity
    11  	// DisplayName Display name of the TEM partner.
    12  	DisplayName *string `json:"displayName,omitempty"`
    13  	// URL URL of the TEM partner's administrative control panel, where an administrator can configure their TEM service.
    14  	URL *string `json:"url,omitempty"`
    15  	// AppAuthorized Whether the partner's AAD app has been authorized to access Intune.
    16  	AppAuthorized *bool `json:"appAuthorized,omitempty"`
    17  	// Enabled Whether Intune's connection to the TEM service is currently enabled or disabled.
    18  	Enabled *bool `json:"enabled,omitempty"`
    19  	// LastConnectionDateTime Timestamp of the last request sent to Intune by the TEM partner.
    20  	LastConnectionDateTime *time.Time `json:"lastConnectionDateTime,omitempty"`
    21  }