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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Picture undocumented
     6  type Picture struct {
     7  	// Entity is the base model of Picture
     8  	Entity
     9  	// Width undocumented
    10  	Width *int `json:"width,omitempty"`
    11  	// Height undocumented
    12  	Height *int `json:"height,omitempty"`
    13  	// ContentType undocumented
    14  	ContentType *string `json:"contentType,omitempty"`
    15  	// Content undocumented
    16  	Content *Stream `json:"content,omitempty"`
    17  }