OperateReceiveAddressRequest.go 541 B

123456789101112131415161718
  1. package http_model
  2. type OperateReceiveAddressRequest struct {
  3. OperateType int64 `json:"operate_type"`
  4. AddressID int64 `json:"address_id"`
  5. ReceiveName string `json:"receive_name"`
  6. RegionCode string `json:"region_code"`
  7. ReceiveAddress string `json:"receive_address"`
  8. ReceivePhone string `json:"receive_phone"`
  9. }
  10. func NewOperateReceiveAddressRequest() *OperateReceiveAddressRequest {
  11. return new(OperateReceiveAddressRequest)
  12. }
  13. func NewOperateReceiveAddressResponse() *CommonResponse {
  14. return new(CommonResponse)
  15. }