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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // PostalAddressType undocumented
     6  type PostalAddressType struct {
     7  	// Object is the base model of PostalAddressType
     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  	// CountryLetterCode undocumented
    16  	CountryLetterCode *string `json:"countryLetterCode,omitempty"`
    17  	// PostalCode undocumented
    18  	PostalCode *string `json:"postalCode,omitempty"`
    19  }