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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Location undocumented
     6  type Location struct {
     7  	// Object is the base model of Location
     8  	Object
     9  	// DisplayName undocumented
    10  	DisplayName *string `json:"displayName,omitempty"`
    11  	// LocationEmailAddress undocumented
    12  	LocationEmailAddress *string `json:"locationEmailAddress,omitempty"`
    13  	// Address undocumented
    14  	Address *PhysicalAddress `json:"address,omitempty"`
    15  	// LocationURI undocumented
    16  	LocationURI *string `json:"locationUri,omitempty"`
    17  	// Coordinates undocumented
    18  	Coordinates *OutlookGeoCoordinates `json:"coordinates,omitempty"`
    19  	// LocationType undocumented
    20  	LocationType *LocationType `json:"locationType,omitempty"`
    21  	// UniqueID undocumented
    22  	UniqueID *string `json:"uniqueId,omitempty"`
    23  	// UniqueIDType undocumented
    24  	UniqueIDType *LocationUniqueIDType `json:"uniqueIdType,omitempty"`
    25  }
    26  
    27  // LocationConstraint undocumented
    28  type LocationConstraint struct {
    29  	// Object is the base model of LocationConstraint
    30  	Object
    31  	// Locations undocumented
    32  	Locations []LocationConstraintItem `json:"locations,omitempty"`
    33  	// IsRequired undocumented
    34  	IsRequired *bool `json:"isRequired,omitempty"`
    35  	// SuggestLocation undocumented
    36  	SuggestLocation *bool `json:"suggestLocation,omitempty"`
    37  }
    38  
    39  // LocationConstraintItem undocumented
    40  type LocationConstraintItem struct {
    41  	// Location is the base model of LocationConstraintItem
    42  	Location
    43  	// ResolveAvailability undocumented
    44  	ResolveAvailability *bool `json:"resolveAvailability,omitempty"`
    45  }