github.com/seeker-insurance/kit@v0.0.13/brewerydb/structs/address.go (about)

     1  package structs
     2  
     3  type Address struct {
     4  	StreetAddress   string `json:"streetAddress,omitempty"`
     5  	ExtendedAddress string `json:"extendedAddress,omitempty"`
     6  	Locality        string `json:"Locality,omitempty"`
     7  	Region          string `json:"Region,omitempty"`
     8  	PostalCode      string `json:"Postal_code,omitempty"`
     9  }