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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // AutomaticRepliesMailTips undocumented
     6  type AutomaticRepliesMailTips struct {
     7  	// Object is the base model of AutomaticRepliesMailTips
     8  	Object
     9  	// Message undocumented
    10  	Message *string `json:"message,omitempty"`
    11  	// MessageLanguage undocumented
    12  	MessageLanguage *LocaleInfo `json:"messageLanguage,omitempty"`
    13  	// ScheduledStartTime undocumented
    14  	ScheduledStartTime *DateTimeTimeZone `json:"scheduledStartTime,omitempty"`
    15  	// ScheduledEndTime undocumented
    16  	ScheduledEndTime *DateTimeTimeZone `json:"scheduledEndTime,omitempty"`
    17  }
    18  
    19  // AutomaticRepliesSetting undocumented
    20  type AutomaticRepliesSetting struct {
    21  	// Object is the base model of AutomaticRepliesSetting
    22  	Object
    23  	// Status undocumented
    24  	Status *AutomaticRepliesStatus `json:"status,omitempty"`
    25  	// ExternalAudience undocumented
    26  	ExternalAudience *ExternalAudienceScope `json:"externalAudience,omitempty"`
    27  	// ScheduledStartDateTime undocumented
    28  	ScheduledStartDateTime *DateTimeTimeZone `json:"scheduledStartDateTime,omitempty"`
    29  	// ScheduledEndDateTime undocumented
    30  	ScheduledEndDateTime *DateTimeTimeZone `json:"scheduledEndDateTime,omitempty"`
    31  	// InternalReplyMessage undocumented
    32  	InternalReplyMessage *string `json:"internalReplyMessage,omitempty"`
    33  	// ExternalReplyMessage undocumented
    34  	ExternalReplyMessage *string `json:"externalReplyMessage,omitempty"`
    35  }