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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // CartToClassAssociation CartToClassAssociation for associating device carts with classrooms.
     8  type CartToClassAssociation struct {
     9  	// Entity is the base model of CartToClassAssociation
    10  	Entity
    11  	// CreatedDateTime DateTime the object was created.
    12  	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
    13  	// LastModifiedDateTime DateTime the object was last modified.
    14  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    15  	// Version Version of the CartToClassAssociation.
    16  	Version *int `json:"version,omitempty"`
    17  	// DisplayName Admin provided name of the device configuration.
    18  	DisplayName *string `json:"displayName,omitempty"`
    19  	// Description Admin provided description of the CartToClassAssociation.
    20  	Description *string `json:"description,omitempty"`
    21  	// DeviceCartIDs Identifiers of device carts to be associated with classes.
    22  	DeviceCartIDs []string `json:"deviceCartIds,omitempty"`
    23  	// ClassroomIDs Identifiers of classrooms to be associated with device carts.
    24  	ClassroomIDs []string `json:"classroomIds,omitempty"`
    25  }