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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "encoding/json"
     6  
     7  // VisualInfo undocumented
     8  type VisualInfo struct {
     9  	// Object is the base model of VisualInfo
    10  	Object
    11  	// Attribution undocumented
    12  	Attribution *ImageInfo `json:"attribution,omitempty"`
    13  	// BackgroundColor undocumented
    14  	BackgroundColor *string `json:"backgroundColor,omitempty"`
    15  	// Description undocumented
    16  	Description *string `json:"description,omitempty"`
    17  	// DisplayText undocumented
    18  	DisplayText *string `json:"displayText,omitempty"`
    19  	// Content undocumented
    20  	Content json.RawMessage `json:"content,omitempty"`
    21  }
    22  
    23  // VisualProperties undocumented
    24  type VisualProperties struct {
    25  	// Object is the base model of VisualProperties
    26  	Object
    27  	// Title undocumented
    28  	Title *string `json:"title,omitempty"`
    29  	// Body undocumented
    30  	Body *string `json:"body,omitempty"`
    31  }