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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // AssignedLabel undocumented
     8  type AssignedLabel struct {
     9  	// Object is the base model of AssignedLabel
    10  	Object
    11  	// LabelID undocumented
    12  	LabelID *string `json:"labelId,omitempty"`
    13  	// DisplayName undocumented
    14  	DisplayName *string `json:"displayName,omitempty"`
    15  }
    16  
    17  // AssignedLicense undocumented
    18  type AssignedLicense struct {
    19  	// Object is the base model of AssignedLicense
    20  	Object
    21  	// DisabledPlans undocumented
    22  	DisabledPlans []UUID `json:"disabledPlans,omitempty"`
    23  	// SKUID undocumented
    24  	SKUID *UUID `json:"skuId,omitempty"`
    25  }
    26  
    27  // AssignedPlan undocumented
    28  type AssignedPlan struct {
    29  	// Object is the base model of AssignedPlan
    30  	Object
    31  	// AssignedDateTime undocumented
    32  	AssignedDateTime *time.Time `json:"assignedDateTime,omitempty"`
    33  	// CapabilityStatus undocumented
    34  	CapabilityStatus *string `json:"capabilityStatus,omitempty"`
    35  	// Service undocumented
    36  	Service *string `json:"service,omitempty"`
    37  	// ServicePlanID undocumented
    38  	ServicePlanID *UUID `json:"servicePlanId,omitempty"`
    39  }