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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // CustomAction undocumented
     6  type CustomAction struct {
     7  	// InformationProtectionAction is the base model of CustomAction
     8  	InformationProtectionAction
     9  	// Name undocumented
    10  	Name *string `json:"name,omitempty"`
    11  	// Properties undocumented
    12  	Properties []KeyValuePair `json:"properties,omitempty"`
    13  }
    14  
    15  // CustomSubjectAlternativeName undocumented
    16  type CustomSubjectAlternativeName struct {
    17  	// Object is the base model of CustomSubjectAlternativeName
    18  	Object
    19  	// SanType Custom SAN Type.
    20  	SanType *SubjectAlternativeNameType `json:"sanType,omitempty"`
    21  	// Name Custom SAN Name
    22  	Name *string `json:"name,omitempty"`
    23  }
    24  
    25  // CustomTimeZone undocumented
    26  type CustomTimeZone struct {
    27  	// TimeZoneBase is the base model of CustomTimeZone
    28  	TimeZoneBase
    29  	// Bias undocumented
    30  	Bias *int `json:"bias,omitempty"`
    31  	// StandardOffset undocumented
    32  	StandardOffset *StandardTimeZoneOffset `json:"standardOffset,omitempty"`
    33  	// DaylightOffset undocumented
    34  	DaylightOffset *DaylightTimeZoneOffset `json:"daylightOffset,omitempty"`
    35  }