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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // PhysicalAddress undocumented
     6  type PhysicalAddress struct {
     7  	// Object is the base model of PhysicalAddress
     8  	Object
     9  	// Street undocumented
    10  	Street *string `json:"street,omitempty"`
    11  	// City undocumented
    12  	City *string `json:"city,omitempty"`
    13  	// State undocumented
    14  	State *string `json:"state,omitempty"`
    15  	// CountryOrRegion undocumented
    16  	CountryOrRegion *string `json:"countryOrRegion,omitempty"`
    17  	// PostalCode undocumented
    18  	PostalCode *string `json:"postalCode,omitempty"`
    19  }
    20  
    21  // PhysicalOfficeAddress undocumented
    22  type PhysicalOfficeAddress struct {
    23  	// Object is the base model of PhysicalOfficeAddress
    24  	Object
    25  	// City undocumented
    26  	City *string `json:"city,omitempty"`
    27  	// CountryOrRegion undocumented
    28  	CountryOrRegion *string `json:"countryOrRegion,omitempty"`
    29  	// OfficeLocation undocumented
    30  	OfficeLocation *string `json:"officeLocation,omitempty"`
    31  	// PostalCode undocumented
    32  	PostalCode *string `json:"postalCode,omitempty"`
    33  	// State undocumented
    34  	State *string `json:"state,omitempty"`
    35  	// Street undocumented
    36  	Street *string `json:"street,omitempty"`
    37  }