github.com/yaegashi/msgraph.go@v0.1.4/beta/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  	// Type undocumented
    10  	Type *PhysicalAddressType `json:"type,omitempty"`
    11  	// PostOfficeBox undocumented
    12  	PostOfficeBox *string `json:"postOfficeBox,omitempty"`
    13  	// Street undocumented
    14  	Street *string `json:"street,omitempty"`
    15  	// City undocumented
    16  	City *string `json:"city,omitempty"`
    17  	// State undocumented
    18  	State *string `json:"state,omitempty"`
    19  	// CountryOrRegion undocumented
    20  	CountryOrRegion *string `json:"countryOrRegion,omitempty"`
    21  	// PostalCode undocumented
    22  	PostalCode *string `json:"postalCode,omitempty"`
    23  }
    24  
    25  // PhysicalOfficeAddress undocumented
    26  type PhysicalOfficeAddress struct {
    27  	// Object is the base model of PhysicalOfficeAddress
    28  	Object
    29  	// City undocumented
    30  	City *string `json:"city,omitempty"`
    31  	// CountryOrRegion undocumented
    32  	CountryOrRegion *string `json:"countryOrRegion,omitempty"`
    33  	// OfficeLocation undocumented
    34  	OfficeLocation *string `json:"officeLocation,omitempty"`
    35  	// PostalCode undocumented
    36  	PostalCode *string `json:"postalCode,omitempty"`
    37  	// State undocumented
    38  	State *string `json:"state,omitempty"`
    39  	// Street undocumented
    40  	Street *string `json:"street,omitempty"`
    41  }