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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // AppleDeviceFeaturesConfigurationBase Apple device features configuration profile.
     8  type AppleDeviceFeaturesConfigurationBase struct {
     9  	// DeviceConfiguration is the base model of AppleDeviceFeaturesConfigurationBase
    10  	DeviceConfiguration
    11  }
    12  
    13  // ApplePushNotificationCertificate Apple push notification certificate.
    14  type ApplePushNotificationCertificate struct {
    15  	// Entity is the base model of ApplePushNotificationCertificate
    16  	Entity
    17  	// AppleIdentifier Apple Id of the account used to create the MDM push certificate.
    18  	AppleIdentifier *string `json:"appleIdentifier,omitempty"`
    19  	// TopicIdentifier Topic Id.
    20  	TopicIdentifier *string `json:"topicIdentifier,omitempty"`
    21  	// LastModifiedDateTime Last modified date and time for Apple push notification certificate.
    22  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    23  	// ExpirationDateTime The expiration date and time for Apple push notification certificate.
    24  	ExpirationDateTime *time.Time `json:"expirationDateTime,omitempty"`
    25  	// Certificate undocumented
    26  	Certificate *string `json:"certificate,omitempty"`
    27  }