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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // RgbColor undocumented
     6  type RgbColor struct {
     7  	// Object is the base model of RgbColor
     8  	Object
     9  	// R Red value
    10  	R *byte `json:"r,omitempty"`
    11  	// G Green value
    12  	G *byte `json:"g,omitempty"`
    13  	// B Blue value
    14  	B *byte `json:"b,omitempty"`
    15  }