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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // Photo undocumented
     8  type Photo struct {
     9  	// Object is the base model of Photo
    10  	Object
    11  	// CameraMake undocumented
    12  	CameraMake *string `json:"cameraMake,omitempty"`
    13  	// CameraModel undocumented
    14  	CameraModel *string `json:"cameraModel,omitempty"`
    15  	// ExposureDenominator undocumented
    16  	ExposureDenominator *float64 `json:"exposureDenominator,omitempty"`
    17  	// ExposureNumerator undocumented
    18  	ExposureNumerator *float64 `json:"exposureNumerator,omitempty"`
    19  	// FNumber undocumented
    20  	FNumber *float64 `json:"fNumber,omitempty"`
    21  	// FocalLength undocumented
    22  	FocalLength *float64 `json:"focalLength,omitempty"`
    23  	// Iso undocumented
    24  	Iso *int `json:"iso,omitempty"`
    25  	// TakenDateTime undocumented
    26  	TakenDateTime *time.Time `json:"takenDateTime,omitempty"`
    27  }