github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelImage.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Image undocumented
     6  type Image struct {
     7  	// Object is the base model of Image
     8  	Object
     9  	// Height undocumented
    10  	Height *int `json:"height,omitempty"`
    11  	// Width undocumented
    12  	Width *int `json:"width,omitempty"`
    13  }
    14  
    15  // ImageInfo undocumented
    16  type ImageInfo struct {
    17  	// Object is the base model of ImageInfo
    18  	Object
    19  	// IconURL undocumented
    20  	IconURL *string `json:"iconUrl,omitempty"`
    21  	// AlternativeText undocumented
    22  	AlternativeText *string `json:"alternativeText,omitempty"`
    23  	// AlternateText undocumented
    24  	AlternateText *string `json:"alternateText,omitempty"`
    25  	// AddImageQuery undocumented
    26  	AddImageQuery *bool `json:"addImageQuery,omitempty"`
    27  }