AddReceiveAddressRequest.go 433 B

12345678910111213141516
  1. package http_model
  2. type AddReceiveAddressRequest struct {
  3. ReceiveName string `json:"receive_name"`
  4. RegionCode string `json:"region_code"`
  5. ReceiveAddress string `json:"receive_address"`
  6. ReceivePhone string `json:"receive_phone"`
  7. }
  8. func NewAddReceiveAddressRequest() *AddReceiveAddressRequest {
  9. return new(AddReceiveAddressRequest)
  10. }
  11. func NewAddReceiveAddressResponse() *CommonResponse {
  12. return new(CommonResponse)
  13. }