delete_ks.go 304 B

123456789101112
  1. package http_model
  2. type DeleteKsauthorizationRequest struct {
  3. KSNumber string `json:"ksnumber"`
  4. }
  5. func NewDeleteKsauthorizationRequest() *DeleteKsauthorizationRequest {
  6. return new(DeleteKsauthorizationRequest)
  7. }
  8. func NewDeleteKsauthorizationResponse() *CommonResponse {
  9. return new(CommonResponse)
  10. }