delete_subaccount.go 285 B

12345678910
  1. package http_model
  2. type DeleteSubAccountRequest struct {
  3. SubAccountId int `json:"sub_account_id"`
  4. }
  5. func NewDeleteSubAccountRequest() *DeleteSubAccountRequest { return new(DeleteSubAccountRequest) }
  6. func NewDeleteSubAccountResponse() *CommonResponse {
  7. return new(CommonResponse)
  8. }