github.com/mundipagg/boleto-api@v0.0.0-20230620145841-3f9ec742599f/models/address.go (about)

     1  package models
     2  
     3  // Address informações de entrada do endereço
     4  type Address struct {
     5  	Street     string `json:"street,omitempty"`
     6  	Number     string `json:"number,omitempty"`
     7  	Complement string `json:"complement,omitempty"`
     8  	ZipCode    string `json:"zipCode,omitempty"`
     9  	City       string `json:"city,omitempty"`
    10  	District   string `json:"district,omitempty"`
    11  	StateCode  string `json:"stateCode,omitempty"`
    12  }