delete_sub_account.go 316 B

1234567891011121314
  1. package http_model
  2. type DeleteSubAccountRequest struct {
  3. SubAccountId int `json:"sub_account_id"` // 子账号ID
  4. }
  5. func NewDeleteSubAccountRequest() *DeleteSubAccountRequest {
  6. return new(DeleteSubAccountRequest)
  7. }
  8. func NewDeleteSubAccountResponse() *CommonResponse {
  9. resp := new(CommonResponse)
  10. return resp
  11. }