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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // Attachment undocumented
     8  type Attachment struct {
     9  	// Entity is the base model of Attachment
    10  	Entity
    11  	// LastModifiedDateTime undocumented
    12  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    13  	// Name undocumented
    14  	Name *string `json:"name,omitempty"`
    15  	// ContentType undocumented
    16  	ContentType *string `json:"contentType,omitempty"`
    17  	// Size undocumented
    18  	Size *int `json:"size,omitempty"`
    19  	// IsInline undocumented
    20  	IsInline *bool `json:"isInline,omitempty"`
    21  }
    22  
    23  // AttachmentItem undocumented
    24  type AttachmentItem struct {
    25  	// Object is the base model of AttachmentItem
    26  	Object
    27  	// AttachmentType undocumented
    28  	AttachmentType *AttachmentType `json:"attachmentType,omitempty"`
    29  	// Name undocumented
    30  	Name *string `json:"name,omitempty"`
    31  	// Size undocumented
    32  	Size *int `json:"size,omitempty"`
    33  	// ContentType undocumented
    34  	ContentType *string `json:"contentType,omitempty"`
    35  	// IsInline undocumented
    36  	IsInline *bool `json:"isInline,omitempty"`
    37  }